changeset 0:8822dd8bfc71 draft

"planemo upload commit 53bcf55b73cb251446150026242b4d47d49d3469"
author galaxyp
date Tue, 23 Jun 2020 11:45:29 +0000
parents
children a1775ba76f0a
files MT2MQ.R MT2MQ.xml test-data/T4A.tsv test-data/T4B.tsv test-data/T4C.tsv test-data/T4T7_func.tsv test-data/T7A.tsv test-data/T7B.tsv test-data/T7C.tsv test-data/f_output.tabular test-data/ft_output.tabular test-data/t_output.tabular
diffstat 12 files changed, 14776 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MT2MQ.R	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,66 @@
+# MT2MQ: prepares metatranscriptomic outputs from ASaiM (HUMAnN2 and metaphlan) for metaquantome
+
+# Load libraries
+suppressPackageStartupMessages(library(tidyverse))
+#default_locale()
+
+# Set parameters from arguments
+args = commandArgs(trailingOnly = TRUE)
+data <- args[1]
+  # data: full path to file or directory:
+  #   - if in functional or f-t mode, should be a tsv file of HUMAnN2 gene families, after regrouping and renaming to GO, joining samples, and renormalizing to CPM.
+  #   - if in taxonomic mode, should be a directory of tsv files of metaphlan genus-level results
+mode <- args[2]
+  # mode:
+  #   -"f": function
+  #   -"t": taxonomy
+  #   -"ft": function-taxonomy
+ontology <- unlist(strsplit(args[3], split = ","))
+  # ontology: only for function or f-t mode. A string of the GO namespace(s) to include, separated by commas.
+  #   ex: to include all: "molecular_function,biological_process,cellular_component"
+outfile <- args[4]
+  # outfile: full path with pathname and extension for output
+
+# Functional mode
+if (mode == "f"){
+  out <- read.delim(file=data, header=TRUE, sep='\t') %>% 
+    filter(!grepl(".+g__.+",X..Gene.Family)) %>% 
+    separate(col=X..Gene.Family, into=c("id", "Extra"), sep=": ", fill="left") %>% 
+    separate(col=Extra, into = c("namespace", "name"), sep = " ", fill="left", extra="merge") %>% 
+    mutate(namespace = if_else(namespace == "[MF]", true = "molecular_function", false = if_else(namespace == "[BP]", true = "biological_process", false = "cellular_component"))) %>% 
+    filter(namespace %in% ontology) %>% 
+    select(id, name, namespace, 4:ncol(.))
+}
+
+# Taxonomic mode
+if (mode == "t"){
+  files <- dir(path = data)
+  out <- tibble(filename = files) %>% 
+    mutate(file_contents= map(filename, ~read.delim(file=file.path(data, .), header=TRUE, sep = "\t"))) %>% 
+    unnest(cols = c(file_contents)) %>% 
+    rename(sample = filename) %>% 
+    separate(col = sample, into = c("sample",NA), sep=".tsv") %>% 
+    pivot_wider(names_from = sample, values_from = abundance) %>% 
+    mutate(rank = "genus") %>% 
+    rename(name = genus) %>% 
+    mutate(id = row_number(name)) %>% # filler for taxon id but should eventually find a way to get id from ncbi database
+    select(id, name, rank, 2:ncol(.))
+}
+
+# Function-taxonomy mode
+if (mode == "ft"){
+  out <- read.delim(file=data, header=TRUE, sep='\t') %>% 
+    filter(grepl(".+g__.+",X..Gene.Family)) %>% 
+    separate(col=X..Gene.Family, into=c("id", "Extra"), sep=": ", fill="left") %>% 
+    separate(col=Extra, into = c("namespace", "name"), sep = " ", fill="left", extra="merge") %>% 
+    separate(col = name, into = c("name", "taxa"), sep="\\|", extra = "merge") %>%
+    separate(col = taxa, into = c("Extra", "genus", "species"), sep = "__") %>% select(-"Extra") %>%
+    mutate_if(is.character, str_replace_all, pattern = "\\.s", replacement = "") %>% 
+    mutate_at(c("species"), str_replace_all, pattern = "_", replacement = " ") %>% 
+    mutate(namespace = if_else(namespace == "[MF]", true = "molecular_function", false = if_else(namespace == "[BP]", true = "biological_process", false = "cellular_component"))) %>% 
+    filter(namespace %in% ontology) %>% 
+    select(id, name, namespace, 4:ncol(.))
+}
+
+# Write file
+write.table(x = out, file = outfile, quote = FALSE, sep = "\t");
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MT2MQ.xml	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,140 @@
+<tool id="mt2mq" name="MT2MQ" version="1.0">
+    <description>Tool to prepare metatranscriptomic outputs from ASaiM for Metaquantome</description>
+    <requirements>
+        <requirement type="package" version="1.2.1">r-tidyverse</requirement>
+    </requirements>
+    <command detect_errors="exit_code"><![CDATA[
+
+#if $options.mode == "f" or $options.mode == "ft":
+    Rscript '$__tool_directory__/MT2MQ.R' '$options.input_files' '$options.mode' $options.ontology '$mq_output'
+#elif $options.mode == "t":
+    mkdir in_dir
+    #for $input in $options.input_files:
+        && cp '$input' 'in_dir/${input.name.rsplit('.',1)[0]}'
+    #end for
+    && Rscript '$__tool_directory__/MT2MQ.R' in_dir t NA '$mq_output'
+#end if
+
+    ]]>
+    </command>
+    
+    <inputs>
+        <conditional name="options">
+            <param type="select" display="radio" name="mode" label="Mode">
+                <option value="f">Functional</option>
+                <option value="t" selected="true">Taxonomic</option>
+                <option value="ft">Functional-Taxonomic</option>
+            </param>
+            <when value="t">
+                <param name="ontology" type="hidden" value="NA" />
+                <param type="data" name="input_files" format="tsv,tabular,txt" label="Files from ASaiM for all samples (named after sample)" multiple="true" />
+            </when>
+            <when value="f">
+                <param type="select" name="ontology" label="GO namespace" multiple="true" optional="false">
+                    <option value="molecular_function">molecular function</option>
+                    <option value="biological_process">biological proces</option>
+                    <option value="cellular_component">cellular component</option>
+                </param>
+                <param type="data" name="input_files" format="tsv,tabular,txt" label="File from HUMAnN2 after regrouping, renaming, joining, and renormalizing" />
+            </when>
+            <when value="ft">
+                <param type="select" name="ontology" label="GO namespace" multiple="true" optional="false">
+                    <option value="molecular_function">molecular function</option>
+                    <option value="biological_process">biological proces</option>
+                    <option value="cellular_component">cellular component</option>
+                </param>
+                <param type="data" name="input_files" format="tsv,tabular,txt" label="File from HUMAnN2 after regrouping, renaming, joining, and renormalizing" />
+            </when>
+        </conditional>
+    </inputs>
+    
+    <outputs>
+        <data name="mq_output" format="tabular" label="${options.mode}_output.tabular"/>
+    </outputs>
+    
+    
+    <tests>
+        <test>
+            <conditional name="options">
+		<param name="mode" value="t"/>
+                <param name="input_files" value="T4A.tsv,T4B.tsv,T4C.tsv,T7A.tsv,T7B.tsv,T7C.tsv" ftype="tsv"/>
+                <param name="ontology" value="NA"/>
+            </conditional>
+            <output name="mq_output">
+                <assert_contents>
+                    <has_text text="rank"/>
+                    <has_text text="genus"/>
+                    <has_text text="Clostridium"/>
+                </assert_contents>
+            </output>
+        </test>
+        <test>
+            <conditional name="options">
+		<param name="mode" value="f"/>
+                <param name="input_files" value="T4T7_func.tsv" ftype="tsv"/>
+                <param name="ontology" value="molecular_function"/>
+            </conditional>
+            <output name="mq_output">
+                <assert_contents>
+                    <has_text text="namespace"/>
+                    <has_text text="molecular_function"/>
+                    <has_text text="0000014"/> 
+                </assert_contents>
+            </output>
+        </test>
+        <test>
+            <conditional name="options">
+		<param name="mode" value="ft"/>
+                <param name="input_files" value="T4T7_func.tsv" ftype="tsv"/>
+                <param name="ontology" value="biological_process"/>
+            </conditional>
+            <output name="mq_output">
+                <assert_contents>
+                    <has_text text="namespace"/>
+                    <has_text text="genus"/>
+                    <has_text text="biological_process"/>
+                    <has_text text="Clostridium"/>
+                </assert_contents>
+            </output>
+        </test>
+    </tests>
+    
+    
+    
+    
+    <help><![CDATA[
+
+**MT2MQ**: Metatranscriptomics to Metaquantome
+----------------------------------------------------
+
+MT2MQ is a tool to prepare metatrascriptomic results from ASaiM for further analysis with MetaQuantome, which currently only supports metaproteomic data. This tool has three modes:
+
+- **Taxonomic**: takes in genus-level MetaPhlAn2 results for each sample. The input files should be named as the sample. 
+
+	- Output: a single tabular file formatted for use as input for Metaquantome's taxonomic mode.
+
+- **Functional**: takes in a single file of HUMAnN2 results, regrouped and renamed to GO terms, with all samples joined together into one table, and renormalized to CPM. See the MT2MQ functional workflow for these processing steps. User can choose which GO namespace(s) to include.
+
+	- Output: a single tabular file formatted for use as input for Metaquantome's functional mode.
+
+- **Functional/taxonomic**: takes the same input as the functional mode. User can choose which GO namespace(s) to include.
+
+	- Output: a single tabular file including all GO terms and the taxa which express them and their abundances for each sample. This file *cannot* be used as input for Metaquantome.
+
+**Outputs**:
+------------
+
+MT2MQ produces a single tabular output, formatted to be used as input for Metaquantome or for other analysis.
+
+    ]]></help>
+    
+    <citations>
+        <citation type="bibtex">
+            @misc{MT2MQ, 
+            author={Crane, Marie},
+            year={2020},
+            title={Metatranscriptomics to MetaQuantome}
+            }
+        </citation>
+    </citations>
+</tool>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/T4A.tsv	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,5 @@
+genus	abundance
+Clostridium	68.36603
+Coprothermobacter	31.23635
+Methanothermobacter	0.3807
+Escherichia	0.01692
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/T4B.tsv	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,4 @@
+genus	abundance
+Clostridium	60.78776
+Coprothermobacter	38.9515
+Methanothermobacter	0.26075
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/T4C.tsv	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,4 @@
+genus	abundance
+Clostridium	68.49482
+Coprothermobacter	31.0739
+Methanothermobacter	0.43128
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/T4T7_func.tsv	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,7475 @@
+# Gene Family	dataset_21368137	dataset_21368138	dataset_21368139	dataset_21368140	dataset_21368141	dataset_21368142
+GO:0000014: [MF] single-stranded DNA endodeoxyribonuclease activity	0.158851	0.457588	0.367933	0.0406378	0.212081	0.0528417
+GO:0000014: [MF] single-stranded DNA endodeoxyribonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.158851	0.457588	0.367933	0.0406378	0.212081	0.0528417
+GO:0000015: [CC] phosphopyruvate hydratase complex	49.83	66.6584	66.4705	147.031	140.778	92.7014
+GO:0000015: [CC] phosphopyruvate hydratase complex|g__Clostridium.s__Clostridium_thermocellum	3.85773	22.1513	21.5629	82.9536	74.2882	59.5495
+GO:0000015: [CC] phosphopyruvate hydratase complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	45.8416	44.4224	44.6618	63.8743	66.3513	33.0344
+GO:0000015: [CC] phosphopyruvate hydratase complex|g__Escherichia.s__Escherichia_coli	0.0423134	0	0	0	0	0
+GO:0000015: [CC] phosphopyruvate hydratase complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0882966	0.0847593	0.245785	0.20289	0.137987	0.117487
+GO:0000023: [BP] maltose metabolic process	14.0012	10.3973	8.39276	14.0098	14.1239	9.89496
+GO:0000023: [BP] maltose metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.0012	10.3973	8.39276	14.0098	14.1239	9.89496
+GO:0000025: [BP] maltose catabolic process	0.0251304	0	0	0	0	0
+GO:0000025: [BP] maltose catabolic process|g__Escherichia.s__Escherichia_coli	0.0251304	0	0	0	0	0
+GO:0000027: [BP] ribosomal large subunit assembly	49.0504	105.108	91.5859	184.412	170.33	145.589
+GO:0000027: [BP] ribosomal large subunit assembly|g__Clostridium.s__Clostridium_thermocellum	4.99521	34.9239	31.4675	127.056	96.2502	105.199
+GO:0000027: [BP] ribosomal large subunit assembly|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	44.0266	70.1837	60.1184	57.3553	74.0795	40.3249
+GO:0000027: [BP] ribosomal large subunit assembly|g__Escherichia.s__Escherichia_coli	0.0285816	0	0	0	0	0.0653892
+GO:0000030: [MF] mannosyltransferase activity	2.53579	4.38419	2.75771	22.4856	20.2827	17.4859
+GO:0000030: [MF] mannosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.50346	4.38419	2.69903	22.4856	20.2827	17.4859
+GO:0000030: [MF] mannosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0323487	0	0.0586834	0	0	0
+GO:0000034: [MF] adenine deaminase activity	0.163663	0.127232	0.273796	0.0508594	0.103349	0.308642
+GO:0000034: [MF] adenine deaminase activity|g__Escherichia.s__Escherichia_coli	0.0149956	0	0.0278306	0	0	0
+GO:0000034: [MF] adenine deaminase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.148644	0.127232	0.24592	0.0508594	0.103349	0.308642
+GO:0000036: [MF] ACP phosphopantetheine attachment site binding involved in fatty acid biosynthetic process	43.4545	136.691	71.8587	537.892	408.492	557.491
+GO:0000036: [MF] ACP phosphopantetheine attachment site binding involved in fatty acid biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	26.7934	119.275	48.5853	525.102	397.776	543.996
+GO:0000036: [MF] ACP phosphopantetheine attachment site binding involved in fatty acid biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.661	17.4161	23.2322	12.7903	10.7163	13.3766
+GO:0000036: [MF] ACP phosphopantetheine attachment site binding involved in fatty acid biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0.0413174	0	0	0.118199
+GO:0000041: [BP] transition metal ion transport	2.90142	29.9683	29.9432	38.8478	38.0279	31.5089
+GO:0000041: [BP] transition metal ion transport|g__Clostridium.s__Clostridium_thermocellum	2.80498	29.9683	29.3116	37.9571	37.3748	29.8371
+GO:0000041: [BP] transition metal ion transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0964385	0	0.631534	0.890674	0.653019	1.67182
+GO:0000049: [MF] tRNA binding	637.77	984.375	722.889	2383.93	2185.47	2207.09
+GO:0000049: [MF] tRNA binding|g__Clostridium.s__Clostridium_thermocellum	120.077	577.193	382.252	1919.14	1656.7	1821.14
+GO:0000049: [MF] tRNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	514.943	404.284	333.851	458.679	525.602	378.856
+GO:0000049: [MF] tRNA binding|g__Escherichia.s__Escherichia_coli	0.979988	0	0.574971	0	0	0.0577249
+GO:0000049: [MF] tRNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.76975	2.89815	6.21105	6.1176	3.16754	7.03193
+GO:0000050: [BP] urea cycle	0.101785	0	0.0755531	0	0	0
+GO:0000050: [BP] urea cycle|g__Escherichia.s__Escherichia_coli	0.101785	0	0.0755531	0	0	0
+GO:0000053: [BP] argininosuccinate metabolic process	0.101785	0	0.0755531	0	0	0
+GO:0000053: [BP] argininosuccinate metabolic process|g__Escherichia.s__Escherichia_coli	0.101785	0	0.0755531	0	0	0
+GO:0000062: [MF] fatty-acyl-CoA binding	0.065864	0	0.0611642	0	0	0
+GO:0000062: [MF] fatty-acyl-CoA binding|g__Escherichia.s__Escherichia_coli	0.065864	0	0.0611642	0	0	0
+GO:0000103: [BP] sulfate assimilation	60.966	642.736	558.276	836.882	834.009	1015.57
+GO:0000103: [BP] sulfate assimilation|g__Clostridium.s__Clostridium_thermocellum	60.4918	642.736	558.276	836.882	834.009	1015.38
+GO:0000103: [BP] sulfate assimilation|g__Escherichia.s__Escherichia_coli	0.474196	0	0	0	0	0.189053
+GO:0000104: [MF] succinate dehydrogenase activity	0.227194	0.0702438	0.13577	0.299411	0.260999	0.0973401
+GO:0000104: [MF] succinate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.190617	0	0	0	0	0
+GO:0000104: [MF] succinate dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0365776	0.0702438	0.13577	0.299411	0.260999	0.0973401
+GO:0000105: [BP] histidine biosynthetic process	70.3367	124.495	86.3493	328.999	320.599	334.269
+GO:0000105: [BP] histidine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	50.019	106.794	75.405	312.907	305.015	318.959
+GO:0000105: [BP] histidine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.6764	15.0269	9.61789	12.342	13.9724	11.9058
+GO:0000105: [BP] histidine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.316439	0	0	0	0	0.217091
+GO:0000105: [BP] histidine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.32484	2.6737	1.3264	3.74954	1.61237	3.18684
+GO:0000107: [MF] imidazoleglycerol-phosphate synthase activity	9.78513	22.2865	12.5845	59.3043	65.3597	51.9861
+GO:0000107: [MF] imidazoleglycerol-phosphate synthase activity|g__Clostridium.s__Clostridium_thermocellum	9.3861	21.7098	11.9057	58.9753	64.8784	50.9841
+GO:0000107: [MF] imidazoleglycerol-phosphate synthase activity|g__Escherichia.s__Escherichia_coli	0.0775299	0	0	0	0	0.146657
+GO:0000107: [MF] imidazoleglycerol-phosphate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.321494	0.576652	0.67876	0.328982	0.481327	0.855364
+GO:0000150: [MF] recombinase activity	2.14012	110.849	78.5557	19.3377	20.0455	17.1905
+GO:0000150: [MF] recombinase activity|g__Clostridium.s__Clostridium_thermocellum	1.54379	110.706	78.5557	19.1856	19.9128	16.8752
+GO:0000150: [MF] recombinase activity|g__Escherichia.s__Escherichia_coli	0.373359	0	0	0	0	0.117487
+GO:0000150: [MF] recombinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.222965	0.142728	0	0.152106	0.132735	0.197785
+GO:0000155: [MF] phosphorelay sensor kinase activity	71.7961	132.911	124.388	305.795	298.096	267.332
+GO:0000155: [MF] phosphorelay sensor kinase activity|g__Clostridium.s__Clostridium_thermocellum	19.9886	84.8723	77.9795	264.234	251.512	235.083
+GO:0000155: [MF] phosphorelay sensor kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	47.2634	42.6513	42.495	39.1395	45.3117	29.564
+GO:0000155: [MF] phosphorelay sensor kinase activity|g__Escherichia.s__Escherichia_coli	1.52994	0	0.964103	0	0	0.159463
+GO:0000155: [MF] phosphorelay sensor kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.01421	5.38767	2.94955	2.42178	1.27238	2.52586
+GO:0000156: [MF] phosphorelay response regulator activity	3.93995	9.1295	9.92015	86.9172	82.5069	83.8827
+GO:0000156: [MF] phosphorelay response regulator activity|g__Clostridium.s__Clostridium_thermocellum	3.25315	9.02579	9.47242	86.7788	82.4587	83.4675
+GO:0000156: [MF] phosphorelay response regulator activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.162035	0.103709	0	0.138328	0.0482239	0.0359285
+GO:0000156: [MF] phosphorelay response regulator activity|g__Escherichia.s__Escherichia_coli	0.524797	0	0.447726	0	0	0.379206
+GO:0000160: [BP] phosphorelay signal transduction system	175.21	590.524	562.222	1563.84	1551.44	1764.96
+GO:0000160: [BP] phosphorelay signal transduction system|g__Clostridium.s__Clostridium_thermocellum	70.2649	506.303	446.434	1488.2	1460.77	1693.63
+GO:0000160: [BP] phosphorelay signal transduction system|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	100.956	79.8029	110.565	74.3182	89.4686	68.112
+GO:0000160: [BP] phosphorelay signal transduction system|g__Escherichia.s__Escherichia_coli	1.47681	0	1.9532	0	0	0.727399
+GO:0000160: [BP] phosphorelay signal transduction system|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.51202	4.41789	3.26994	1.32585	1.20071	2.48618
+GO:0000162: [BP] tryptophan biosynthetic process	27.7221	153.213	351.528	478.509	266.019	315.287
+GO:0000162: [BP] tryptophan biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	25.7733	153.11	351.052	477.749	265.751	313.128
+GO:0000162: [BP] tryptophan biosynthetic process|g__Escherichia.s__Escherichia_coli	0.132749	0	0.403341	0	0	0
+GO:0000162: [BP] tryptophan biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.81597	0.102682	0.0724408	0.759484	0.268335	2.15878
+GO:0000166: [MF] nucleotide binding	401.183	277.657	300.909	533.263	507.807	472.773
+GO:0000166: [MF] nucleotide binding|g__Clostridium.s__Clostridium_thermocellum	25.4954	114.889	85.4685	410.422	364.29	343.28
+GO:0000166: [MF] nucleotide binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	372.746	157.945	210.439	117.333	140.82	118.404
+GO:0000166: [MF] nucleotide binding|g__Escherichia.s__Escherichia_coli	0.793357	0	1.54038	0	0	0.800485
+GO:0000166: [MF] nucleotide binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.14811	4.82353	3.46074	5.50809	2.69665	10.2888
+GO:0000172: [CC] ribonuclease MRP complex	1.64781	1.76795	0.341726	3.57145	0.822085	6.1105
+GO:0000172: [CC] ribonuclease MRP complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.64781	1.76795	0.341726	3.57145	0.822085	6.1105
+GO:0000175: [MF] 3'-5'-exoribonuclease activity	35.4858	71.3135	57.6284	96.6615	103.215	97.4708
+GO:0000175: [MF] 3'-5'-exoribonuclease activity|g__Clostridium.s__Clostridium_thermocellum	2.72492	16.2016	15.1478	61.5467	63.3508	61.82
+GO:0000175: [MF] 3'-5'-exoribonuclease activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.5488	53.4827	41.7801	34.7674	39.6371	35.03
+GO:0000175: [MF] 3'-5'-exoribonuclease activity|g__Escherichia.s__Escherichia_coli	0	0	0.0705914	0	0	0
+GO:0000175: [MF] 3'-5'-exoribonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.21215	1.6291	0.62991	0.347386	0.227186	0.62081
+GO:0000178: [CC] exosome (RNase complex)	1.54659	5.52443	4.67419	3.33436	1.56623	3.99534
+GO:0000178: [CC] exosome (RNase complex)|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.54659	5.52443	4.67419	3.33436	1.56623	3.99534
+GO:0000179: [MF] rRNA (adenine-N6,N6-)-dimethyltransferase activity	11.6088	12.831	10.0897	19.3102	19.6073	19.7291
+GO:0000179: [MF] rRNA (adenine-N6,N6-)-dimethyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.480005	3.09628	2.75081	11.3416	10.0213	10.6301
+GO:0000179: [MF] rRNA (adenine-N6,N6-)-dimethyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.0203	9.38784	6.66771	7.82058	9.52142	8.62006
+GO:0000179: [MF] rRNA (adenine-N6,N6-)-dimethyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.108493	0.346878	0.671228	0.148027	0.0645879	0.478842
+GO:0000213: [MF] tRNA-intron endonuclease activity	0.265668	0.514297	0	0.411078	0.0597915	0
+GO:0000213: [MF] tRNA-intron endonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.265668	0.514297	0	0.411078	0.0597915	0
+GO:0000221: [CC] vacuolar proton-transporting V-type ATPase, V1 domain	0.85927	1.48119	1.15811	14.8812	12.7606	11.0413
+GO:0000221: [CC] vacuolar proton-transporting V-type ATPase, V1 domain|g__Clostridium.s__Clostridium_thermocellum	0.844128	1.36483	0.989498	14.7573	12.6659	10.6787
+GO:0000221: [CC] vacuolar proton-transporting V-type ATPase, V1 domain|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0151414	0.116311	0.168608	0.123953	0.0946464	0.362616
+GO:0000256: [BP] allantoin catabolic process	0.0191516	0	0	0	0	0.0947853
+GO:0000256: [BP] allantoin catabolic process|g__Escherichia.s__Escherichia_coli	0.0191516	0	0	0	0	0.0947853
+GO:0000270: [BP] peptidoglycan metabolic process	3.74251	22.5746	12.9726	63.0136	57.2558	69.5533
+GO:0000270: [BP] peptidoglycan metabolic process|g__Clostridium.s__Clostridium_thermocellum	3.4896	22.5746	12.9726	63.0136	57.2558	69.5533
+GO:0000270: [BP] peptidoglycan metabolic process|g__Escherichia.s__Escherichia_coli	0.252908	0	0	0	0	0
+GO:0000271: [BP] polysaccharide biosynthetic process	12.6439	82.0637	66.8783	187.799	171.763	234.555
+GO:0000271: [BP] polysaccharide biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	12.436	81.8708	65.7678	187.226	171.569	234.308
+GO:0000271: [BP] polysaccharide biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0404176	0.0387858	0.149934	0.0619763	0.0541271	0.0537796
+GO:0000271: [BP] polysaccharide biosynthetic process|g__Escherichia.s__Escherichia_coli	0.103876	0	0.847052	0	0	0.0420406
+GO:0000271: [BP] polysaccharide biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0636037	0.154116	0.113533	0.511504	0.139723	0.150796
+GO:0000272: [BP] polysaccharide catabolic process	274.016	450.016	409.901	1307.84	1243.32	1384.78
+GO:0000272: [BP] polysaccharide catabolic process|g__Clostridium.s__Clostridium_thermocellum	274.016	450.016	409.901	1307.84	1243.32	1384.78
+GO:0000286: [MF] alanine dehydrogenase activity	0.111701	0.321908	0.103745	0	0.124727	0.0743471
+GO:0000286: [MF] alanine dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.111701	0.321908	0.103745	0	0.124727	0.0743471
+GO:0000287: [MF] magnesium ion binding	795.245	1511.25	1421.82	2903.56	2775.35	2674.32
+GO:0000287: [MF] magnesium ion binding|g__Clostridium.s__Clostridium_thermocellum	122.057	815.864	703	2240.71	2045.67	2109.07
+GO:0000287: [MF] magnesium ion binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	657.309	681.011	699.335	647.704	720.619	549.212
+GO:0000287: [MF] magnesium ion binding|g__Escherichia.s__Escherichia_coli	7.77015	0	4.42353	0	0	1.51142
+GO:0000287: [MF] magnesium ion binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	8.10883	14.3757	15.0581	15.1495	9.07	14.5199
+GO:0000302: [BP] response to reactive oxygen species	16.8257	159.381	159.194	520.725	417.94	348.992
+GO:0000302: [BP] response to reactive oxygen species|g__Clostridium.s__Clostridium_thermocellum	16.7778	159.381	159.13	520.725	417.94	348.992
+GO:0000302: [BP] response to reactive oxygen species|g__Escherichia.s__Escherichia_coli	0.0479276	0	0.0636902	0	0	0
+GO:0000309: [MF] nicotinamide-nucleotide adenylyltransferase activity	0	0.235748	0.227832	0	0.109621	0.235621
+GO:0000309: [MF] nicotinamide-nucleotide adenylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.235748	0.227832	0	0.109621	0.235621
+GO:0000398: [BP] mRNA splicing, via spliceosome	0	0	0.939701	0.259072	1.13035	1.35099
+GO:0000398: [BP] mRNA splicing, via spliceosome|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.939701	0.259072	1.13035	1.35099
+GO:0000413: [BP] protein peptidyl-prolyl isomerization	0.103098	0	0	0	0	0
+GO:0000413: [BP] protein peptidyl-prolyl isomerization|g__Escherichia.s__Escherichia_coli	0.103098	0	0	0	0	0
+GO:0000453: [BP] enzyme-directed rRNA 2'-O-methylation	4.34228	7.62357	4.26918	22.8476	19.7208	16.7342
+GO:0000453: [BP] enzyme-directed rRNA 2'-O-methylation|g__Clostridium.s__Clostridium_thermocellum	3.29626	6.52502	3.96548	21.0496	18.4026	15.9098
+GO:0000453: [BP] enzyme-directed rRNA 2'-O-methylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.04605	1.09856	0.176907	1.79801	1.31821	0.824318
+GO:0000453: [BP] enzyme-directed rRNA 2'-O-methylation|g__Escherichia.s__Escherichia_coli	0	0	0.126794	0	0	0
+GO:0000502: [CC] proteasome complex	0.325796	0.192622	0.186154	0.667066	0.200253	0.367046
+GO:0000502: [CC] proteasome complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.325796	0.192622	0.186154	0.667066	0.200253	0.367046
+GO:0000703: [MF] oxidized pyrimidine nucleobase lesion DNA N-glycosylase activity	0.0757071	0	0	0	0	0
+GO:0000703: [MF] oxidized pyrimidine nucleobase lesion DNA N-glycosylase activity|g__Escherichia.s__Escherichia_coli	0.0757071	0	0	0	0	0
+GO:0000724: [BP] double-strand break repair via homologous recombination	6.13456	21.2068	21.8854	50.7726	47.1347	58.1933
+GO:0000724: [BP] double-strand break repair via homologous recombination|g__Clostridium.s__Clostridium_thermocellum	6.01112	21.2068	21.8854	50.7726	47.1347	58.1933
+GO:0000724: [BP] double-strand break repair via homologous recombination|g__Escherichia.s__Escherichia_coli	0.123465	0	0	0	0	0
+GO:0000725: [BP] recombinational repair	0.00811755	0	0.0450612	0	0	0
+GO:0000725: [BP] recombinational repair|g__Escherichia.s__Escherichia_coli	0.00811755	0	0.0450612	0	0	0
+GO:0000737: [BP] DNA catabolic process, endonucleolytic	0.345944	1.33071	1.63181	0.299909	0.261737	0.177217
+GO:0000737: [BP] DNA catabolic process, endonucleolytic|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.345944	1.33071	1.63181	0.299909	0.261737	0.177217
+GO:0000738: [BP] DNA catabolic process, exonucleolytic	0.254901	0.481252	0.691616	0.380786	0.114136	0.333252
+GO:0000738: [BP] DNA catabolic process, exonucleolytic|g__Escherichia.s__Escherichia_coli	0	0	0.0705914	0	0	0
+GO:0000738: [BP] DNA catabolic process, exonucleolytic|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.254901	0.481252	0.621024	0.380786	0.114136	0.333252
+GO:0000774: [MF] adenyl-nucleotide exchange factor activity	28.5844	55.9641	68.8548	40.7071	58.7978	75.7606
+GO:0000774: [MF] adenyl-nucleotide exchange factor activity|g__Clostridium.s__Clostridium_thermocellum	1.50831	35.3845	47.4473	28.9627	41.5985	54.1577
+GO:0000774: [MF] adenyl-nucleotide exchange factor activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	27.0761	20.5796	21.4075	11.4793	16.9678	21.1717
+GO:0000774: [MF] adenyl-nucleotide exchange factor activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0.265116	0.231505	0.431174
+GO:0000902: [BP] cell morphogenesis	170.462	245.005	253.556	423.258	445.638	418.618
+GO:0000902: [BP] cell morphogenesis|g__Clostridium.s__Clostridium_thermocellum	15.8469	88.3083	72.4931	241.257	235.342	248.508
+GO:0000902: [BP] cell morphogenesis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	154.516	156.139	179.37	181.218	209.801	168.777
+GO:0000902: [BP] cell morphogenesis|g__Escherichia.s__Escherichia_coli	0.019905	0	0.174787	0	0	0
+GO:0000902: [BP] cell morphogenesis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0791583	0.55719	1.51819	0.78311	0.494826	1.3323
+GO:0000906: [MF] 6,7-dimethyl-8-ribityllumazine synthase activity	8.56327	68.698	34.9726	220.182	158.846	139.034
+GO:0000906: [MF] 6,7-dimethyl-8-ribityllumazine synthase activity|g__Clostridium.s__Clostridium_thermocellum	7.9335	68.0065	34.1373	218.064	158.846	137.481
+GO:0000906: [MF] 6,7-dimethyl-8-ribityllumazine synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.629767	0.69147	0.835325	2.11789	0	1.55272
+GO:0000908: [MF] taurine dioxygenase activity	0.0692422	0	0	0	0	0
+GO:0000908: [MF] taurine dioxygenase activity|g__Escherichia.s__Escherichia_coli	0.0692422	0	0	0	0	0
+GO:0000917: [BP] barrier septum assembly	562.395	1438.21	1092.57	3281.99	3191.37	4347.55
+GO:0000917: [BP] barrier septum assembly|g__Clostridium.s__Clostridium_thermocellum	171.595	868.735	578.205	2874.96	2706.63	3615.61
+GO:0000917: [BP] barrier septum assembly|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	381.898	556.293	504.685	403.076	480.933	724.606
+GO:0000917: [BP] barrier septum assembly|g__Escherichia.s__Escherichia_coli	0.600213	0	0.0662161	0	0	0.228895
+GO:0000917: [BP] barrier septum assembly|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	8.30122	13.182	9.61681	3.9548	3.80298	7.1035
+GO:0000918: [BP] barrier septum site selection	70.7561	134.059	117.997	217.905	221.582	178.513
+GO:0000918: [BP] barrier septum site selection|g__Clostridium.s__Clostridium_thermocellum	8.2863	55.6835	39.4115	137.04	122.542	115.444
+GO:0000918: [BP] barrier septum site selection|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	62.4331	78.3751	78.5854	80.8657	99.0399	63.0687
+GO:0000918: [BP] barrier septum site selection|g__Escherichia.s__Escherichia_coli	0.0366505	0	0	0	0	0
+GO:0000920: [BP] cell separation after cytokinesis	0.189693	0	0	0	0	0
+GO:0000920: [BP] cell separation after cytokinesis|g__Escherichia.s__Escherichia_coli	0.189693	0	0	0	0	0
+GO:0000967: [BP] rRNA 5'-end processing	54.8621	68.4591	40.1674	185.74	142.982	147.103
+GO:0000967: [BP] rRNA 5'-end processing|g__Clostridium.s__Clostridium_thermocellum	20.5795	48.505	31.4653	157.155	119.907	115.06
+GO:0000967: [BP] rRNA 5'-end processing|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	34.2826	19.954	8.7021	28.5855	23.0759	32.0424
+GO:0000986: [MF] bacterial-type RNA polymerase core promoter proximal region sequence-specific DNA binding	0.149834	0	0.668882	0	0	0.181971
+GO:0000986: [MF] bacterial-type RNA polymerase core promoter proximal region sequence-specific DNA binding|g__Escherichia.s__Escherichia_coli	0.149834	0	0.668882	0	0	0.181971
+GO:0000987: [MF] core promoter proximal region sequence-specific DNA binding	0.905059	0	0.261482	0	0	0
+GO:0000987: [MF] core promoter proximal region sequence-specific DNA binding|g__Escherichia.s__Escherichia_coli	0.905059	0	0.261482	0	0	0
+GO:0001046: [MF] core promoter sequence-specific DNA binding	0	0	0.261482	0	0	0
+GO:0001046: [MF] core promoter sequence-specific DNA binding|g__Escherichia.s__Escherichia_coli	0	0	0.261482	0	0	0
+GO:0001047: [MF] core promoter binding	0.0604685	0	0	0	0	0
+GO:0001047: [MF] core promoter binding|g__Escherichia.s__Escherichia_coli	0.0604685	0	0	0	0	0
+GO:0001071: [MF] nucleic acid binding transcription factor activity	0.175378	0	0	0	0	0
+GO:0001071: [MF] nucleic acid binding transcription factor activity|g__Escherichia.s__Escherichia_coli	0.175378	0	0	0	0	0
+GO:0001123: [BP] transcription initiation from bacterial-type RNA polymerase promoter	10.1163	48.7134	29.0438	146.277	129.107	131.229
+GO:0001123: [BP] transcription initiation from bacterial-type RNA polymerase promoter|g__Clostridium.s__Clostridium_thermocellum	9.93467	48.7134	28.9363	146.277	129.107	131.137
+GO:0001123: [BP] transcription initiation from bacterial-type RNA polymerase promoter|g__Escherichia.s__Escherichia_coli	0.181673	0	0.107579	0	0	0.0917454
+GO:0001141: [MF] transcriptional repressor activity, bacterial-type RNA polymerase core promoter proximal region sequence-specific binding	0.05675	0	0.096708	0	0	0.0693346
+GO:0001141: [MF] transcriptional repressor activity, bacterial-type RNA polymerase core promoter proximal region sequence-specific binding|g__Escherichia.s__Escherichia_coli	0.05675	0	0.096708	0	0	0.0693346
+GO:0001407: [BP] glycerophosphodiester transport	304.272	363.281	353.967	1322.03	1123.95	903.593
+GO:0001407: [BP] glycerophosphodiester transport|g__Clostridium.s__Clostridium_thermocellum	115.851	297.81	235.253	1285.84	1089.39	861.139
+GO:0001407: [BP] glycerophosphodiester transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	188.38	65.4715	118.616	36.1918	34.5571	42.4546
+GO:0001407: [BP] glycerophosphodiester transport|g__Escherichia.s__Escherichia_coli	0.0416328	0	0.0978357	0	0	0
+GO:0001514: [BP] selenocysteine incorporation	26.2658	27.937	22.6729	21.6123	26.0746	24.3582
+GO:0001514: [BP] selenocysteine incorporation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	26.1395	27.937	22.6729	21.6123	26.0746	24.3582
+GO:0001514: [BP] selenocysteine incorporation|g__Escherichia.s__Escherichia_coli	0.126284	0	0	0	0	0
+GO:0001516: [BP] prostaglandin biosynthetic process	0.143394	0	0	0	0	0
+GO:0001516: [BP] prostaglandin biosynthetic process|g__Escherichia.s__Escherichia_coli	0.143394	0	0	0	0	0
+GO:0001522: [BP] pseudouridine synthesis	67.0471	119.96	104.566	198.826	194.609	262.648
+GO:0001522: [BP] pseudouridine synthesis|g__Clostridium.s__Clostridium_thermocellum	18.7966	81.1052	74.3503	155.841	154.52	229.781
+GO:0001522: [BP] pseudouridine synthesis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	48.0913	36.6866	25.7054	38.5516	38.6416	31.1142
+GO:0001522: [BP] pseudouridine synthesis|g__Escherichia.s__Escherichia_coli	0.159289	0	0	0	0	0
+GO:0001522: [BP] pseudouridine synthesis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	2.16808	4.51064	4.43357	1.44687	1.7529
+GO:0001671: [MF] ATPase activator activity	0.0933276	0	0	0	0	0
+GO:0001671: [MF] ATPase activator activity|g__Escherichia.s__Escherichia_coli	0.0933276	0	0	0	0	0
+GO:0001680: [BP] tRNA 3'-terminal CCA addition	0.0223111	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0001680: [BP] tRNA 3'-terminal CCA addition|g__Escherichia.s__Escherichia_coli	0.0223111	0	0	0	0	0
+GO:0001680: [BP] tRNA 3'-terminal CCA addition|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0001682: [BP] tRNA 5'-leader removal	9.63527	66.7246	53.3508	188.044	161.343	209.386
+GO:0001682: [BP] tRNA 5'-leader removal|g__Clostridium.s__Clostridium_thermocellum	7.86346	63.3051	50.074	182.415	160.09	200.806
+GO:0001682: [BP] tRNA 5'-leader removal|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.77181	3.4195	3.27675	5.62935	1.25308	8.58045
+GO:0001727: [MF] lipid kinase activity	0	0	0.300724	0	0	0
+GO:0001727: [MF] lipid kinase activity|g__Escherichia.s__Escherichia_coli	0	0	0.300724	0	0	0
+GO:0001896: [BP] autolysis	0.189693	0	0	0	0	0
+GO:0001896: [BP] autolysis|g__Escherichia.s__Escherichia_coli	0.189693	0	0	0	0	0
+GO:0002084: [BP] protein depalmitoylation	0.17567	0	0	0	0	0
+GO:0002084: [BP] protein depalmitoylation|g__Escherichia.s__Escherichia_coli	0.17567	0	0	0	0	0
+GO:0002097: [BP] tRNA wobble base modification	0.0261755	0	0	0	0	0
+GO:0002097: [BP] tRNA wobble base modification|g__Escherichia.s__Escherichia_coli	0.0261755	0	0	0	0	0
+GO:0002098: [BP] tRNA wobble uridine modification	11.6669	11.4624	9.47166	15.5588	18.0673	12.8454
+GO:0002098: [BP] tRNA wobble uridine modification|g__Clostridium.s__Clostridium_thermocellum	0.432053	4.25612	3.46669	11.5249	12.645	9.23874
+GO:0002098: [BP] tRNA wobble uridine modification|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.7799	6.93449	5.37135	3.54892	5.13235	3.22302
+GO:0002098: [BP] tRNA wobble uridine modification|g__Escherichia.s__Escherichia_coli	0.0279254	0	0.1037	0	0	0
+GO:0002098: [BP] tRNA wobble uridine modification|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.427095	0.271734	0.529909	0.484967	0.289929	0.383604
+GO:0002100: [BP] tRNA wobble adenosine to inosine editing	7.13689	36.7174	27.1322	96.6719	75.5548	111.286
+GO:0002100: [BP] tRNA wobble adenosine to inosine editing|g__Clostridium.s__Clostridium_thermocellum	4.98695	33.4582	24.2697	95.8039	74.3148	108.515
+GO:0002100: [BP] tRNA wobble adenosine to inosine editing|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.08128	3.25926	2.86254	0.867992	1.23995	2.77157
+GO:0002100: [BP] tRNA wobble adenosine to inosine editing|g__Escherichia.s__Escherichia_coli	0.068659	0	0	0	0	0
+GO:0002101: [BP] tRNA wobble cytosine modification	0.0205126	0.0787851	0.096708	0.0419559	0.0366128	0.109176
+GO:0002101: [BP] tRNA wobble cytosine modification|g__Escherichia.s__Escherichia_coli	0	0	0.096708	0	0	0
+GO:0002101: [BP] tRNA wobble cytosine modification|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0205126	0.0787851	0	0.0419559	0.0366128	0.109176
+GO:0002128: [BP] tRNA nucleoside ribose methylation	0.0862065	0.103709	0.400725	0.331593	0	0
+GO:0002128: [BP] tRNA nucleoside ribose methylation|g__Escherichia.s__Escherichia_coli	0.0862065	0	0	0	0	0
+GO:0002128: [BP] tRNA nucleoside ribose methylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.103709	0.400725	0.331593	0	0
+GO:0002143: [BP] tRNA wobble position uridine thiolation	589.263	181.615	207.976	182.976	172.107	156.375
+GO:0002143: [BP] tRNA wobble position uridine thiolation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	589.086	181.098	207.717	182.833	172.107	155.817
+GO:0002143: [BP] tRNA wobble position uridine thiolation|g__Escherichia.s__Escherichia_coli	0.176107	0	0	0	0	0
+GO:0002143: [BP] tRNA wobble position uridine thiolation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.51649	0.259226	0.142929	0	0.557555
+GO:0002161: [MF] aminoacyl-tRNA editing activity	166.763	160.214	136.511	240.741	249.055	215.155
+GO:0002161: [MF] aminoacyl-tRNA editing activity|g__Clostridium.s__Clostridium_thermocellum	8.00437	54.505	41.5771	136.035	128.623	122.37
+GO:0002161: [MF] aminoacyl-tRNA editing activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	158.284	105.064	94.5064	104.218	120.14	92.288
+GO:0002161: [MF] aminoacyl-tRNA editing activity|g__Escherichia.s__Escherichia_coli	0.128714	0	0.0338298	0	0	0.0265826
+GO:0002161: [MF] aminoacyl-tRNA editing activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.345749	0.644983	0.393372	0.488176	0.292013	0.470369
+GO:0002237: [BP] response to molecule of bacterial origin	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0002237: [BP] response to molecule of bacterial origin|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0002935: [MF] tRNA (adenine-C2-)-methyltransferase activity	1.7819	11.4019	8.76191	33.2804	31.5624	33.2572
+GO:0002935: [MF] tRNA (adenine-C2-)-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.7819	11.4019	8.76191	33.2804	31.5624	33.2572
+GO:0002949: [BP] tRNA threonylcarbamoyladenosine modification	88.7952	92.0569	97.7075	135.088	146.583	143.577
+GO:0002949: [BP] tRNA threonylcarbamoyladenosine modification|g__Clostridium.s__Clostridium_thermocellum	7.44234	54.0843	40.7572	105.925	115.964	114.083
+GO:0002949: [BP] tRNA threonylcarbamoyladenosine modification|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	81.1817	37.9727	56.9503	29.163	30.6186	29.4938
+GO:0002949: [BP] tRNA threonylcarbamoyladenosine modification|g__Escherichia.s__Escherichia_coli	0.171173	0	0	0	0	0
+GO:0003333: [BP] amino acid transmembrane transport	0.936119	0	1.37101	0	0	0.476772
+GO:0003333: [BP] amino acid transmembrane transport|g__Escherichia.s__Escherichia_coli	0.936119	0	1.37101	0	0	0.476772
+GO:0003676: [MF] nucleic acid binding	426.432	952.349	765.785	1956.97	1624.62	1797.61
+GO:0003676: [MF] nucleic acid binding|g__Clostridium.s__Clostridium_thermocellum	114.184	520.483	387.506	1648.95	1309.34	1509.48
+GO:0003676: [MF] nucleic acid binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	309.965	429.289	376.093	304.893	314.471	286.154
+GO:0003676: [MF] nucleic acid binding|g__Escherichia.s__Escherichia_coli	0.844274	0	0.297747	0	0	0.177929
+GO:0003676: [MF] nucleic acid binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.43943	2.57666	1.88761	3.12896	0.811602	1.79743
+GO:0003677: [MF] DNA binding	3409.82	8558.09	6810.64	11238.7	10927.4	13105.3
+GO:0003677: [MF] DNA binding|g__Clostridium.s__Clostridium_thermocellum	484.481	3689.01	3085.13	8844.89	8093.32	10257.2
+GO:0003677: [MF] DNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2840.89	4781.45	3624.97	2278.92	2771.38	2662.95
+GO:0003677: [MF] DNA binding|g__Escherichia.s__Escherichia_coli	39.8095	0	31.1121	0	0	22.1497
+GO:0003677: [MF] DNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	44.6392	87.6247	69.4342	114.896	62.6553	163.013
+GO:0003678: [MF] DNA helicase activity	15.5995	22.9156	15.4146	68.6089	62.6454	49.3182
+GO:0003678: [MF] DNA helicase activity|g__Clostridium.s__Clostridium_thermocellum	2.12709	13.591	7.47642	55.5768	47.5258	39.9705
+GO:0003678: [MF] DNA helicase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.3331	9.32455	7.93813	13.0321	15.1196	9.34772
+GO:0003678: [MF] DNA helicase activity|g__Escherichia.s__Escherichia_coli	0.139335	0	0	0	0	0
+GO:0003684: [MF] damaged DNA binding	99.057	227.423	239.93	323.345	326.323	340.72
+GO:0003684: [MF] damaged DNA binding|g__Clostridium.s__Clostridium_thermocellum	19.1707	131.229	98.1761	272.212	265.241	284.135
+GO:0003684: [MF] damaged DNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	78.5822	94.9076	138.856	49.2771	60.6959	55.5058
+GO:0003684: [MF] damaged DNA binding|g__Escherichia.s__Escherichia_coli	0.404322	0	0.260128	0	0	0.0577896
+GO:0003684: [MF] damaged DNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.899712	1.28665	2.63782	1.85623	0.385769	1.02181
+GO:0003688: [MF] DNA replication origin binding	14.7935	28.7931	35.2201	24.5391	31.0386	28.9412
+GO:0003688: [MF] DNA replication origin binding|g__Clostridium.s__Clostridium_thermocellum	1.62361	6.62831	5.33811	16.0679	18.1539	20.2148
+GO:0003688: [MF] DNA replication origin binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.1311	22.1648	29.882	8.47126	12.8847	8.72642
+GO:0003688: [MF] DNA replication origin binding|g__Escherichia.s__Escherichia_coli	0.038765	0	0	0	0	0
+GO:0003689: [MF] DNA clamp loader activity	0.283823	0.741224	0.305686	0.199036	0	0.179513
+GO:0003689: [MF] DNA clamp loader activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.283823	0.741224	0.305686	0.199036	0	0.179513
+GO:0003690: [MF] double-stranded DNA binding	18.1782	69.1489	50.944	127.157	126.758	162.839
+GO:0003690: [MF] double-stranded DNA binding|g__Clostridium.s__Clostridium_thermocellum	10.8248	63.0403	44.6454	121.369	122.721	152.282
+GO:0003690: [MF] double-stranded DNA binding|g__Escherichia.s__Escherichia_coli	0.20131	0	0.0179072	0	0	0.0256771
+GO:0003690: [MF] double-stranded DNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	7.15208	6.10864	6.2807	5.78837	4.03646	10.531
+GO:0003697: [MF] single-stranded DNA binding	247.925	384.875	313.188	867.273	793.898	709.364
+GO:0003697: [MF] single-stranded DNA binding|g__Clostridium.s__Clostridium_thermocellum	39.8208	196.064	115.522	746.779	632.797	587.862
+GO:0003697: [MF] single-stranded DNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	207.604	188.811	196.58	120.494	161.102	121.232
+GO:0003697: [MF] single-stranded DNA binding|g__Escherichia.s__Escherichia_coli	0.499959	0	1.08585	0	0	0.269609
+GO:0003700: [MF] transcription factor activity, sequence-specific DNA binding	644.52	1497.58	1412.67	2457.29	2382.33	2758.4
+GO:0003700: [MF] transcription factor activity, sequence-specific DNA binding|g__Clostridium.s__Clostridium_thermocellum	143.228	834.154	738.52	2142.51	1981.79	2353.96
+GO:0003700: [MF] transcription factor activity, sequence-specific DNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	485.053	646.725	653.545	303.569	391.592	386.371
+GO:0003700: [MF] transcription factor activity, sequence-specific DNA binding|g__Escherichia.s__Escherichia_coli	10.9995	0	7.20276	0	0	2.61932
+GO:0003700: [MF] transcription factor activity, sequence-specific DNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	5.23905	16.7021	13.4066	11.2138	8.94321	15.445
+GO:0003723: [MF] RNA binding	1277.74	2082.17	1872.97	4052.01	3956.09	4191.3
+GO:0003723: [MF] RNA binding|g__Clostridium.s__Clostridium_thermocellum	233.015	1271.13	1038.43	3440.49	3280.13	3683.11
+GO:0003723: [MF] RNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1029.51	793.117	821.333	594.596	668.05	485.255
+GO:0003723: [MF] RNA binding|g__Escherichia.s__Escherichia_coli	3.6423	0	1.39131	0	0	0.920235
+GO:0003723: [MF] RNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	11.5742	17.9269	11.8193	16.9188	7.91403	22.0151
+GO:0003725: [MF] double-stranded RNA binding	11.6965	33.4815	22.1506	49.7842	52.1039	59.8513
+GO:0003725: [MF] double-stranded RNA binding|g__Clostridium.s__Clostridium_thermocellum	2.84265	18.2528	13.1783	40.0871	42.5015	49.0472
+GO:0003725: [MF] double-stranded RNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.56638	14.5919	8.13037	9.36121	9.15373	10.0155
+GO:0003725: [MF] double-stranded RNA binding|g__Escherichia.s__Escherichia_coli	0.11491	0	0.0214706	0	0	0
+GO:0003725: [MF] double-stranded RNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.172534	0.636721	0.820485	0.335896	0.448708	0.788519
+GO:0003729: [MF] mRNA binding	86.582	68.476	38.3799	231.6	219.958	151.556
+GO:0003729: [MF] mRNA binding|g__Clostridium.s__Clostridium_thermocellum	14.2671	38.5654	16.046	202.671	181.592	134.609
+GO:0003729: [MF] mRNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	72.3149	29.9106	22.1704	28.929	38.3661	16.9469
+GO:0003729: [MF] mRNA binding|g__Escherichia.s__Escherichia_coli	0	0	0.16342	0	0	0
+GO:0003735: [MF] structural constituent of ribosome	8229.72	16703.6	10951.1	34605.5	33481.8	37654.3
+GO:0003735: [MF] structural constituent of ribosome|g__Clostridium.s__Clostridium_thermocellum	1124.36	7772.48	4272.95	24818.1	22466.8	28765.6
+GO:0003735: [MF] structural constituent of ribosome|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	7076.53	8854.01	6578.44	9683.54	10960.2	8803.02
+GO:0003735: [MF] structural constituent of ribosome|g__Escherichia.s__Escherichia_coli	1.85664	0	2.01147	0	0	0.489223
+GO:0003735: [MF] structural constituent of ribosome|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	26.9733	77.1491	97.7281	103.776	54.8019	85.1355
+GO:0003743: [MF] translation initiation factor activity	205.112	285.346	255.318	537.462	534.449	615.502
+GO:0003743: [MF] translation initiation factor activity|g__Clostridium.s__Clostridium_thermocellum	15.4948	81.3768	66.6593	335.931	327.44	433.147
+GO:0003743: [MF] translation initiation factor activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	186.109	192.414	183.507	190.529	201.449	172.004
+GO:0003743: [MF] translation initiation factor activity|g__Escherichia.s__Escherichia_coli	0.189815	0	1.12852	0	0	0.0256447
+GO:0003743: [MF] translation initiation factor activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.31753	11.5555	4.02295	11.0023	5.56011	10.3248
+GO:0003746: [MF] translation elongation factor activity	775.748	1109.04	923.849	2270.08	2178.25	2119.63
+GO:0003746: [MF] translation elongation factor activity|g__Clostridium.s__Clostridium_thermocellum	77.4869	413.359	286.347	1635.73	1440.8	1509.42
+GO:0003746: [MF] translation elongation factor activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	696.696	691.209	633.687	628.917	735.034	601.474
+GO:0003746: [MF] translation elongation factor activity|g__Escherichia.s__Escherichia_coli	0.147987	0	0.0273344	0	0	0.245161
+GO:0003746: [MF] translation elongation factor activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.41697	4.47698	3.78708	5.4333	2.41122	8.48663
+GO:0003755: [MF] peptidyl-prolyl cis-trans isomerase activity	28.2401	140.255	106.437	349.05	311.732	343.008
+GO:0003755: [MF] peptidyl-prolyl cis-trans isomerase activity|g__Clostridium.s__Clostridium_thermocellum	20.8325	125.125	91.5941	328.974	291.897	325.195
+GO:0003755: [MF] peptidyl-prolyl cis-trans isomerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	7.12833	14.9748	13.5304	19.2067	19.5046	16.6573
+GO:0003755: [MF] peptidyl-prolyl cis-trans isomerase activity|g__Escherichia.s__Escherichia_coli	0.103098	0	0.0942272	0	0	0
+GO:0003755: [MF] peptidyl-prolyl cis-trans isomerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.176107	0.154816	1.21823	0.869957	0.330232	1.1555
+GO:0003756: [MF] protein disulfide isomerase activity	0.0814186	0	0	0	0	0
+GO:0003756: [MF] protein disulfide isomerase activity|g__Escherichia.s__Escherichia_coli	0.0814186	0	0	0	0	0
+GO:0003774: [MF] motor activity	16.2424	61.3966	47.2098	457.11	413.752	330.471
+GO:0003774: [MF] motor activity|g__Clostridium.s__Clostridium_thermocellum	16.2424	61.3966	47.157	457.11	413.752	330.428
+GO:0003774: [MF] motor activity|g__Escherichia.s__Escherichia_coli	0	0	0.0527744	0	0	0.042849
+GO:0003796: [MF] lysozyme activity	0.145265	0	0	0	0	0.0966933
+GO:0003796: [MF] lysozyme activity|g__Escherichia.s__Escherichia_coli	0.145265	0	0	0	0	0.0966933
+GO:0003824: [MF] catalytic activity	699.197	1503.87	1318.74	2668.6	2502.15	2406.11
+GO:0003824: [MF] catalytic activity|g__Clostridium.s__Clostridium_thermocellum	137.316	831.273	713.52	2195.99	1939.11	1950.29
+GO:0003824: [MF] catalytic activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	545.528	655.862	594.009	462.651	556.504	442.548
+GO:0003824: [MF] catalytic activity|g__Escherichia.s__Escherichia_coli	7.69532	0	0.546509	0	0	2.76485
+GO:0003824: [MF] catalytic activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	8.65781	16.738	10.6613	9.9622	6.538	10.5079
+GO:0003825: [MF] alpha,alpha-trehalose-phosphate synthase (UDP-forming) activity	0.162546	0.139181	0	0.0741876	0	0.0482173
+GO:0003825: [MF] alpha,alpha-trehalose-phosphate synthase (UDP-forming) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.162546	0.139181	0	0.0741876	0	0.0482173
+GO:0003839: [MF] gamma-glutamylcyclotransferase activity	0	1.46588	1.69992	1.48547	0.477746	0.915255
+GO:0003839: [MF] gamma-glutamylcyclotransferase activity|g__Clostridium.s__Clostridium_thermocellum	0	1.46588	1.69992	1.48547	0.477746	0.915255
+GO:0003840: [MF] gamma-glutamyltransferase activity	0.0455458	0	0	0	0	0
+GO:0003840: [MF] gamma-glutamyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0455458	0	0	0	0	0
+GO:0003841: [MF] 1-acylglycerol-3-phosphate O-acyltransferase activity	5.997	47.2479	28.0874	116.149	110.111	121.998
+GO:0003841: [MF] 1-acylglycerol-3-phosphate O-acyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	5.997	47.2479	28.0874	116.149	110.111	121.998
+GO:0003842: [MF] 1-pyrroline-5-carboxylate dehydrogenase activity	8.85997	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0003842: [MF] 1-pyrroline-5-carboxylate dehydrogenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.8536	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0003842: [MF] 1-pyrroline-5-carboxylate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.00636766	0	0	0	0	0
+GO:0003844: [MF] 1,4-alpha-glucan branching enzyme activity	1.36577	4.09104	3.84514	25.4212	28.2393	28.5431
+GO:0003844: [MF] 1,4-alpha-glucan branching enzyme activity|g__Clostridium.s__Clostridium_thermocellum	1.36577	4.09104	3.84514	25.4212	28.2393	28.5431
+GO:0003848: [MF] 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity	4.28636	13.559	9.93977	32.4157	24.0066	25.2294
+GO:0003848: [MF] 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity|g__Clostridium.s__Clostridium_thermocellum	1.06211	9.43031	7.26794	27.1576	18.0614	20.3111
+GO:0003848: [MF] 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.95863	3.78878	2.34332	5.25814	5.82665	4.74163
+GO:0003848: [MF] 2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.265619	0.339924	0.32851	0	0.11852	0.1767
+GO:0003849: [MF] 3-deoxy-7-phosphoheptulonate synthase activity	4.18625	33.5688	32.7505	51.4121	45.198	55.465
+GO:0003849: [MF] 3-deoxy-7-phosphoheptulonate synthase activity|g__Clostridium.s__Clostridium_thermocellum	4.18625	33.5688	32.7505	51.4121	45.198	55.465
+GO:0003852: [MF] 2-isopropylmalate synthase activity	5.77365	21.0982	17.482	51.4319	40.8152	33.2226
+GO:0003852: [MF] 2-isopropylmalate synthase activity|g__Clostridium.s__Clostridium_thermocellum	5.38225	20.4815	17.118	50.8821	40.6564	32.9352
+GO:0003852: [MF] 2-isopropylmalate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.391392	0.616792	0.364008	0.549779	0.158713	0.287396
+GO:0003855: [MF] 3-dehydroquinate dehydratase activity	1.7619	8.26109	4.24162	17.0606	16.335	19.5741
+GO:0003855: [MF] 3-dehydroquinate dehydratase activity|g__Clostridium.s__Clostridium_thermocellum	1.38574	7.35655	3.7173	17.0606	15.9985	19.0732
+GO:0003855: [MF] 3-dehydroquinate dehydratase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.376178	0.904535	0.524316	0	0.336482	0.500897
+GO:0003856: [MF] 3-dehydroquinate synthase activity	2.023	18.1819	9.45835	61.6524	42.1504	30.753
+GO:0003856: [MF] 3-dehydroquinate synthase activity|g__Clostridium.s__Clostridium_thermocellum	1.74464	17.7563	9.18415	61.5516	42.0406	30.4581
+GO:0003856: [MF] 3-dehydroquinate synthase activity|g__Escherichia.s__Escherichia_coli	0.155303	0	0	0	0	0
+GO:0003856: [MF] 3-dehydroquinate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.123051	0.425617	0.274202	0.100799	0.109795	0.294898
+GO:0003857: [MF] 3-hydroxyacyl-CoA dehydrogenase activity	0.172705	0	0	0	0	0.0158461
+GO:0003857: [MF] 3-hydroxyacyl-CoA dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.172705	0	0	0	0	0.0158461
+GO:0003861: [MF] 3-isopropylmalate dehydratase activity	5.11868	50.8153	32.7989	155.069	109.228	61.9517
+GO:0003861: [MF] 3-isopropylmalate dehydratase activity|g__Clostridium.s__Clostridium_thermocellum	4.98129	49.7019	32.4344	154.533	108.949	61.6607
+GO:0003861: [MF] 3-isopropylmalate dehydratase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.137391	1.1134	0.36464	0.535603	0.278926	0.291018
+GO:0003862: [MF] 3-isopropylmalate dehydrogenase activity	3.44379	16.5553	10.3715	56.3702	42.2949	32.7794
+GO:0003862: [MF] 3-isopropylmalate dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	3.41508	16.4448	10.2752	56.2522	42.2691	32.7029
+GO:0003862: [MF] 3-isopropylmalate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0963923	0	0	0
+GO:0003862: [MF] 3-isopropylmalate dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0287031	0.110476	0	0.118009	0.0258265	0.0764815
+GO:0003863: [MF] 3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity	142.466	6.9546	14.7641	3.46147	3.02157	1.69925
+GO:0003863: [MF] 3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	142.466	6.9546	14.7641	3.46147	3.02157	1.69925
+GO:0003864: [MF] 3-methyl-2-oxobutanoate hydroxymethyltransferase activity	32.1491	17.4858	18.6951	24.7533	29.2347	29.5198
+GO:0003864: [MF] 3-methyl-2-oxobutanoate hydroxymethyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.87409	6.84534	6.93312	13.2033	14.2757	17.5755
+GO:0003864: [MF] 3-methyl-2-oxobutanoate hydroxymethyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	28.2373	10.6405	11.762	11.5499	14.959	11.9443
+GO:0003864: [MF] 3-methyl-2-oxobutanoate hydroxymethyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0376713	0	0	0	0	0
+GO:0003866: [MF] 3-phosphoshikimate 1-carboxyvinyltransferase activity	12.841	54.9409	52.7328	144.925	144.795	140.053
+GO:0003866: [MF] 3-phosphoshikimate 1-carboxyvinyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	12.7106	54.7726	52.5702	144.858	144.756	140.053
+GO:0003866: [MF] 3-phosphoshikimate 1-carboxyvinyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0428724	0	0	0	0	0
+GO:0003866: [MF] 3-phosphoshikimate 1-carboxyvinyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0875918	0.168212	0.162563	0.0672239	0.0391087	0
+GO:0003867: [MF] 4-aminobutyrate transaminase activity	0.0217764	0	0.079748	0	0	0
+GO:0003867: [MF] 4-aminobutyrate transaminase activity|g__Escherichia.s__Escherichia_coli	0.0217764	0	0.079748	0	0	0
+GO:0003871: [MF] 5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity	0.0427751	0.120138	0.0580519	0.0640157	0.0837516	0.238726
+GO:0003871: [MF] 5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0114958	0	0	0	0	0.0306249
+GO:0003871: [MF] 5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0312793	0.120138	0.0580519	0.0640157	0.0837516	0.208101
+GO:0003872: [MF] 6-phosphofructokinase activity	246.242	427.652	315.56	632.778	655.397	447.485
+GO:0003872: [MF] 6-phosphofructokinase activity|g__Clostridium.s__Clostridium_thermocellum	12.712	116.88	72.6404	379.328	344.769	269.537
+GO:0003872: [MF] 6-phosphofructokinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	233.381	310.772	242.865	253.449	310.629	177.948
+GO:0003872: [MF] 6-phosphofructokinase activity|g__Escherichia.s__Escherichia_coli	0.1493	0	0.0554808	0	0	0
+GO:0003879: [MF] ATP phosphoribosyltransferase activity	3.47225	0.569185	1.07263	4.46076	1.15314	1.29614
+GO:0003879: [MF] ATP phosphoribosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.26044	0.569185	0.733068	4.23322	1.01539	0.85449
+GO:0003879: [MF] ATP phosphoribosyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.21181	0	0.339561	0.227512	0.137748	0.441652
+GO:0003882: [MF] CDP-diacylglycerol-serine O-phosphatidyltransferase activity	0.0402961	0	0	0	0	0
+GO:0003882: [MF] CDP-diacylglycerol-serine O-phosphatidyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0402961	0	0	0	0	0
+GO:0003883: [MF] CTP synthase activity	85.0452	48.9384	43.9147	76.3557	86.6934	66.9073
+GO:0003883: [MF] CTP synthase activity|g__Clostridium.s__Clostridium_thermocellum	2.99069	17.5081	9.72511	47.0376	51.3878	47.8895
+GO:0003883: [MF] CTP synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	81.7573	30.9161	34.0033	28.7358	35.2159	18.6169
+GO:0003883: [MF] CTP synthase activity|g__Escherichia.s__Escherichia_coli	0.163323	0	0	0	0	0
+GO:0003883: [MF] CTP synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.133915	0.514297	0.186334	0.582359	0.0896765	0.400873
+GO:0003886: [MF] DNA (cytosine-5-)-methyltransferase activity	0	0	0.14213	0	0	0
+GO:0003886: [MF] DNA (cytosine-5-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.14213	0	0	0
+GO:0003887: [MF] DNA-directed DNA polymerase activity	208.94	251.833	249.633	367.603	360.568	374.082
+GO:0003887: [MF] DNA-directed DNA polymerase activity|g__Clostridium.s__Clostridium_thermocellum	13.8017	113.47	81.4022	272.913	252.09	280.244
+GO:0003887: [MF] DNA-directed DNA polymerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	193.276	136.463	164.902	92.8841	107.422	88.0927
+GO:0003887: [MF] DNA-directed DNA polymerase activity|g__Escherichia.s__Escherichia_coli	1.29939	0	1.62008	0	0	0.107753
+GO:0003887: [MF] DNA-directed DNA polymerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.562687	1.89994	1.70858	1.80634	1.05574	5.6378
+GO:0003896: [MF] DNA primase activity	31.9117	71.8558	60.9245	174.967	154.94	163.844
+GO:0003896: [MF] DNA primase activity|g__Clostridium.s__Clostridium_thermocellum	9.35849	55.0787	43.5957	155.68	132.08	144.945
+GO:0003896: [MF] DNA primase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.8509	15.819	16.563	18.5483	22.5299	17.679
+GO:0003896: [MF] DNA primase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0282817	0	0	0
+GO:0003896: [MF] DNA primase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.702339	0.957976	0.737489	0.738419	0.33008	1.21966
+GO:0003899: [MF] DNA-directed RNA polymerase activity	315.524	286.284	219.41	620.194	573.32	520.565
+GO:0003899: [MF] DNA-directed RNA polymerase activity|g__Clostridium.s__Clostridium_thermocellum	31.4805	122.608	89.2892	472.668	417.922	393.303
+GO:0003899: [MF] DNA-directed RNA polymerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	259.178	139.541	113.496	109.676	145.053	90.425
+GO:0003899: [MF] DNA-directed RNA polymerase activity|g__Escherichia.s__Escherichia_coli	0.140842	0	0.0232749	0	0	0.0166869
+GO:0003899: [MF] DNA-directed RNA polymerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	24.7246	24.1352	16.6017	37.8499	10.3458	36.8199
+GO:0003904: [MF] deoxyribodipyrimidine photo-lyase activity	0.265935	0.196403	0.151828	0	0.0730737	0
+GO:0003904: [MF] deoxyribodipyrimidine photo-lyase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.265935	0.196403	0.151828	0	0.0730737	0
+GO:0003906: [MF] DNA-(apurinic or apyrimidinic site) lyase activity	43.758	57.4055	64.016	112.263	116.585	180.632
+GO:0003906: [MF] DNA-(apurinic or apyrimidinic site) lyase activity|g__Clostridium.s__Clostridium_thermocellum	8.44359	38.6602	41.3978	94.1453	87.3801	154.826
+GO:0003906: [MF] DNA-(apurinic or apyrimidinic site) lyase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	35.2144	18.7453	22.4538	18.0727	28.9692	25.5127
+GO:0003906: [MF] DNA-(apurinic or apyrimidinic site) lyase activity|g__Escherichia.s__Escherichia_coli	0.100011	0	0	0	0	0
+GO:0003906: [MF] DNA-(apurinic or apyrimidinic site) lyase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.164322	0.045388	0.235607	0.293152
+GO:0003908: [MF] methylated-DNA-[protein]-cysteine S-methyltransferase activity	0	1.01576	2.62726	5.81001	3.04457	5.54017
+GO:0003908: [MF] methylated-DNA-[protein]-cysteine S-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0	1.01576	2.62726	5.81001	3.04457	5.45528
+GO:0003908: [MF] methylated-DNA-[protein]-cysteine S-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0	0	0.0848896
+GO:0003909: [MF] DNA ligase activity	0.090241	0	0.33505	0	0	0
+GO:0003909: [MF] DNA ligase activity|g__Escherichia.s__Escherichia_coli	0.090241	0	0.33505	0	0	0
+GO:0003910: [MF] DNA ligase (ATP) activity	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0003910: [MF] DNA ligase (ATP) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0003911: [MF] DNA ligase (NAD+) activity	11.2177	13.9555	12.25	25.2956	27.3688	29.0036
+GO:0003911: [MF] DNA ligase (NAD+) activity|g__Clostridium.s__Clostridium_thermocellum	0.923554	8.33441	5.65561	19.559	20.7214	22.148
+GO:0003911: [MF] DNA ligase (NAD+) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.0687	5.62109	6.50628	5.73657	6.64734	6.81345
+GO:0003911: [MF] DNA ligase (NAD+) activity|g__Escherichia.s__Escherichia_coli	0.225396	0	0.0880927	0	0	0.0421052
+GO:0003917: [MF] DNA topoisomerase type I activity	25.3989	31.9729	22.6093	66.8139	68.563	62.5986
+GO:0003917: [MF] DNA topoisomerase type I activity|g__Clostridium.s__Clostridium_thermocellum	2.98451	17.6204	11.4183	60.2139	61.4208	56.995
+GO:0003917: [MF] DNA topoisomerase type I activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.2855	14.3293	10.8965	6.45138	6.94773	5.49076
+GO:0003917: [MF] DNA topoisomerase type I activity|g__Escherichia.s__Escherichia_coli	0.0198564	0	0.114796	0	0	0
+GO:0003917: [MF] DNA topoisomerase type I activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.108979	0.0232435	0.179794	0.148649	0.194523	0.112798
+GO:0003918: [MF] DNA topoisomerase type II (ATP-hydrolyzing) activity	51.9641	79.4752	72.4523	149.002	141.39	136.825
+GO:0003918: [MF] DNA topoisomerase type II (ATP-hydrolyzing) activity|g__Clostridium.s__Clostridium_thermocellum	6.78066	44.6972	34.4645	123.05	113.338	115.841
+GO:0003918: [MF] DNA topoisomerase type II (ATP-hydrolyzing) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	44.4792	32.5295	35.4333	25.4426	27.668	20.7157
+GO:0003918: [MF] DNA topoisomerase type II (ATP-hydrolyzing) activity|g__Escherichia.s__Escherichia_coli	0.11909	0	0.0995948	0	0	0
+GO:0003918: [MF] DNA topoisomerase type II (ATP-hydrolyzing) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.585217	2.24855	2.45496	0.509663	0.383816	0.268186
+GO:0003919: [MF] FMN adenylyltransferase activity	13.7662	25.8023	21.7148	53.9423	46.7158	49.7851
+GO:0003919: [MF] FMN adenylyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.18476	13.2453	14.3414	40.3507	33.9304	35.5191
+GO:0003919: [MF] FMN adenylyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.502	12.0994	6.78476	11.8856	12.0771	13.8432
+GO:0003919: [MF] FMN adenylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0794256	0.457588	0.588683	1.70599	0.70834	0.422734
+GO:0003922: [MF] GMP synthase (glutamine-hydrolyzing) activity	55.8796	57.3625	43.3631	109.841	105.863	84.3984
+GO:0003922: [MF] GMP synthase (glutamine-hydrolyzing) activity|g__Clostridium.s__Clostridium_thermocellum	3.92593	27.1335	16.1024	89.4446	80.4397	68.3222
+GO:0003922: [MF] GMP synthase (glutamine-hydrolyzing) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	51.7973	29.7592	26.6445	20.2701	25.1246	15.1858
+GO:0003922: [MF] GMP synthase (glutamine-hydrolyzing) activity|g__Escherichia.s__Escherichia_coli	0.03405	0	0	0	0	0
+GO:0003922: [MF] GMP synthase (glutamine-hydrolyzing) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.122249	0.46977	0.616198	0.126564	0.298849	0.890322
+GO:0003924: [MF] GTPase activity	516.442	833.978	623.205	2022.53	1842.85	1667.25
+GO:0003924: [MF] GTPase activity|g__Clostridium.s__Clostridium_thermocellum	91.2264	448.433	297.561	1621.13	1364.53	1261.36
+GO:0003924: [MF] GTPase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	414.785	372.913	315.105	395.09	474.382	398.036
+GO:0003924: [MF] GTPase activity|g__Escherichia.s__Escherichia_coli	0.619389	0	0.12711	0	0	0.410316
+GO:0003924: [MF] GTPase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	9.81184	12.6318	10.4115	6.31087	3.93702	7.44855
+GO:0003933: [MF] GTP cyclohydrolase activity	0.0602254	0	0.0558868	0.614964	0.671163	0.801358
+GO:0003933: [MF] GTP cyclohydrolase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0602254	0	0.0558868	0.614964	0.671163	0.801358
+GO:0003934: [MF] GTP cyclohydrolase I activity	23.8375	54.1174	39.3276	81.2648	80.2505	84.8721
+GO:0003934: [MF] GTP cyclohydrolase I activity|g__Clostridium.s__Clostridium_thermocellum	2.75064	26.1507	22.8737	59.1885	55.363	59.7911
+GO:0003934: [MF] GTP cyclohydrolase I activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.0869	27.9668	16.4539	22.0763	24.8876	25.081
+GO:0003935: [MF] GTP cyclohydrolase II activity	2.5136	14.1421	9.7049	36.0382	30.5943	26.5774
+GO:0003935: [MF] GTP cyclohydrolase II activity|g__Clostridium.s__Clostridium_thermocellum	2.5136	14.1421	9.7049	36.0382	30.5943	26.5774
+GO:0003937: [MF] IMP cyclohydrolase activity	1.77714	2.87719	2.16578	36.5795	28.0121	16.8718
+GO:0003937: [MF] IMP cyclohydrolase activity|g__Clostridium.s__Clostridium_thermocellum	1.53247	2.87719	2.16578	36.1461	27.8234	16.8718
+GO:0003937: [MF] IMP cyclohydrolase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0520107	0	0	0	0	0
+GO:0003937: [MF] IMP cyclohydrolase activity|g__Escherichia.s__Escherichia_coli	0.0337826	0	0	0	0	0
+GO:0003937: [MF] IMP cyclohydrolase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.158851	0	0	0.433461	0.188729	0
+GO:0003938: [MF] IMP dehydrogenase activity	76.3286	98.2007	77.2617	142.423	159.396	125.963
+GO:0003938: [MF] IMP dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	4.68312	31.4181	17.7155	99.2167	100.045	89.0826
+GO:0003938: [MF] IMP dehydrogenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	71.534	66.568	59.0969	42.1208	59.2179	36.5093
+GO:0003938: [MF] IMP dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0369179	0	0	0	0	0
+GO:0003938: [MF] IMP dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0745162	0.214605	0.449349	1.08578	0.133039	0.371444
+GO:0003939: [MF] L-iditol 2-dehydrogenase activity	1.04194	14.1858	11.3134	21.2411	23.4366	38.7121
+GO:0003939: [MF] L-iditol 2-dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	1.04194	14.1858	11.3134	21.2411	23.4366	38.7121
+GO:0003941: [MF] L-serine ammonia-lyase activity	0.311432	0	0.127967	0	0	0
+GO:0003941: [MF] L-serine ammonia-lyase activity|g__Escherichia.s__Escherichia_coli	0.311432	0	0.127967	0	0	0
+GO:0003942: [MF] N-acetyl-gamma-glutamyl-phosphate reductase activity	3.32244	9.99179	11.4758	34.818	30.8451	31.0709
+GO:0003942: [MF] N-acetyl-gamma-glutamyl-phosphate reductase activity|g__Clostridium.s__Clostridium_thermocellum	2.68978	9.57094	10.6172	33.7309	29.9122	30.1183
+GO:0003942: [MF] N-acetyl-gamma-glutamyl-phosphate reductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.274417	0.316447	0.10176	0.224826	0.637198	0.219193
+GO:0003942: [MF] N-acetyl-gamma-glutamyl-phosphate reductase activity|g__Escherichia.s__Escherichia_coli	0.0568472	0	0	0	0	0
+GO:0003942: [MF] N-acetyl-gamma-glutamyl-phosphate reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.301395	0.104409	0.756839	0.862297	0.295637	0.733446
+GO:0003949: [MF] 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase activity	9.34921	15.8037	14.147	56.8811	53.322	46.7054
+GO:0003949: [MF] 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase activity|g__Clostridium.s__Clostridium_thermocellum	9.34921	15.2183	14.147	55.5637	53.1404	46.2995
+GO:0003949: [MF] 1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.585427	0	1.31747	0.181523	0.405918
+GO:0003951: [MF] NAD+ kinase activity	38.0711	86.9837	71.8881	124.413	128.384	161.323
+GO:0003951: [MF] NAD+ kinase activity|g__Clostridium.s__Clostridium_thermocellum	3.27337	43.3958	38.1945	99.6322	94.2849	136.194
+GO:0003951: [MF] NAD+ kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	34.3566	43.1891	33.5009	24.7099	33.9442	25.1287
+GO:0003951: [MF] NAD+ kinase activity|g__Escherichia.s__Escherichia_coli	0.233368	0	0	0	0	0
+GO:0003951: [MF] NAD+ kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.207727	0.398826	0.192649	0.070855	0.15459	0
+GO:0003952: [MF] NAD+ synthase (glutamine-hydrolyzing) activity	108.632	71.3757	67.867	57.6419	61.0458	58.1782
+GO:0003952: [MF] NAD+ synthase (glutamine-hydrolyzing) activity|g__Clostridium.s__Clostridium_thermocellum	2.21493	7.67324	6.91007	20.1786	15.2167	15.9144
+GO:0003952: [MF] NAD+ synthase (glutamine-hydrolyzing) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	106.345	63.426	60.155	37.1686	45.6683	41.5932
+GO:0003952: [MF] NAD+ synthase (glutamine-hydrolyzing) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0720129	0.276494	0.801901	0.294711	0.160819	0.670579
+GO:0003954: [MF] NADH dehydrogenase activity	16.142	53.0885	39.1071	15.0276	21.1058	31.5373
+GO:0003954: [MF] NADH dehydrogenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.1208	53.0885	39.1071	15.0276	21.1058	31.5373
+GO:0003954: [MF] NADH dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0211688	0	0	0	0	0
+GO:0003957: [MF] NAD(P)+ transhydrogenase (B-specific) activity	0.0953691	0	0.07208	0	0	0.0517099
+GO:0003957: [MF] NAD(P)+ transhydrogenase (B-specific) activity|g__Escherichia.s__Escherichia_coli	0.0953691	0	0.07208	0	0	0.0517099
+GO:0003960: [MF] NADPH:quinone reductase activity	0.0582811	0	0	0	0	0
+GO:0003960: [MF] NADPH:quinone reductase activity|g__Escherichia.s__Escherichia_coli	0.0582811	0	0	0	0	0
+GO:0003961: [MF] O-acetylhomoserine aminocarboxypropyltransferase activity	1.46716	11.5092	9.78537	35.8223	26.6286	19.0933
+GO:0003961: [MF] O-acetylhomoserine aminocarboxypropyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.46716	11.5092	9.78537	35.8223	26.6286	19.0933
+GO:0003962: [MF] cystathionine gamma-synthase activity	0.0480734	0	0	0	0	0
+GO:0003962: [MF] cystathionine gamma-synthase activity|g__Escherichia.s__Escherichia_coli	0.0480734	0	0	0	0	0
+GO:0003963: [MF] RNA-3'-phosphate cyclase activity	0.281003	0.216099	0.208752	0.345421	0.175555	0.112022
+GO:0003963: [MF] RNA-3'-phosphate cyclase activity|g__Escherichia.s__Escherichia_coli	0.0560695	0	0	0	0	0.0371574
+GO:0003963: [MF] RNA-3'-phosphate cyclase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.224934	0.216099	0.208752	0.345421	0.175555	0.0748645
+GO:0003977: [MF] UDP-N-acetylglucosamine diphosphorylase activity	23.5292	49.9847	39.6301	131.475	129.738	104.702
+GO:0003977: [MF] UDP-N-acetylglucosamine diphosphorylase activity|g__Clostridium.s__Clostridium_thermocellum	6.26833	35.7007	27.2547	96.8199	94.1636	84.6506
+GO:0003977: [MF] UDP-N-acetylglucosamine diphosphorylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.0894	14.1176	12.1005	34.4997	35.4584	19.8786
+GO:0003977: [MF] UDP-N-acetylglucosamine diphosphorylase activity|g__Escherichia.s__Escherichia_coli	0.019905	0	0.0738842	0	0	0
+GO:0003977: [MF] UDP-N-acetylglucosamine diphosphorylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.151609	0.166391	0.200994	0.15514	0.116067	0.172948
+GO:0003978: [MF] UDP-glucose 4-epimerase activity	2.80024	27.4436	23.1202	47.0642	55.1477	57.7405
+GO:0003978: [MF] UDP-glucose 4-epimerase activity|g__Clostridium.s__Clostridium_thermocellum	2.6548	27.3309	23.0112	46.6437	55.0428	57.194
+GO:0003978: [MF] UDP-glucose 4-epimerase activity|g__Escherichia.s__Escherichia_coli	0.0280226	0	0	0	0	0
+GO:0003978: [MF] UDP-glucose 4-epimerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.117413	0.11267	0.108932	0.420429	0.104868	0.546495
+GO:0003979: [MF] UDP-glucose 6-dehydrogenase activity	2.85264	9.02206	7.76041	29.3526	27.1053	28.7812
+GO:0003979: [MF] UDP-glucose 6-dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	2.60525	8.90187	7.53177	29.0305	27.0512	28.6638
+GO:0003979: [MF] UDP-glucose 6-dehydrogenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0404176	0.0387858	0.149934	0.0619763	0.0541271	0.0537796
+GO:0003979: [MF] UDP-glucose 6-dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.143394	0	0	0	0	0.0636106
+GO:0003979: [MF] UDP-glucose 6-dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0636037	0.0813988	0.0787106	0.260141	0	0
+GO:0003983: [MF] UTP:glucose-1-phosphate uridylyltransferase activity	3.41416	17.7693	10.0443	40.7912	36.3595	50.4016
+GO:0003983: [MF] UTP:glucose-1-phosphate uridylyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.00262	16.584	8.70638	40.1594	35.961	49.9037
+GO:0003983: [MF] UTP:glucose-1-phosphate uridylyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0869269
+GO:0003983: [MF] UTP:glucose-1-phosphate uridylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.411541	1.18523	1.3379	0.63185	0.398466	0.410963
+GO:0003984: [MF] acetolactate synthase activity	12.547	82.7444	56.9879	226.939	186.901	134.24
+GO:0003984: [MF] acetolactate synthase activity|g__Clostridium.s__Clostridium_thermocellum	12.3166	82.6134	56.7822	225.977	186.613	134.043
+GO:0003984: [MF] acetolactate synthase activity|g__Escherichia.s__Escherichia_coli	0.128107	0	0	0	0	0
+GO:0003984: [MF] acetolactate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.10232	0.131013	0.205685	0.961728	0.287716	0.197397
+GO:0003985: [MF] acetyl-CoA C-acetyltransferase activity	26.0746	2.18932	2.51143	2.25821	2.2474	1.57853
+GO:0003985: [MF] acetyl-CoA C-acetyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	26.0275	2.18932	2.51143	2.25821	2.2474	1.51585
+GO:0003985: [MF] acetyl-CoA C-acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0471013	0	0	0	0	0.0626728
+GO:0003987: [MF] acetate-CoA ligase activity	0.383591	0.603863	0.128914	0.461639	0	0.431271
+GO:0003987: [MF] acetate-CoA ligase activity|g__Escherichia.s__Escherichia_coli	0.0624857	0	0	0	0	0
+GO:0003987: [MF] acetate-CoA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.321105	0.603863	0.128914	0.461639	0	0.431271
+GO:0003988: [MF] acetyl-CoA C-acyltransferase activity	0.0471013	0	0.0881829	0	0	0.0626728
+GO:0003988: [MF] acetyl-CoA C-acyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0471013	0	0.0881829	0	0	0.0626728
+GO:0003989: [MF] acetyl-CoA carboxylase activity	42.5974	46.0647	28.977	99.6685	85.102	56.9319
+GO:0003989: [MF] acetyl-CoA carboxylase activity|g__Clostridium.s__Clostridium_thermocellum	2.82617	21.9157	7.62902	73.9833	56.342	36.5976
+GO:0003989: [MF] acetyl-CoA carboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.7308	24.1489	20.9167	25.6852	28.76	20.2805
+GO:0003989: [MF] acetyl-CoA carboxylase activity|g__Escherichia.s__Escherichia_coli	0.0405149	0	0.431307	0	0	0.0539089
+GO:0003991: [MF] acetylglutamate kinase activity	0.871981	2.99197	3.07382	12.1275	5.11625	6.24664
+GO:0003991: [MF] acetylglutamate kinase activity|g__Clostridium.s__Clostridium_thermocellum	0.540085	2.86455	2.88893	11.9237	4.87905	5.78973
+GO:0003991: [MF] acetylglutamate kinase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.103581
+GO:0003991: [MF] acetylglutamate kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.331896	0.127419	0.184846	0.203761	0.237191	0.353367
+GO:0003992: [MF] N2-acetyl-L-ornithine:2-oxoglutarate 5-aminotransferase activity	1.36353	3.50888	1.84282	18.3242	7.58762	6.43101
+GO:0003992: [MF] N2-acetyl-L-ornithine:2-oxoglutarate 5-aminotransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.22298	3.18963	1.49848	18.1541	7.37558	5.86201
+GO:0003992: [MF] N2-acetyl-L-ornithine:2-oxoglutarate 5-aminotransferase activity|g__Escherichia.s__Escherichia_coli	0.0217764	0	0.079748	0	0	0
+GO:0003992: [MF] N2-acetyl-L-ornithine:2-oxoglutarate 5-aminotransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.118774	0.319248	0.264549	0.170087	0.212016	0.56897
+GO:0003993: [MF] acid phosphatase activity	20.2842	21.6924	22.903	67.0532	58.2092	73.7884
+GO:0003993: [MF] acid phosphatase activity|g__Clostridium.s__Clostridium_thermocellum	20.2842	21.6924	22.903	67.0532	58.2092	73.6737
+GO:0003993: [MF] acid phosphatase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.114674
+GO:0003994: [MF] aconitate hydratase activity	1.11551	12.6957	13.5628	26.4564	26.7358	26.7353
+GO:0003994: [MF] aconitate hydratase activity|g__Clostridium.s__Clostridium_thermocellum	1.10559	12.6957	13.5628	26.4564	26.7358	26.7353
+GO:0003994: [MF] aconitate hydratase activity|g__Escherichia.s__Escherichia_coli	0.00991605	0	0	0	0	0
+GO:0003995: [MF] acyl-CoA dehydrogenase activity	0.178829	0	0.0908442	0	0	0.315563
+GO:0003995: [MF] acyl-CoA dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.178829	0	0.0908442	0	0	0.315563
+GO:0003999: [MF] adenine phosphoribosyltransferase activity	88.2354	84.4916	56.7846	100.811	105.061	109.704
+GO:0003999: [MF] adenine phosphoribosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	5.3083	25.8836	13.0491	63.7916	59.4961	59.5095
+GO:0003999: [MF] adenine phosphoribosyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	82.9271	58.608	43.511	37.0193	45.5653	50.1944
+GO:0003999: [MF] adenine phosphoribosyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.224404	0	0	0
+GO:0004000: [MF] adenosine deaminase activity	0.028533	0	0	0	0	0
+GO:0004000: [MF] adenosine deaminase activity|g__Escherichia.s__Escherichia_coli	0.028533	0	0	0	0	0
+GO:0004003: [MF] ATP-dependent DNA helicase activity	21.3563	49.5754	45.9459	105.668	101.29	111.02
+GO:0004003: [MF] ATP-dependent DNA helicase activity|g__Clostridium.s__Clostridium_thermocellum	8.84993	39.5339	36.4808	92.6987	88.1387	100.731
+GO:0004003: [MF] ATP-dependent DNA helicase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	12.2596	9.9679	9.19547	12.8521	13.1056	10.1141
+GO:0004003: [MF] ATP-dependent DNA helicase activity|g__Escherichia.s__Escherichia_coli	0.170104	0	0.269691	0	0	0.0384186
+GO:0004003: [MF] ATP-dependent DNA helicase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.076655	0.0736043	0	0.117685	0.0456412	0.136017
+GO:0004004: [MF] ATP-dependent RNA helicase activity	0.160625	0	0.14619	0	0	0.1496
+GO:0004004: [MF] ATP-dependent RNA helicase activity|g__Escherichia.s__Escherichia_coli	0.160625	0	0.14619	0	0	0.1496
+GO:0004008: [MF] copper-exporting ATPase activity	15.9607	6.27298	12.8348	2.63258	3.93105	6.52706
+GO:0004008: [MF] copper-exporting ATPase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.9607	6.27298	12.8348	2.63258	3.93105	6.52706
+GO:0004013: [MF] adenosylhomocysteinase activity	21.1712	44.5623	38.2366	107.921	115.536	89.4905
+GO:0004013: [MF] adenosylhomocysteinase activity|g__Clostridium.s__Clostridium_thermocellum	4.23802	22.4967	18.8175	78.4721	77.705	67.3157
+GO:0004013: [MF] adenosylhomocysteinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.9332	21.8965	19.3373	29.1334	37.6344	21.9112
+GO:0004013: [MF] adenosylhomocysteinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.169052	0.0817327	0.315378	0.196498	0.263659
+GO:0004014: [MF] adenosylmethionine decarboxylase activity	109.31	260.647	237.286	727.63	738.062	1032.77
+GO:0004014: [MF] adenosylmethionine decarboxylase activity|g__Clostridium.s__Clostridium_thermocellum	17.8211	150.459	93.7517	655.139	644.823	950.994
+GO:0004014: [MF] adenosylmethionine decarboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	91.4887	110.189	143.464	72.4909	93.239	81.7297
+GO:0004014: [MF] adenosylmethionine decarboxylase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0699148	0	0	0.0501253
+GO:0004015: [MF] adenosylmethionine-8-amino-7-oxononanoate transaminase activity	0.10441	0.0762647	0.488592	0.710987	0.726831	0.501964
+GO:0004015: [MF] adenosylmethionine-8-amino-7-oxononanoate transaminase activity|g__Clostridium.s__Clostridium_thermocellum	0.0595449	0.0762647	0.405281	0.710987	0.726831	0.501964
+GO:0004015: [MF] adenosylmethionine-8-amino-7-oxononanoate transaminase activity|g__Escherichia.s__Escherichia_coli	0.0448653	0	0.0833114	0	0	0
+GO:0004016: [MF] adenylate cyclase activity	0	0	0	0	0	0.0269706
+GO:0004016: [MF] adenylate cyclase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0269706
+GO:0004017: [MF] adenylate kinase activity	53.9055	24.1066	19.5207	99.7536	64.3065	57.0135
+GO:0004017: [MF] adenylate kinase activity|g__Clostridium.s__Clostridium_thermocellum	4.57971	10.556	6.43956	78.6257	34.4591	32.6999
+GO:0004017: [MF] adenylate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	48.9564	13.5506	11.9735	20.7761	29.4811	23.4327
+GO:0004017: [MF] adenylate kinase activity|g__Escherichia.s__Escherichia_coli	0.147307	0	0	0	0	0
+GO:0004017: [MF] adenylate kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.22209	0	1.10759	0.351738	0.366345	0.880976
+GO:0004018: [MF] N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity	7.46453	23.2638	16.5587	57.9401	53.1651	55.8304
+GO:0004018: [MF] N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity|g__Clostridium.s__Clostridium_thermocellum	2.56609	19.096	13.0901	53.6147	49.7911	53.0492
+GO:0004018: [MF] N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.73713	3.81776	2.90485	3.76601	3.22935	2.67336
+GO:0004018: [MF] N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity|g__Escherichia.s__Escherichia_coli	0.03981	0	0	0	0	0
+GO:0004018: [MF] N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.121496	0.350005	0.563694	0.559503	0.14465	0.107786
+GO:0004019: [MF] adenylosuccinate synthase activity	32.5895	42.6664	38.9489	112.152	129.331	103.879
+GO:0004019: [MF] adenylosuccinate synthase activity|g__Clostridium.s__Clostridium_thermocellum	3.47798	25.0905	23.5623	91.833	104.184	82.8417
+GO:0004019: [MF] adenylosuccinate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	28.881	17.4687	14.6117	19.1518	24.4513	19.9258
+GO:0004019: [MF] adenylosuccinate synthase activity|g__Escherichia.s__Escherichia_coli	0.0634579	0	0	0	0	0
+GO:0004019: [MF] adenylosuccinate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.167042	0.107163	0.774972	1.16755	0.6956	1.11123
+GO:0004020: [MF] adenylylsulfate kinase activity	0.225858	27.1204	16.2624	73.8219	53.4032	41.2491
+GO:0004020: [MF] adenylylsulfate kinase activity|g__Clostridium.s__Clostridium_thermocellum	0.117826	27.1204	16.2624	73.8219	53.4032	41.2491
+GO:0004020: [MF] adenylylsulfate kinase activity|g__Escherichia.s__Escherichia_coli	0.108032	0	0	0	0	0
+GO:0004021: [MF] L-alanine:2-oxoglutarate aminotransferase activity	0.0446465	0	0	0	0	0
+GO:0004021: [MF] L-alanine:2-oxoglutarate aminotransferase activity|g__Escherichia.s__Escherichia_coli	0.0446465	0	0	0	0	0
+GO:0004022: [MF] alcohol dehydrogenase (NAD) activity	0.750704	16.1959	9.79498	72.5495	65.9282	34.2944
+GO:0004022: [MF] alcohol dehydrogenase (NAD) activity|g__Clostridium.s__Clostridium_thermocellum	0.658664	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0004022: [MF] alcohol dehydrogenase (NAD) activity|g__Escherichia.s__Escherichia_coli	0.0920395	0	0.0900323	0	0	0
+GO:0004029: [MF] aldehyde dehydrogenase (NAD) activity	9.20205	7.17812	8.50823	2.55001	3.206	4.34188
+GO:0004029: [MF] aldehyde dehydrogenase (NAD) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.8536	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0004029: [MF] aldehyde dehydrogenase (NAD) activity|g__Escherichia.s__Escherichia_coli	0.348447	0	0.200453	0	0	0
+GO:0004030: [MF] aldehyde dehydrogenase [NAD(P)+] activity	0.229819	2.94146	1.49279	7.42607	6.99288	7.20601
+GO:0004030: [MF] aldehyde dehydrogenase [NAD(P)+] activity|g__Clostridium.s__Clostridium_thermocellum	0.229819	2.94146	1.49279	7.42607	6.99288	7.20601
+GO:0004033: [MF] aldo-keto reductase (NADP) activity	0.0585242	0	0	0	0	0.114189
+GO:0004033: [MF] aldo-keto reductase (NADP) activity|g__Escherichia.s__Escherichia_coli	0.0585242	0	0	0	0	0.114189
+GO:0004034: [MF] aldose 1-epimerase activity	0.0545626	0	0	0	0	0
+GO:0004034: [MF] aldose 1-epimerase activity|g__Escherichia.s__Escherichia_coli	0.0545626	0	0	0	0	0
+GO:0004038: [MF] allantoinase activity	0.0191516	0	0	0	0	0.0947853
+GO:0004038: [MF] allantoinase activity|g__Escherichia.s__Escherichia_coli	0.0191516	0	0	0	0	0.0947853
+GO:0004040: [MF] amidase activity	1.68811	0.933472	0.83776	0.0826185	0.144693	0.0478939
+GO:0004040: [MF] amidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.61867	0.933472	0.451064	0.0826185	0.144693	0
+GO:0004040: [MF] amidase activity|g__Escherichia.s__Escherichia_coli	0.069461	0	0.386697	0	0	0.0478939
+GO:0004042: [MF] acetyl-CoA:L-glutamate N-acetyltransferase activity	1.1043	4.14886	2.72961	15.0146	12.9854	11.9995
+GO:0004042: [MF] acetyl-CoA:L-glutamate N-acetyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.01251	3.48787	2.17638	14.6388	12.8624	11.5721
+GO:0004042: [MF] acetyl-CoA:L-glutamate N-acetyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0917964	0.661038	0.553229	0.375812	0.122947	0.427488
+GO:0004044: [MF] amidophosphoribosyltransferase activity	1.86755	2.69591	1.30908	15.1093	20.3495	15.4024
+GO:0004044: [MF] amidophosphoribosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.51317	2.48047	0.993152	14.8184	20.047	15.0013
+GO:0004044: [MF] amidophosphoribosyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.168962	0.215445	0.174381	0.115397	0.268508	0.325038
+GO:0004044: [MF] amidophosphoribosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0710651	0	0	0	0	0
+GO:0004044: [MF] amidophosphoribosyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.114351	0	0.141499	0.175533	0.0340519	0.0760934
+GO:0004045: [MF] aminoacyl-tRNA hydrolase activity	6.36462	14.3745	10.0405	21.2001	22.0775	21.9274
+GO:0004045: [MF] aminoacyl-tRNA hydrolase activity|g__Clostridium.s__Clostridium_thermocellum	1.21345	6.76945	3.54229	13.4902	13.2259	14.2407
+GO:0004045: [MF] aminoacyl-tRNA hydrolase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.15117	7.60504	6.4982	7.70994	8.85166	7.6867
+GO:0004047: [MF] aminomethyltransferase activity	124.331	83.1919	115.231	65.8005	80.3797	46.7561
+GO:0004047: [MF] aminomethyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	124.331	83.1919	115.231	65.8005	80.3797	46.7561
+GO:0004048: [MF] anthranilate phosphoribosyltransferase activity	4.33166	28.4774	61.0337	96.97	64.4137	67.108
+GO:0004048: [MF] anthranilate phosphoribosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.52973	28.3747	61.0337	96.7238	64.2943	66.0053
+GO:0004048: [MF] anthranilate phosphoribosyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.801937	0.102682	0	0.246214	0.119388	1.10276
+GO:0004049: [MF] anthranilate synthase activity	1.55218	8.84292	23.5143	51.5684	39.9968	92.2143
+GO:0004049: [MF] anthranilate synthase activity|g__Clostridium.s__Clostridium_thermocellum	1.0371	8.84292	23.4419	51.5684	39.9127	91.704
+GO:0004049: [MF] anthranilate synthase activity|g__Escherichia.s__Escherichia_coli	0.0925498	0	0	0	0	0
+GO:0004049: [MF] anthranilate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.422526	0	0.0724408	0	0.0840771	0.510275
+GO:0004055: [MF] argininosuccinate synthase activity	1.17517	2.45821	1.64106	15.2995	6.41909	8.54216
+GO:0004055: [MF] argininosuccinate synthase activity|g__Clostridium.s__Clostridium_thermocellum	0.842014	1.79147	1.39365	14.9205	6.33647	8.23416
+GO:0004055: [MF] argininosuccinate synthase activity|g__Escherichia.s__Escherichia_coli	0.101785	0	0.0755531	0	0	0
+GO:0004055: [MF] argininosuccinate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.231375	0.666779	0.171855	0.378971	0.082623	0.307996
+GO:0004056: [MF] argininosuccinate lyase activity	1.83717	2.88611	1.24525	13.0639	7.671	6.69098
+GO:0004056: [MF] argininosuccinate lyase activity|g__Clostridium.s__Clostridium_thermocellum	1.62409	2.70049	1.06591	12.8661	7.55014	6.66527
+GO:0004056: [MF] argininosuccinate lyase activity|g__Escherichia.s__Escherichia_coli	0.0198564	0	0	0	0	0
+GO:0004056: [MF] argininosuccinate lyase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.193217	0.185668	0.179343	0.197842	0.120864	0.0257418
+GO:0004061: [MF] arylformamidase activity	15.886	13.0764	8.93453	11.7272	10.8371	8.93229
+GO:0004061: [MF] arylformamidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.5656	12.5449	8.71175	11.5431	10.73	8.61288
+GO:0004061: [MF] arylformamidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.320352	0.531379	0.222735	0.184064	0.107169	0.319411
+GO:0004065: [MF] arylsulfatase activity	0.0322758	0	0.0299506	0	0	0
+GO:0004065: [MF] arylsulfatase activity|g__Escherichia.s__Escherichia_coli	0.0322758	0	0.0299506	0	0	0
+GO:0004066: [MF] asparagine synthase (glutamine-hydrolyzing) activity	0.134644	0.294744	0.393102	0.441022	0.239665	0.58155
+GO:0004066: [MF] asparagine synthase (glutamine-hydrolyzing) activity|g__Clostridium.s__Clostridium_thermocellum	0.0574548	0.220626	0.106631	0.26422	0.205223	0.324909
+GO:0004066: [MF] asparagine synthase (glutamine-hydrolyzing) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0771897	0.074071	0.286425	0.176802	0.0344425	0.256641
+GO:0004067: [MF] asparaginase activity	29.9682	18.1148	17.6332	4.86452	8.85206	14.2585
+GO:0004067: [MF] asparaginase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.5423	18.0342	17.5276	4.73572	8.79582	14.1388
+GO:0004067: [MF] asparaginase activity|g__Escherichia.s__Escherichia_coli	0.195113	0	0.105549	0	0	0.0360579
+GO:0004067: [MF] asparaginase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.230816	0.0805587	0	0.128802	0.0562323	0.0837254
+GO:0004068: [MF] aspartate 1-decarboxylase activity	32.504	41.5762	38.7524	55.2408	50.9581	53.1722
+GO:0004068: [MF] aspartate 1-decarboxylase activity|g__Clostridium.s__Clostridium_thermocellum	2.52193	14.4972	11.4945	32.9542	31.4178	34.2164
+GO:0004068: [MF] aspartate 1-decarboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.9563	26.9304	27.2579	21.9174	19.4253	18.9558
+GO:0004068: [MF] aspartate 1-decarboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0258109	0.148609	0	0.369296	0.115025	0
+GO:0004069: [MF] L-aspartate:2-oxoglutarate aminotransferase activity	50.4774	29.3386	45.1778	59.485	63.9703	91.9904
+GO:0004069: [MF] L-aspartate:2-oxoglutarate aminotransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.304384	15.5106	12.4246	54.3206	58.0849	85.4305
+GO:0004069: [MF] L-aspartate:2-oxoglutarate aminotransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	50.0765	13.7323	32.6144	4.60319	5.75173	6.46044
+GO:0004069: [MF] L-aspartate:2-oxoglutarate aminotransferase activity|g__Escherichia.s__Escherichia_coli	0.0466881	0	0	0	0	0
+GO:0004069: [MF] L-aspartate:2-oxoglutarate aminotransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0498233	0.0956809	0.138792	0.561145	0.133625	0.0995068
+GO:0004070: [MF] aspartate carbamoyltransferase activity	2.58926	6.44138	8.27571	10.3553	12.5279	16.1536
+GO:0004070: [MF] aspartate carbamoyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.431203	4.66759	5.1447	9.77018	11.9337	15.5682
+GO:0004070: [MF] aspartate carbamoyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.8177	1.71465	2.95952	0.522123	0.484192	0.339526
+GO:0004070: [MF] aspartate carbamoyltransferase activity|g__Escherichia.s__Escherichia_coli	0.217157	0	0	0	0	0
+GO:0004070: [MF] aspartate carbamoyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.123222	0.0591355	0.171494	0.0630458	0.10999	0.245873
+GO:0004071: [MF] aspartate-ammonia ligase activity	11.4358	40.0307	28.164	51.3344	51.4781	42.8385
+GO:0004071: [MF] aspartate-ammonia ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.00423	11.0108	9.29827	27.4214	27.3095	32.9501
+GO:0004071: [MF] aspartate-ammonia ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.43158	29.0199	18.8658	23.913	24.1686	9.43613
+GO:0004071: [MF] aspartate-ammonia ligase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.452292
+GO:0004072: [MF] aspartate kinase activity	1.67487	14.9357	11.6974	57.2145	53.2435	48.8094
+GO:0004072: [MF] aspartate kinase activity|g__Clostridium.s__Clostridium_thermocellum	1.41736	14.388	11.0114	56.7087	52.8687	48.2522
+GO:0004072: [MF] aspartate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0405149	0.155563	0.225261	0.0414585	0.253186	0.134724
+GO:0004072: [MF] aspartate kinase activity|g__Escherichia.s__Escherichia_coli	0.103535	0	0.0395132	0	0	0
+GO:0004072: [MF] aspartate kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.113476	0.392152	0.421158	0.4643	0.121623	0.422508
+GO:0004073: [MF] aspartate-semialdehyde dehydrogenase activity	2.6359	7.94898	9.45118	21.4539	25.7057	25.8035
+GO:0004073: [MF] aspartate-semialdehyde dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	2.11693	7.52813	8.59258	20.3668	24.8744	25.0777
+GO:0004073: [MF] aspartate-semialdehyde dehydrogenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.274417	0.316447	0.10176	0.224826	0.637198	0.219193
+GO:0004073: [MF] aspartate-semialdehyde dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.244572	0.104409	0.756839	0.862297	0.194176	0.506492
+GO:0004075: [MF] biotin carboxylase activity	0.223792	0.175073	0.422421	0.262579	0.130934	0.346511
+GO:0004075: [MF] biotin carboxylase activity|g__Escherichia.s__Escherichia_coli	0.0405149	0	0.150294	0	0	0.0539089
+GO:0004075: [MF] biotin carboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.183277	0.175073	0.272127	0.262579	0.130934	0.292602
+GO:0004076: [MF] biotin synthase activity	0.059788	0.287043	0.219803	0.64155	0.879272	1.82951
+GO:0004076: [MF] biotin synthase activity|g__Clostridium.s__Clostridium_thermocellum	0.059788	0.287043	0.219803	0.64155	0.879272	1.82951
+GO:0004077: [MF] biotin-[acetyl-CoA-carboxylase] ligase activity	115.225	176.381	339.463	77.3808	89.5301	71.541
+GO:0004077: [MF] biotin-[acetyl-CoA-carboxylase] ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	114.816	175.867	339.038	76.677	89.1209	71.4393
+GO:0004077: [MF] biotin-[acetyl-CoA-carboxylase] ligase activity|g__Escherichia.s__Escherichia_coli	0.178999	0	0	0	0	0
+GO:0004077: [MF] biotin-[acetyl-CoA-carboxylase] ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.229212	0.51369	0.424992	0.70375	0.409274	0.101706
+GO:0004088: [MF] carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity	2.16722	9.60753	6.90132	32.7295	32.6151	27.3906
+GO:0004088: [MF] carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity|g__Clostridium.s__Clostridium_thermocellum	2.04589	9.22471	6.84268	32.5625	32.4153	26.6028
+GO:0004088: [MF] carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity|g__Escherichia.s__Escherichia_coli	0.0316439	0	0.0586834	0	0	0
+GO:0004088: [MF] carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.089682	0.382817	0	0.166978	0.199775	0.78784
+GO:0004089: [MF] carbonate dehydratase activity	0.189401	0.229307	0.412813	0.392003	0.113919	0.848346
+GO:0004089: [MF] carbonate dehydratase activity|g__Escherichia.s__Escherichia_coli	0.189401	0	0.176005	0	0	0
+GO:0004089: [MF] carbonate dehydratase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.229307	0.236763	0.392003	0.113919	0.848346
+GO:0004096: [MF] catalase activity	0.0460319	0	0	0	0	0
+GO:0004096: [MF] catalase activity|g__Escherichia.s__Escherichia_coli	0.0460319	0	0	0	0	0
+GO:0004106: [MF] chorismate mutase activity	0.237451	0	0.306859	0	0.420168	0.432759
+GO:0004106: [MF] chorismate mutase activity|g__Escherichia.s__Escherichia_coli	0.0721101	0	0	0	0	0
+GO:0004106: [MF] chorismate mutase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.16534	0	0.306859	0	0.420168	0.432759
+GO:0004107: [MF] chorismate synthase activity	6.57233	26.1658	18.0742	71.8463	57.087	73.5215
+GO:0004107: [MF] chorismate synthase activity|g__Clostridium.s__Clostridium_thermocellum	5.75051	25.0653	17.4271	71.0047	56.8645	73.0903
+GO:0004107: [MF] chorismate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.821817	1.10047	0.647006	0.841605	0.222477	0.431142
+GO:0004108: [MF] citrate (Si)-synthase activity	0.0206827	0	0	0	0	0
+GO:0004108: [MF] citrate (Si)-synthase activity|g__Escherichia.s__Escherichia_coli	0.0206827	0	0	0	0	0
+GO:0004109: [MF] coproporphyrinogen oxidase activity	0.595133	5.12201	2.98933	9.71208	10.8358	8.56095
+GO:0004109: [MF] coproporphyrinogen oxidase activity|g__Clostridium.s__Clostridium_thermocellum	0.562736	5.12201	2.95248	9.71208	10.8358	8.56095
+GO:0004109: [MF] coproporphyrinogen oxidase activity|g__Escherichia.s__Escherichia_coli	0.0323973	0	0.0368519	0	0	0
+GO:0004112: [MF] cyclic-nucleotide phosphodiesterase activity	0.04924	0	0.0499327	0	0	0
+GO:0004112: [MF] cyclic-nucleotide phosphodiesterase activity|g__Escherichia.s__Escherichia_coli	0.04924	0	0.0499327	0	0	0
+GO:0004113: [MF] 2',3'-cyclic-nucleotide 3'-phosphodiesterase activity	12.351	21.541	20.1844	35.4765	30.2323	39.7342
+GO:0004113: [MF] 2',3'-cyclic-nucleotide 3'-phosphodiesterase activity|g__Clostridium.s__Clostridium_thermocellum	2.05304	14.8595	15.0335	28.6236	25.8995	31.0351
+GO:0004113: [MF] 2',3'-cyclic-nucleotide 3'-phosphodiesterase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.57913	6.22052	4.92814	6.42321	4.33271	8.69916
+GO:0004113: [MF] 2',3'-cyclic-nucleotide 3'-phosphodiesterase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.718792	0.460995	0.222735	0.429706	0	0
+GO:0004121: [MF] cystathionine beta-lyase activity	0.0234048	0	0.0854314	0	0	0
+GO:0004121: [MF] cystathionine beta-lyase activity|g__Escherichia.s__Escherichia_coli	0.0234048	0	0.0854314	0	0	0
+GO:0004124: [MF] cysteine synthase activity	13.9511	951.259	651.524	1458.96	1283.43	1106.34
+GO:0004124: [MF] cysteine synthase activity|g__Clostridium.s__Clostridium_thermocellum	7.50952	930.533	633.388	1444.67	1267.68	1095.07
+GO:0004124: [MF] cysteine synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.37537	20.7263	18.0253	14.2907	15.7527	11.2618
+GO:0004124: [MF] cysteine synthase activity|g__Escherichia.s__Escherichia_coli	0.0662285	0	0.109744	0	0	0
+GO:0004125: [MF] L-seryl-tRNASec selenium transferase activity	14.1724	16.9223	13.8159	13.3391	14.8082	17.0092
+GO:0004125: [MF] L-seryl-tRNASec selenium transferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.0747	16.9223	13.8159	13.3391	14.8082	17.0092
+GO:0004125: [MF] L-seryl-tRNASec selenium transferase activity|g__Escherichia.s__Escherichia_coli	0.0976294	0	0	0	0	0
+GO:0004126: [MF] cytidine deaminase activity	10.7453	22.0696	12.621	58.5388	56.106	59.8113
+GO:0004126: [MF] cytidine deaminase activity|g__Clostridium.s__Clostridium_thermocellum	5.42019	15.356	8.18067	52.5126	48.2299	47.6837
+GO:0004126: [MF] cytidine deaminase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.32507	6.71358	4.44036	6.02628	7.87614	12.1276
+GO:0004127: [MF] cytidylate kinase activity	29.1597	70.0256	41.3772	131.41	149.503	148.496
+GO:0004127: [MF] cytidylate kinase activity|g__Clostridium.s__Clostridium_thermocellum	6.82242	51.3493	27.5884	104.762	118.867	125.629
+GO:0004127: [MF] cytidylate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.2649	18.5374	13.7887	25.9076	30.2487	22.0955
+GO:0004127: [MF] cytidylate kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0723289	0.138901	0	0.740408	0.38718	0.77083
+GO:0004129: [MF] cytochrome-c oxidase activity	0.196595	0	0	0	0	0
+GO:0004129: [MF] cytochrome-c oxidase activity|g__Escherichia.s__Escherichia_coli	0.196595	0	0	0	0	0
+GO:0004130: [MF] cytochrome-c peroxidase activity	0.198613	0	0.071674	0	0	0
+GO:0004130: [MF] cytochrome-c peroxidase activity|g__Escherichia.s__Escherichia_coli	0.198613	0	0.071674	0	0	0
+GO:0004133: [MF] glycogen debranching enzyme activity	0.079936	0	0.148355	0	0	0
+GO:0004133: [MF] glycogen debranching enzyme activity|g__Escherichia.s__Escherichia_coli	0.079936	0	0.148355	0	0	0
+GO:0004134: [MF] 4-alpha-glucanotransferase activity	1.11361	8.18431	6.03654	29.6421	28.7723	30.4393
+GO:0004134: [MF] 4-alpha-glucanotransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.08846	8.18431	6.03654	29.6421	28.7723	30.4393
+GO:0004134: [MF] 4-alpha-glucanotransferase activity|g__Escherichia.s__Escherichia_coli	0.0251304	0	0	0	0	0
+GO:0004135: [MF] amylo-alpha-1,6-glucosidase activity	1.08846	8.18431	6.03654	29.6421	28.7723	30.4393
+GO:0004135: [MF] amylo-alpha-1,6-glucosidase activity|g__Clostridium.s__Clostridium_thermocellum	1.08846	8.18431	6.03654	29.6421	28.7723	30.4393
+GO:0004139: [MF] deoxyribose-phosphate aldolase activity	21.7813	36.7928	23.142	73.7219	53.9873	77.8534
+GO:0004139: [MF] deoxyribose-phosphate aldolase activity|g__Clostridium.s__Clostridium_thermocellum	2.09353	22.1003	15.1099	60.3665	37.74	60.8098
+GO:0004139: [MF] deoxyribose-phosphate aldolase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	19.2405	14.345	7.7744	13.2134	16.1646	16.8584
+GO:0004139: [MF] deoxyribose-phosphate aldolase activity|g__Escherichia.s__Escherichia_coli	0.0771654	0	0	0	0	0
+GO:0004139: [MF] deoxyribose-phosphate aldolase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.370175	0.347438	0.257738	0.142033	0.0826881	0.18514
+GO:0004140: [MF] dephospho-CoA kinase activity	12.0787	18.9319	12.4949	35.1591	34.8163	33.8897
+GO:0004140: [MF] dephospho-CoA kinase activity|g__Clostridium.s__Clostridium_thermocellum	2.54852	12.0212	9.16164	26.7003	25.1749	24.24
+GO:0004140: [MF] dephospho-CoA kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.53013	6.91068	3.33331	8.45888	9.64143	9.6497
+GO:0004141: [MF] dethiobiotin synthase activity	0.0830956	0	0	0.339875	0.296787	0.781631
+GO:0004141: [MF] dethiobiotin synthase activity|g__Clostridium.s__Clostridium_thermocellum	0.0830956	0	0	0.339875	0.296787	0.663271
+GO:0004141: [MF] dethiobiotin synthase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.11836
+GO:0004146: [MF] dihydrofolate reductase activity	4.66723	34.7584	21.8931	95.8256	97.9612	69.4259
+GO:0004146: [MF] dihydrofolate reductase activity|g__Clostridium.s__Clostridium_thermocellum	4.66723	34.7584	21.8931	95.8256	97.9612	69.4259
+GO:0004148: [MF] dihydrolipoyl dehydrogenase activity	1.81986	2.76564	3.26326	2.90617	2.96503	2.71446
+GO:0004148: [MF] dihydrolipoyl dehydrogenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.81986	2.76564	3.19249	2.90617	2.96503	2.71446
+GO:0004148: [MF] dihydrolipoyl dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0707719	0	0	0
+GO:0004149: [MF] dihydrolipoyllysine-residue succinyltransferase activity	202.561	37.4275	53.072	10.7665	10.0237	12.0631
+GO:0004149: [MF] dihydrolipoyllysine-residue succinyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	202.561	37.4275	53.072	10.7665	10.0237	12.0631
+GO:0004150: [MF] dihydroneopterin aldolase activity	2.14257	8.11743	7.03361	21.9546	18.4385	14.7306
+GO:0004150: [MF] dihydroneopterin aldolase activity|g__Clostridium.s__Clostridium_thermocellum	1.92063	7.73797	5.93419	21.7524	18.4385	14.4682
+GO:0004150: [MF] dihydroneopterin aldolase activity|g__Escherichia.s__Escherichia_coli	0.221945	0	0	0	0	0
+GO:0004150: [MF] dihydroneopterin aldolase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.379456	1.09942	0.202194	0	0.262398
+GO:0004151: [MF] dihydroorotase activity	4.72378	10.3704	11.1362	23.7179	29.9003	35.5177
+GO:0004151: [MF] dihydroorotase activity|g__Clostridium.s__Clostridium_thermocellum	1.30386	9.1113	8.84441	22.6345	29.5918	35.1093
+GO:0004151: [MF] dihydroorotase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.34572	1.02869	2.06898	0.776396	0.219221	0.0890936
+GO:0004151: [MF] dihydroorotase activity|g__Escherichia.s__Escherichia_coli	0.054198	0	0	0	0	0
+GO:0004151: [MF] dihydroorotase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0200022	0.230381	0.222735	0.307022	0.0893075	0.319411
+GO:0004152: [MF] dihydroorotate dehydrogenase activity	1.00087	5.48275	4.48253	21.5487	15.862	14.4945
+GO:0004152: [MF] dihydroorotate dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	0.785021	5.36028	4.36413	21.353	15.7481	14.4096
+GO:0004152: [MF] dihydroorotate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0564583	0	0	0	0	0
+GO:0004152: [MF] dihydroorotate dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.159386	0.122518	0.118404	0.195778	0.113897	0.0848896
+GO:0004156: [MF] dihydropteroate synthase activity	11.6509	24.6489	16.2992	37.4908	40.0982	34.1645
+GO:0004156: [MF] dihydropteroate synthase activity|g__Clostridium.s__Clostridium_thermocellum	3.17853	10.1689	6.98535	21.5581	22.3	22.5492
+GO:0004156: [MF] dihydropteroate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.40281	14.4801	9.31383	15.9327	17.7981	11.6153
+GO:0004156: [MF] dihydropteroate synthase activity|g__Escherichia.s__Escherichia_coli	0.0695339	0	0	0	0	0
+GO:0004159: [MF] dihydrouracil dehydrogenase (NAD+) activity	0	0	0.0414076	0	0	0.0593419
+GO:0004159: [MF] dihydrouracil dehydrogenase (NAD+) activity|g__Escherichia.s__Escherichia_coli	0	0	0.0414076	0	0	0.0593419
+GO:0004160: [MF] dihydroxy-acid dehydratase activity	2.69228	21.5619	14.1144	60.9622	49.6559	40.3256
+GO:0004160: [MF] dihydroxy-acid dehydratase activity|g__Clostridium.s__Clostridium_thermocellum	2.51826	20.572	13.8411	60.3785	49.4916	39.8605
+GO:0004160: [MF] dihydroxy-acid dehydratase activity|g__Escherichia.s__Escherichia_coli	0.0267345	0	0	0	0	0
+GO:0004160: [MF] dihydroxy-acid dehydratase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.147283	0.989854	0.273344	0.583702	0.164334	0.465163
+GO:0004161: [MF] dimethylallyltranstransferase activity	0.129589	0	0	0	0	0
+GO:0004161: [MF] dimethylallyltranstransferase activity|g__Escherichia.s__Escherichia_coli	0.129589	0	0	0	0	0
+GO:0004164: [MF] diphthine synthase activity	0	0	0.139875	0	0	0.200404
+GO:0004164: [MF] diphthine synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.139875	0	0	0.200404
+GO:0004165: [MF] dodecenoyl-CoA delta-isomerase activity	0.0357513	0	0	0	0	0.0158461
+GO:0004165: [MF] dodecenoyl-CoA delta-isomerase activity|g__Escherichia.s__Escherichia_coli	0.0357513	0	0	0	0	0.0158461
+GO:0004170: [MF] dUTP diphosphatase activity	6.86179	13.9657	7.89036	6.861	7.74195	11.9597
+GO:0004170: [MF] dUTP diphosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.62402	13.6576	7.89036	6.861	7.59871	11.9597
+GO:0004170: [MF] dUTP diphosphatase activity|g__Escherichia.s__Escherichia_coli	0.0786479	0	0	0	0	0
+GO:0004170: [MF] dUTP diphosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.159119	0.308093	0	0	0.143261	0
+GO:0004175: [MF] endopeptidase activity	0.691475	0.781783	0.453319	0.166505	0.217876	1.11967
+GO:0004175: [MF] endopeptidase activity|g__Escherichia.s__Escherichia_coli	0.203012	0	0	0	0	0.0379012
+GO:0004175: [MF] endopeptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.488463	0.781783	0.453319	0.166505	0.217876	1.0818
+GO:0004176: [MF] ATP-dependent peptidase activity	20.5285	33.9929	30.5671	72.8249	72.1685	80.8015
+GO:0004176: [MF] ATP-dependent peptidase activity|g__Clostridium.s__Clostridium_thermocellum	4.95467	17.5277	18.7012	53.4906	45.2308	49.6649
+GO:0004176: [MF] ATP-dependent peptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.3745	14.8853	9.86895	18.6179	26.4482	29.9665
+GO:0004176: [MF] ATP-dependent peptidase activity|g__Escherichia.s__Escherichia_coli	0.585874	0	0.60456	0	0	0.0471824
+GO:0004176: [MF] ATP-dependent peptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.613459	1.5799	1.39239	0.716359	0.489531	1.12297
+GO:0004177: [MF] aminopeptidase activity	39.1428	73.8769	69.7048	147.701	137.644	115.584
+GO:0004177: [MF] aminopeptidase activity|g__Clostridium.s__Clostridium_thermocellum	6.52338	33.8588	27.6728	99.6169	87.4209	80.2233
+GO:0004177: [MF] aminopeptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.3144	39.9123	41.5584	47.7174	50.0259	34.6273
+GO:0004177: [MF] aminopeptidase activity|g__Escherichia.s__Escherichia_coli	0.194821	0	0.371315	0	0	0
+GO:0004177: [MF] aminopeptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.110195	0.105762	0.102301	0.366511	0.196759	0.733058
+GO:0004180: [MF] carboxypeptidase activity	0.0897063	0	0	0	0	0.0341175
+GO:0004180: [MF] carboxypeptidase activity|g__Escherichia.s__Escherichia_coli	0.0897063	0	0	0	0	0.0341175
+GO:0004181: [MF] metallocarboxypeptidase activity	33.8926	23.6485	24.7139	38.9734	42.7442	26.4803
+GO:0004181: [MF] metallocarboxypeptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	33.8926	23.6485	24.7139	38.9734	42.7442	26.4803
+GO:0004190: [MF] aspartic-type endopeptidase activity	129.999	157.683	114.689	414.006	346.957	347.474
+GO:0004190: [MF] aspartic-type endopeptidase activity|g__Clostridium.s__Clostridium_thermocellum	21.8414	96.3971	62.0178	368.632	291.859	289.646
+GO:0004190: [MF] aspartic-type endopeptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	104.23	59.6735	47.479	43.7817	52.6735	56.0565
+GO:0004190: [MF] aspartic-type endopeptidase activity|g__Escherichia.s__Escherichia_coli	0.849645	0	0	0	0	0
+GO:0004190: [MF] aspartic-type endopeptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.07835	1.61271	5.19237	1.59216	2.42495	1.77107
+GO:0004222: [MF] metalloendopeptidase activity	298.488	314.493	362.198	394.994	398.718	395.555
+GO:0004222: [MF] metalloendopeptidase activity|g__Clostridium.s__Clostridium_thermocellum	15.874	79.6823	65.1974	234.733	226.917	228.067
+GO:0004222: [MF] metalloendopeptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	280.168	233.463	295.625	157.125	171.002	163.369
+GO:0004222: [MF] metalloendopeptidase activity|g__Escherichia.s__Escherichia_coli	0.29211	0	0.248852	0	0	0.0703371
+GO:0004222: [MF] metalloendopeptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.15421	1.34845	1.12676	3.13577	0.79921	4.04883
+GO:0004252: [MF] serine-type endopeptidase activity	528.585	631.27	790.361	789.634	766.582	924.796
+GO:0004252: [MF] serine-type endopeptidase activity|g__Clostridium.s__Clostridium_thermocellum	32.0261	257.514	160.382	614.062	532.614	748.355
+GO:0004252: [MF] serine-type endopeptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	495.191	371.733	627.56	174.649	233.427	174.943
+GO:0004252: [MF] serine-type endopeptidase activity|g__Escherichia.s__Escherichia_coli	0.754325	0	0.272623	0	0	0.21971
+GO:0004252: [MF] serine-type endopeptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.613459	2.02283	2.14688	0.923179	0.541379	1.27752
+GO:0004298: [MF] threonine-type endopeptidase activity	0.790368	1.07172	0.82689	0.629488	0.217876	1.23341
+GO:0004298: [MF] threonine-type endopeptidase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0846632
+GO:0004298: [MF] threonine-type endopeptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.790368	1.07172	0.82689	0.629488	0.217876	1.14874
+GO:0004300: [MF] enoyl-CoA hydratase activity	0.0966572	0	0	0	0	0.0158461
+GO:0004300: [MF] enoyl-CoA hydratase activity|g__Escherichia.s__Escherichia_coli	0.0966572	0	0	0	0	0.0158461
+GO:0004309: [MF] exopolyphosphatase activity	0.0349249	0	0.0648178	0	0	0
+GO:0004309: [MF] exopolyphosphatase activity|g__Escherichia.s__Escherichia_coli	0.0349249	0	0.0648178	0	0	0
+GO:0004314: [MF] [acyl-carrier-protein] S-malonyltransferase activity	4.29596	11.3359	4.24667	85.2315	53.6559	45.0018
+GO:0004314: [MF] [acyl-carrier-protein] S-malonyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	4.29596	11.3359	4.24667	85.2315	53.6559	45.0018
+GO:0004315: [MF] 3-oxoacyl-[acyl-carrier-protein] synthase activity	58.1247	78.6508	60.8731	252.883	205.611	193.207
+GO:0004315: [MF] 3-oxoacyl-[acyl-carrier-protein] synthase activity|g__Clostridium.s__Clostridium_thermocellum	13.9962	56.5422	38.7914	236.158	186.647	180.736
+GO:0004315: [MF] 3-oxoacyl-[acyl-carrier-protein] synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	44.1284	22.1086	22.0817	16.7251	18.9639	12.4709
+GO:0004316: [MF] 3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity	124.386	21.9544	22.4812	85.7214	73.7649	60.3506
+GO:0004316: [MF] 3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity|g__Clostridium.s__Clostridium_thermocellum	2.86256	6.83302	2.50403	67.1869	44.9456	42.0939
+GO:0004316: [MF] 3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	121.523	15.1214	19.827	18.5345	28.8193	18.2567
+GO:0004316: [MF] 3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity|g__Escherichia.s__Escherichia_coli	0	0	0.150204	0	0	0
+GO:0004318: [MF] enoyl-[acyl-carrier-protein] reductase (NADH) activity	1.23664	9.73149	5.3981	27.9807	25.9851	38.4535
+GO:0004318: [MF] enoyl-[acyl-carrier-protein] reductase (NADH) activity|g__Clostridium.s__Clostridium_thermocellum	1.23664	9.73149	5.3981	27.9807	25.9851	38.4535
+GO:0004322: [MF] ferroxidase activity	0	0	0.27587	0	0	0.197785
+GO:0004322: [MF] ferroxidase activity|g__Escherichia.s__Escherichia_coli	0	0	0.27587	0	0	0.197785
+GO:0004324: [MF] ferredoxin-NADP+ reductase activity	0.0814186	0	0.453319	0	0	0
+GO:0004324: [MF] ferredoxin-NADP+ reductase activity|g__Escherichia.s__Escherichia_coli	0.0814186	0	0.453319	0	0	0
+GO:0004325: [MF] ferrochelatase activity	0.119552	0	0	0	0	0
+GO:0004325: [MF] ferrochelatase activity|g__Escherichia.s__Escherichia_coli	0.119552	0	0	0	0	0
+GO:0004326: [MF] tetrahydrofolylpolyglutamate synthase activity	79.2327	67.9008	49.7731	92.6533	82.5277	77.2093
+GO:0004326: [MF] tetrahydrofolylpolyglutamate synthase activity|g__Clostridium.s__Clostridium_thermocellum	1.90938	12.2046	10.0561	43.7291	32.8488	33.8704
+GO:0004326: [MF] tetrahydrofolylpolyglutamate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	76.9235	54.7017	38.7805	48.2917	49.3431	42.4473
+GO:0004326: [MF] tetrahydrofolylpolyglutamate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.39985	0.994475	0.936498	0.632447	0.335809	0.891616
+GO:0004329: [MF] formate-tetrahydrofolate ligase activity	119.647	41.7646	80.5289	49.7622	58.2234	57.1982
+GO:0004329: [MF] formate-tetrahydrofolate ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.90737	9.78498	7.73804	28.1126	23.9058	24.062
+GO:0004329: [MF] formate-tetrahydrofolate ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	116.739	31.9796	72.7909	21.6495	34.3175	33.1361
+GO:0004332: [MF] fructose-bisphosphate aldolase activity	70.5795	253.916	185.44	531.912	522.567	515.621
+GO:0004332: [MF] fructose-bisphosphate aldolase activity|g__Clostridium.s__Clostridium_thermocellum	9.251	187.596	131.683	467.604	448.693	467.214
+GO:0004332: [MF] fructose-bisphosphate aldolase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	61.2687	66.3204	53.7575	64.3077	73.8739	48.3358
+GO:0004332: [MF] fructose-bisphosphate aldolase activity|g__Escherichia.s__Escherichia_coli	0.0598123	0	0	0	0	0.0716306
+GO:0004333: [MF] fumarate hydratase activity	0	0	0.06784	0	0	0.042752
+GO:0004333: [MF] fumarate hydratase activity|g__Escherichia.s__Escherichia_coli	0	0	0.06784	0	0	0.042752
+GO:0004337: [MF] geranyltranstransferase activity	2.82965	13.6808	8.69064	41.837	38.7719	33.1491
+GO:0004337: [MF] geranyltranstransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.70006	13.6808	8.69064	41.837	38.7719	33.1491
+GO:0004337: [MF] geranyltranstransferase activity|g__Escherichia.s__Escherichia_coli	0.129589	0	0	0	0	0
+GO:0004340: [MF] glucokinase activity	31.9038	38.3485	36.5988	39.8729	59.346	47.8904
+GO:0004340: [MF] glucokinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	31.7165	38.3485	36.1946	39.8729	59.346	47.8904
+GO:0004340: [MF] glucokinase activity|g__Escherichia.s__Escherichia_coli	0.187263	0	0.404198	0	0	0
+GO:0004342: [MF] glucosamine-6-phosphate deaminase activity	0.244256	0	0	0	0	0.0564314
+GO:0004342: [MF] glucosamine-6-phosphate deaminase activity|g__Escherichia.s__Escherichia_coli	0.244256	0	0	0	0	0.0564314
+GO:0004345: [MF] glucose-6-phosphate dehydrogenase activity	0.0366505	0	0.0680204	0	0	0
+GO:0004345: [MF] glucose-6-phosphate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0366505	0	0.0680204	0	0	0
+GO:0004347: [MF] glucose-6-phosphate isomerase activity	104.263	48.599	49.028	77.4051	82.4134	70.9836
+GO:0004347: [MF] glucose-6-phosphate isomerase activity|g__Clostridium.s__Clostridium_thermocellum	0.933883	12.0841	9.94279	33.4172	28.8943	27.7916
+GO:0004347: [MF] glucose-6-phosphate isomerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	103.329	36.5149	39.0852	43.9878	53.5191	43.192
+GO:0004348: [MF] glucosylceramidase activity	1.10134	2.62324	4.47595	5.63485	5.90085	6.5278
+GO:0004348: [MF] glucosylceramidase activity|g__Clostridium.s__Clostridium_thermocellum	1.10134	2.62324	4.47595	5.63485	5.90085	6.5278
+GO:0004349: [MF] glutamate 5-kinase activity	1.34997	13.8472	9.75601	30.13	25.187	30.716
+GO:0004349: [MF] glutamate 5-kinase activity|g__Clostridium.s__Clostridium_thermocellum	1.34997	13.8472	9.75601	30.13	25.187	30.716
+GO:0004350: [MF] glutamate-5-semialdehyde dehydrogenase activity	9.73207	35.5493	23.6101	77.5871	69.8801	71.8028
+GO:0004350: [MF] glutamate-5-semialdehyde dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	9.73207	35.5493	23.6101	77.5871	69.8801	71.8028
+GO:0004351: [MF] glutamate decarboxylase activity	0.27867	0	0	0	0	0.0517099
+GO:0004351: [MF] glutamate decarboxylase activity|g__Escherichia.s__Escherichia_coli	0.27867	0	0	0	0	0.0517099
+GO:0004352: [MF] glutamate dehydrogenase (NAD+) activity	4.32724	174.766	121.684	499.061	586.866	816.546
+GO:0004352: [MF] glutamate dehydrogenase (NAD+) activity|g__Clostridium.s__Clostridium_thermocellum	4.32724	174.766	121.684	499.061	586.866	816.546
+GO:0004353: [MF] glutamate dehydrogenase [NAD(P)+] activity	21.4938	24.2408	42.0628	7.5644	12.1989	20.408
+GO:0004353: [MF] glutamate dehydrogenase [NAD(P)+] activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.4938	24.2408	42.0628	7.5644	12.1989	20.408
+GO:0004355: [MF] glutamate synthase (NADPH) activity	0.40753	4.7306	12.0713	16.1417	23.6913	30.6714
+GO:0004355: [MF] glutamate synthase (NADPH) activity|g__Clostridium.s__Clostridium_thermocellum	0.0358485	4.2676	11.7037	15.034	23.2169	30.3742
+GO:0004355: [MF] glutamate synthase (NADPH) activity|g__Escherichia.s__Escherichia_coli	0.0766064	0	0	0	0	0
+GO:0004355: [MF] glutamate synthase (NADPH) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.295076	0.463002	0.367572	1.10774	0.474339	0.297194
+GO:0004356: [MF] glutamate-ammonia ligase activity	92.8436	92.2578	139.119	146.964	155.341	163.772
+GO:0004356: [MF] glutamate-ammonia ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.61341	25.5983	44.598	110.996	113.311	124.708
+GO:0004356: [MF] glutamate-ammonia ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	89.8945	66.5803	94.2909	35.8416	41.9936	38.8995
+GO:0004356: [MF] glutamate-ammonia ligase activity|g__Escherichia.s__Escherichia_coli	0.212272	0	0	0	0	0
+GO:0004356: [MF] glutamate-ammonia ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.12344	0.0791584	0.229546	0.126465	0.0368081	0.164573
+GO:0004357: [MF] glutamate-cysteine ligase activity	0.0496775	0	0	0	0	0
+GO:0004357: [MF] glutamate-cysteine ligase activity|g__Escherichia.s__Escherichia_coli	0.0496775	0	0	0	0	0
+GO:0004358: [MF] glutamate N-acetyltransferase activity	1.1043	4.14886	2.72961	15.0146	12.9854	11.9995
+GO:0004358: [MF] glutamate N-acetyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.01251	3.48787	2.17638	14.6388	12.8624	11.5721
+GO:0004358: [MF] glutamate N-acetyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0917964	0.661038	0.553229	0.375812	0.122947	0.427488
+GO:0004359: [MF] glutaminase activity	4.05708	3.31775	3.56647	5.77153	5.01192	3.27295
+GO:0004359: [MF] glutaminase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.81992	2.297	3.14567	4.0931	4.72397	2.14135
+GO:0004359: [MF] glutaminase activity|g__Escherichia.s__Escherichia_coli	0.0933519	0	0	0	0	0
+GO:0004359: [MF] glutaminase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.143807	1.02075	0.420797	1.67843	0.287976	1.1316
+GO:0004360: [MF] glutamine-fructose-6-phosphate transaminase (isomerizing) activity	19.441	17.737	11.7986	51.7246	42.9469	34.2831
+GO:0004360: [MF] glutamine-fructose-6-phosphate transaminase (isomerizing) activity|g__Clostridium.s__Clostridium_thermocellum	2.87425	5.07356	2.99064	34.4445	23.9786	17.6544
+GO:0004360: [MF] glutamine-fructose-6-phosphate transaminase (isomerizing) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.418	12.2322	8.50232	16.6672	18.6474	15.7124
+GO:0004360: [MF] glutamine-fructose-6-phosphate transaminase (isomerizing) activity|g__Escherichia.s__Escherichia_coli	0.0289704	0	0	0	0	0
+GO:0004360: [MF] glutamine-fructose-6-phosphate transaminase (isomerizing) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.119795	0.431311	0.305731	0.612874	0.320878	0.91629
+GO:0004362: [MF] glutathione-disulfide reductase activity	0.0403933	0	0.0750119	0	0	0
+GO:0004362: [MF] glutathione-disulfide reductase activity|g__Escherichia.s__Escherichia_coli	0.0403933	0	0.0750119	0	0	0
+GO:0004363: [MF] glutathione synthase activity	0.0606872	0	0.338929	0	0	0
+GO:0004363: [MF] glutathione synthase activity|g__Escherichia.s__Escherichia_coli	0.0606872	0	0.338929	0	0	0
+GO:0004364: [MF] glutathione transferase activity	0.197665	0	0	0	0	0
+GO:0004364: [MF] glutathione transferase activity|g__Escherichia.s__Escherichia_coli	0.197665	0	0	0	0	0
+GO:0004365: [MF] glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity	89.8909	546.388	388.846	1015.19	1142.3	899.819
+GO:0004365: [MF] glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity|g__Clostridium.s__Clostridium_thermocellum	17.096	273.205	178.609	832.438	876.47	711.732
+GO:0004365: [MF] glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	72.3995	272.804	209.82	182.612	265.605	187.264
+GO:0004365: [MF] glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity|g__Escherichia.s__Escherichia_coli	0.114545	0	0	0	0	0
+GO:0004365: [MF] glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.280858	0.37815	0.41764	0.143899	0.226014	0.823283
+GO:0004367: [MF] glycerol-3-phosphate dehydrogenase [NAD+] activity	1.81461	8.36484	5.71376	33.8568	32.5297	24.5134
+GO:0004367: [MF] glycerol-3-phosphate dehydrogenase [NAD+] activity|g__Clostridium.s__Clostridium_thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0004367: [MF] glycerol-3-phosphate dehydrogenase [NAD+] activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0004370: [MF] glycerol kinase activity	15.8454	19.7167	22.529	11.7532	15.0919	14.8093
+GO:0004370: [MF] glycerol kinase activity|g__Clostridium.s__Clostridium_thermocellum	0.673538	4.71838	7.36433	1.45279	1.78719	2.7848
+GO:0004370: [MF] glycerol kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0004371: [MF] glycerone kinase activity	44.0015	40.5883	39.0635	39.6642	46.5421	34.0434
+GO:0004371: [MF] glycerone kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	44.0015	40.5883	39.0635	39.6642	46.5421	34.0083
+GO:0004371: [MF] glycerone kinase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0350877
+GO:0004372: [MF] glycine hydroxymethyltransferase activity	25.3314	64.9289	48.212	188.888	198.919	156.268
+GO:0004372: [MF] glycine hydroxymethyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.54412	52.7806	35.9423	179.599	189.141	149.235
+GO:0004372: [MF] glycine hydroxymethyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.6804	11.9841	12.0337	8.85192	9.73997	6.94814
+GO:0004372: [MF] glycine hydroxymethyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.106889	0.164198	0.236042	0.436595	0.0381754	0.0853423
+GO:0004373: [MF] glycogen (starch) synthase activity	28.4469	41.8189	33.0288	199.654	191.763	161.329
+GO:0004373: [MF] glycogen (starch) synthase activity|g__Clostridium.s__Clostridium_thermocellum	3.25983	22.9129	16.1641	176.137	163.855	141.991
+GO:0004373: [MF] glycogen (starch) synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	25.1303	18.9059	16.8647	23.5169	27.9081	19.338
+GO:0004373: [MF] glycogen (starch) synthase activity|g__Escherichia.s__Escherichia_coli	0.0567743	0	0	0	0	0
+GO:0004375: [MF] glycine dehydrogenase (decarboxylating) activity	476.331	101.139	151.15	106.948	128.231	86.6769
+GO:0004375: [MF] glycine dehydrogenase (decarboxylating) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	476.331	101.139	151.15	106.948	128.231	86.6769
+GO:0004385: [MF] guanylate kinase activity	12.9047	48.9749	47.9139	93.6561	107.431	92.6339
+GO:0004385: [MF] guanylate kinase activity|g__Clostridium.s__Clostridium_thermocellum	6.36256	43.2792	39.5261	90.7204	102.094	88.9995
+GO:0004385: [MF] guanylate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.54212	5.69572	8.38789	2.93569	5.3372	3.63437
+GO:0004386: [MF] helicase activity	132.18	143.155	149.244	250.671	249.017	213.747
+GO:0004386: [MF] helicase activity|g__Clostridium.s__Clostridium_thermocellum	25.7281	56.9332	61.8204	146.024	134.366	154.195
+GO:0004386: [MF] helicase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	105.601	85.1105	86.6728	103.951	114.248	58.8483
+GO:0004386: [MF] helicase activity|g__Escherichia.s__Escherichia_coli	0.155279	0	0.0812816	0	0	0
+GO:0004386: [MF] helicase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.695193	1.11107	0.67001	0.69517	0.403913	0.703759
+GO:0004399: [MF] histidinol dehydrogenase activity	6.96807	3.66701	2.57124	6.01322	5.07631	10.029
+GO:0004399: [MF] histidinol dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	6.8615	3.66701	2.49149	5.92521	5.05713	9.77171
+GO:0004399: [MF] histidinol dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0420946	0	0	0	0	0
+GO:0004399: [MF] histidinol dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0644787	0	0.079748	0.0879905	0.0191854	0.257353
+GO:0004400: [MF] histidinol-phosphate transaminase activity	4.66186	1.96286	3.3081	6.29222	5.70507	11.4018
+GO:0004400: [MF] histidinol-phosphate transaminase activity|g__Clostridium.s__Clostridium_thermocellum	4.56046	1.96286	3.3081	6.08756	5.57112	11.4018
+GO:0004400: [MF] histidinol-phosphate transaminase activity|g__Escherichia.s__Escherichia_coli	0.0263942	0	0	0	0	0
+GO:0004400: [MF] histidinol-phosphate transaminase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0750023	0	0	0.204656	0.13395	0
+GO:0004401: [MF] histidinol-phosphatase activity	8.75213	17.6751	9.03607	29.263	29.2011	25.5037
+GO:0004401: [MF] histidinol-phosphatase activity|g__Clostridium.s__Clostridium_thermocellum	0.225031	10.0075	4.38492	23.3951	23.3628	20.5036
+GO:0004401: [MF] histidinol-phosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.5271	7.66759	4.65114	5.86783	5.8383	4.92968
+GO:0004401: [MF] histidinol-phosphatase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0704018
+GO:0004410: [MF] homocitrate synthase activity	0	0.18198	0.0879123	0.242384	0.0846197	0
+GO:0004410: [MF] homocitrate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.18198	0.0879123	0.242384	0.0846197	0
+GO:0004412: [MF] homoserine dehydrogenase activity	2.80816	14.3564	11.865	43.6285	51.0902	50.2207
+GO:0004412: [MF] homoserine dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	2.21332	13.9762	11.2052	43.3594	50.9134	49.5504
+GO:0004412: [MF] homoserine dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0420217	0	0.0395132	0	0	0
+GO:0004412: [MF] homoserine dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.55282	0.38025	0.620257	0.26907	0.176814	0.670288
+GO:0004413: [MF] homoserine kinase activity	0	0	0.115202	0	0	0
+GO:0004413: [MF] homoserine kinase activity|g__Escherichia.s__Escherichia_coli	0	0	0.115202	0	0	0
+GO:0004414: [MF] homoserine O-acetyltransferase activity	0.120013	0.40284	0.333381	0.368252	0	0.239502
+GO:0004414: [MF] homoserine O-acetyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.120013	0.40284	0.333381	0.368252	0	0.239502
+GO:0004416: [MF] hydroxyacylglutathione hydrolase activity	0.226611	0	0.148851	0	0	0
+GO:0004416: [MF] hydroxyacylglutathione hydrolase activity|g__Escherichia.s__Escherichia_coli	0.226611	0	0.148851	0	0	0
+GO:0004417: [MF] hydroxyethylthiazole kinase activity	0.0366505	0.0703838	0	0.0750332	0	0
+GO:0004417: [MF] hydroxyethylthiazole kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0366505	0.0703838	0	0.0750332	0	0
+GO:0004418: [MF] hydroxymethylbilane synthase activity	0.294711	3.26552	4.38637	6.47436	5.09181	5.94657
+GO:0004418: [MF] hydroxymethylbilane synthase activity|g__Clostridium.s__Clostridium_thermocellum	0.233319	3.13586	4.32944	6.23263	4.85062	5.67706
+GO:0004418: [MF] hydroxymethylbilane synthase activity|g__Escherichia.s__Escherichia_coli	0.0613677	0	0.0569693	0	0	0
+GO:0004418: [MF] hydroxymethylbilane synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.129659	0	0.241738	0.241185	0.26948
+GO:0004420: [MF] hydroxymethylglutaryl-CoA reductase (NADPH) activity	0.0465666	0.357427	0	0.0476512	0.12349	0.0309807
+GO:0004420: [MF] hydroxymethylglutaryl-CoA reductase (NADPH) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0465666	0.357427	0	0.0476512	0.12349	0.0309807
+GO:0004421: [MF] hydroxymethylglutaryl-CoA synthase activity	0.189037	0.259319	0	0.193415	0.192787	0.215506
+GO:0004421: [MF] hydroxymethylglutaryl-CoA synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.189037	0.259319	0	0.193415	0.192787	0.215506
+GO:0004422: [MF] hypoxanthine phosphoribosyltransferase activity	11.2252	23.3354	22.5036	63.1679	54.5876	82.1806
+GO:0004422: [MF] hypoxanthine phosphoribosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.33922	13.577	10.8916	51.0264	39.3707	68.6689
+GO:0004422: [MF] hypoxanthine phosphoribosyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.76042	9.12357	11.0711	12.0851	15.1185	13.2017
+GO:0004422: [MF] hypoxanthine phosphoribosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.125603	0	0.23311	0	0	0.309904
+GO:0004422: [MF] hypoxanthine phosphoribosyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.634761	0.307761	0.0564054	0.0984227	0
+GO:0004424: [MF] imidazoleglycerol-phosphate dehydratase activity	4.49285	14.39	9.9759	45.0464	43.9294	63.8579
+GO:0004424: [MF] imidazoleglycerol-phosphate dehydratase activity|g__Clostridium.s__Clostridium_thermocellum	4.49285	14.2685	9.9759	44.5942	43.9294	63.3729
+GO:0004424: [MF] imidazoleglycerol-phosphate dehydratase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0704018
+GO:0004424: [MF] imidazoleglycerol-phosphate dehydratase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.121538	0	0.452213	0	0.414617
+GO:0004425: [MF] indole-3-glycerol-phosphate synthase activity	2.8671	24.0192	61.7953	115.814	61.7092	41.9086
+GO:0004425: [MF] indole-3-glycerol-phosphate synthase activity|g__Clostridium.s__Clostridium_thermocellum	2.57266	24.0192	61.392	115.516	61.6443	41.812
+GO:0004425: [MF] indole-3-glycerol-phosphate synthase activity|g__Escherichia.s__Escherichia_coli	0.0401989	0	0.403341	0	0	0
+GO:0004425: [MF] indole-3-glycerol-phosphate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.254245	0	0	0.297397	0.0648917	0.0966933
+GO:0004427: [MF] inorganic diphosphatase activity	350.8	83.3802	135.248	38.1076	46.9168	53.8643
+GO:0004427: [MF] inorganic diphosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	350.8	83.2577	135.248	37.9121	46.7459	53.6946
+GO:0004427: [MF] inorganic diphosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.122518	0	0.195479	0.170889	0.169747
+GO:0004450: [MF] isocitrate dehydrogenase (NADP+) activity	2.75644	47.411	32.8214	119.773	121.21	121.8
+GO:0004450: [MF] isocitrate dehydrogenase (NADP+) activity|g__Clostridium.s__Clostridium_thermocellum	2.4552	47.411	32.8214	119.773	121.21	121.8
+GO:0004450: [MF] isocitrate dehydrogenase (NADP+) activity|g__Escherichia.s__Escherichia_coli	0.301249	0	0	0	0	0
+GO:0004452: [MF] isopentenyl-diphosphate delta-isomerase activity	0.121836	0	0	0.440599	0	0.071857
+GO:0004452: [MF] isopentenyl-diphosphate delta-isomerase activity|g__Escherichia.s__Escherichia_coli	0.121836	0	0	0	0	0
+GO:0004452: [MF] isopentenyl-diphosphate delta-isomerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0.440599	0	0.071857
+GO:0004455: [MF] ketol-acid reductoisomerase activity	5.5746	46.0472	23.3364	155.774	140.058	110.42
+GO:0004455: [MF] ketol-acid reductoisomerase activity|g__Clostridium.s__Clostridium_thermocellum	5.22625	45.7734	22.807	155.133	139.625	109.7
+GO:0004455: [MF] ketol-acid reductoisomerase activity|g__Escherichia.s__Escherichia_coli	0.0916506	0	0	0	0	0
+GO:0004455: [MF] ketol-acid reductoisomerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.256699	0.273834	0.529368	0.640953	0.433017	0.719961
+GO:0004457: [MF] lactate dehydrogenase activity	0.048681	0	0	0	0	0
+GO:0004457: [MF] lactate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.048681	0	0	0	0	0
+GO:0004459: [MF] L-lactate dehydrogenase activity	3.46493	69.7876	42.5249	207.81	224.645	241.768
+GO:0004459: [MF] L-lactate dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	3.46493	69.7876	42.5249	207.81	224.645	241.768
+GO:0004462: [MF] lactoylglutathione lyase activity	0	0	0	0	0	0.198108
+GO:0004462: [MF] lactoylglutathione lyase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.198108
+GO:0004467: [MF] long-chain fatty acid-CoA ligase activity	1.53993	10.064	9.61261	31.4217	29.0526	26.3609
+GO:0004467: [MF] long-chain fatty acid-CoA ligase activity|g__Clostridium.s__Clostridium_thermocellum	1.50654	10.064	9.61261	31.4217	29.0526	26.3609
+GO:0004467: [MF] long-chain fatty acid-CoA ligase activity|g__Escherichia.s__Escherichia_coli	0.0334181	0	0	0	0	0
+GO:0004471: [MF] malate dehydrogenase (decarboxylating) (NAD+) activity	15.3671	50.5356	33.2483	177.603	174.043	126.867
+GO:0004471: [MF] malate dehydrogenase (decarboxylating) (NAD+) activity|g__Clostridium.s__Clostridium_thermocellum	3.60944	42.0489	25.6481	168.701	165.262	118.091
+GO:0004471: [MF] malate dehydrogenase (decarboxylating) (NAD+) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.7036	8.48671	7.60015	8.90226	8.78091	8.77558
+GO:0004471: [MF] malate dehydrogenase (decarboxylating) (NAD+) activity|g__Escherichia.s__Escherichia_coli	0.0541008	0	0	0	0	0
+GO:0004473: [MF] malate dehydrogenase (decarboxylating) (NADP+) activity	0.0227	0	0	0	0	0
+GO:0004473: [MF] malate dehydrogenase (decarboxylating) (NADP+) activity|g__Escherichia.s__Escherichia_coli	0.0227	0	0	0	0	0
+GO:0004474: [MF] malate synthase activity	0.18194	0	0	0	0	0.0160078
+GO:0004474: [MF] malate synthase activity|g__Escherichia.s__Escherichia_coli	0.18194	0	0	0	0	0.0160078
+GO:0004476: [MF] mannose-6-phosphate isomerase activity	103.536	37.9514	41.048	45.3343	54.8784	45.6979
+GO:0004476: [MF] mannose-6-phosphate isomerase activity|g__Clostridium.s__Clostridium_thermocellum	0.206414	1.43657	1.96276	1.34644	1.35921	2.50581
+GO:0004476: [MF] mannose-6-phosphate isomerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	103.329	36.5149	39.0852	43.9878	53.5191	43.192
+GO:0004477: [MF] methenyltetrahydrofolate cyclohydrolase activity	23.0533	41.1356	33.947	78.8582	83.0937	94.738
+GO:0004477: [MF] methenyltetrahydrofolate cyclohydrolase activity|g__Clostridium.s__Clostridium_thermocellum	3.36373	25.4413	20.4405	67.1305	69.6195	82.2671
+GO:0004477: [MF] methenyltetrahydrofolate cyclohydrolase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	19.6246	15.6943	13.5065	11.7277	13.4742	12.471
+GO:0004477: [MF] methenyltetrahydrofolate cyclohydrolase activity|g__Escherichia.s__Escherichia_coli	0.0648918	0	0	0	0	0
+GO:0004478: [MF] methionine adenosyltransferase activity	30.3955	35.7417	25.0474	107.259	143.902	106.667
+GO:0004478: [MF] methionine adenosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.44273	25.2447	17.4504	80.409	108.614	87.4991
+GO:0004478: [MF] methionine adenosyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	27.8182	10.2815	7.51373	26.666	34.968	18.8696
+GO:0004478: [MF] methionine adenosyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.13462	0.215492	0.0833114	0.183691	0.320661	0.298617
+GO:0004479: [MF] methionyl-tRNA formyltransferase activity	4.75229	10.9253	5.62521	26.5985	30.65	25.5119
+GO:0004479: [MF] methionyl-tRNA formyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.67234	8.05829	3.97437	21.9495	25.1216	21.5837
+GO:0004479: [MF] methionyl-tRNA formyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.0495	2.86697	1.65089	4.64895	5.52834	3.92817
+GO:0004479: [MF] methionyl-tRNA formyltransferase activity|g__Escherichia.s__Escherichia_coli	0.030453	0	0	0	0	0
+GO:0004488: [MF] methylenetetrahydrofolate dehydrogenase (NADP+) activity	13.5779	32.8006	25.4072	73.6046	77.7536	89.2432
+GO:0004488: [MF] methylenetetrahydrofolate dehydrogenase (NADP+) activity|g__Clostridium.s__Clostridium_thermocellum	3.36373	25.4413	20.4405	67.1305	69.6195	82.2671
+GO:0004488: [MF] methylenetetrahydrofolate dehydrogenase (NADP+) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.1493	7.35935	4.96675	6.47417	8.13417	6.97611
+GO:0004488: [MF] methylenetetrahydrofolate dehydrogenase (NADP+) activity|g__Escherichia.s__Escherichia_coli	0.0648918	0	0	0	0	0
+GO:0004489: [MF] methylenetetrahydrofolate reductase (NAD(P)H) activity	2.36653	10.5936	8.30787	24.0351	24.7279	32.9358
+GO:0004489: [MF] methylenetetrahydrofolate reductase (NAD(P)H) activity|g__Clostridium.s__Clostridium_thermocellum	1.57845	10.2468	7.60732	23.8811	24.2439	32.6953
+GO:0004489: [MF] methylenetetrahydrofolate reductase (NAD(P)H) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.722657	0.346785	0.335366	0.154046	0.484084	0.24044
+GO:0004489: [MF] methylenetetrahydrofolate reductase (NAD(P)H) activity|g__Escherichia.s__Escherichia_coli	0.0654265	0	0.365136	0	0	0
+GO:0004492: [MF] methylmalonyl-CoA decarboxylase activity	0.0764362	0	0	0	0	0
+GO:0004492: [MF] methylmalonyl-CoA decarboxylase activity|g__Escherichia.s__Escherichia_coli	0.0764362	0	0	0	0	0
+GO:0004493: [MF] methylmalonyl-CoA epimerase activity	11.3162	8.23365	8.48653	14.4089	14.1878	7.84829
+GO:0004493: [MF] methylmalonyl-CoA epimerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.3162	8.23365	8.48653	14.4089	14.1878	7.84829
+GO:0004494: [MF] methylmalonyl-CoA mutase activity	36.1934	30.2736	36.8775	35.6744	41.2843	29.5255
+GO:0004494: [MF] methylmalonyl-CoA mutase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	36.169	30.2736	36.8775	35.6744	41.2843	29.5255
+GO:0004494: [MF] methylmalonyl-CoA mutase activity|g__Escherichia.s__Escherichia_coli	0.024377	0	0	0	0	0
+GO:0004496: [MF] mevalonate kinase activity	0.0638711	0	0	0.0326296	0.0569702	0
+GO:0004496: [MF] mevalonate kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0638711	0	0	0.0326296	0.0569702	0
+GO:0004497: [MF] monooxygenase activity	0.0551702	0	0	0	0	0
+GO:0004497: [MF] monooxygenase activity|g__Escherichia.s__Escherichia_coli	0.0551702	0	0	0	0	0
+GO:0004512: [MF] inositol-3-phosphate synthase activity	0.152362	0.292504	0.471046	1.14353	0.702936	2.02296
+GO:0004512: [MF] inositol-3-phosphate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.152362	0.292504	0.471046	1.14353	0.702936	2.02296
+GO:0004514: [MF] nicotinate-nucleotide diphosphorylase (carboxylating) activity	92.4722	69.951	93.7577	88.199	92.6728	58.3897
+GO:0004514: [MF] nicotinate-nucleotide diphosphorylase (carboxylating) activity|g__Clostridium.s__Clostridium_thermocellum	2.85405	9.54247	7.30985	28.0832	25.783	21.5468
+GO:0004514: [MF] nicotinate-nucleotide diphosphorylase (carboxylating) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	89.3657	60.1381	85.4022	59.323	66.2923	35.4696
+GO:0004514: [MF] nicotinate-nucleotide diphosphorylase (carboxylating) activity|g__Escherichia.s__Escherichia_coli	0.111507	0	0	0	0	0.0614116
+GO:0004514: [MF] nicotinate-nucleotide diphosphorylase (carboxylating) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.140891	0.270474	1.04566	0.79286	0.597525	1.31196
+GO:0004515: [MF] nicotinate-nucleotide adenylyltransferase activity	5.16524	22.0643	22.6749	38.5979	38.7505	54.7259
+GO:0004515: [MF] nicotinate-nucleotide adenylyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.34085	20.9829	21.6321	36.9281	37.2437	53.7562
+GO:0004515: [MF] nicotinate-nucleotide adenylyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.82436	1.08143	1.04268	1.66978	1.50679	0.969682
+GO:0004516: [MF] nicotinate phosphoribosyltransferase activity	1.62198	3.20363	4.54108	9.51954	9.20165	8.52078
+GO:0004516: [MF] nicotinate phosphoribosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.5758	3.20363	4.54108	9.51954	9.20165	8.45937
+GO:0004516: [MF] nicotinate phosphoribosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0461534	0	0	0	0	0.0614116
+GO:0004518: [MF] nuclease activity	77.3728	93.3309	56.1026	224.991	181.458	180.928
+GO:0004518: [MF] nuclease activity|g__Clostridium.s__Clostridium_thermocellum	21.0796	51.9369	34.9582	173.701	134.793	129.926
+GO:0004518: [MF] nuclease activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	55.8066	40.5733	20.8201	50.4157	46.4035	50.3637
+GO:0004518: [MF] nuclease activity|g__Escherichia.s__Escherichia_coli	0.098796	0	0	0	0	0.131458
+GO:0004518: [MF] nuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.387917	0.820709	0.32427	0.874657	0.261824	0.506459
+GO:0004519: [MF] endonuclease activity	62.1174	164.86	135.311	262.907	242.37	291.577
+GO:0004519: [MF] endonuclease activity|g__Clostridium.s__Clostridium_thermocellum	17.8288	128.05	87.0348	232.783	205.035	246.972
+GO:0004519: [MF] endonuclease activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.5659	32.7569	26.7187	28.7994	36.2562	27.7007
+GO:0004519: [MF] endonuclease activity|g__Escherichia.s__Escherichia_coli	14.215	0	19.0134	0	0	14.9181
+GO:0004519: [MF] endonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.507712	4.05309	2.5444	1.32391	1.07866	1.98554
+GO:0004520: [MF] endodeoxyribonuclease activity	0.117413	0	0	0	0	0
+GO:0004520: [MF] endodeoxyribonuclease activity|g__Escherichia.s__Escherichia_coli	0.117413	0	0	0	0	0
+GO:0004521: [MF] endoribonuclease activity	63.9481	134.103	113.639	360.91	348.532	311.535
+GO:0004521: [MF] endoribonuclease activity|g__Clostridium.s__Clostridium_thermocellum	32.7334	113.255	88.1507	348.974	329.816	293.132
+GO:0004521: [MF] endoribonuclease activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.6697	20.4772	24.8957	11.9362	18.021	18.0653
+GO:0004521: [MF] endoribonuclease activity|g__Escherichia.s__Escherichia_coli	1.1593	0	0.234914	0	0	0.336874
+GO:0004521: [MF] endoribonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.385778	0.370448	0.358009	0	0.694624	0
+GO:0004523: [MF] RNA-DNA hybrid ribonuclease activity	18.1838	59.4974	46.736	141.549	133.274	102.938
+GO:0004523: [MF] RNA-DNA hybrid ribonuclease activity|g__Clostridium.s__Clostridium_thermocellum	6.60254	42.4215	39.2954	125.812	115.846	91.043
+GO:0004523: [MF] RNA-DNA hybrid ribonuclease activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.3696	16.8787	7.154	15.0504	17.1981	11.483
+GO:0004523: [MF] RNA-DNA hybrid ribonuclease activity|g__Escherichia.s__Escherichia_coli	0.108736	0	0	0	0	0
+GO:0004523: [MF] RNA-DNA hybrid ribonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.102879	0.197149	0.286516	0.686316	0.23029	0.411803
+GO:0004525: [MF] ribonuclease III activity	4.14681	40.0227	24.6458	88.8496	77.3832	115.279
+GO:0004525: [MF] ribonuclease III activity|g__Clostridium.s__Clostridium_thermocellum	4.14681	40.0227	24.6458	88.8496	77.3832	115.279
+GO:0004526: [MF] ribonuclease P activity	9.63527	66.7246	53.3508	188.044	161.343	209.386
+GO:0004526: [MF] ribonuclease P activity|g__Clostridium.s__Clostridium_thermocellum	7.86346	63.3051	50.074	182.415	160.09	200.806
+GO:0004526: [MF] ribonuclease P activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.77181	3.4195	3.27675	5.62935	1.25308	8.58045
+GO:0004527: [MF] exonuclease activity	17.8597	40.733	42.542	51.0698	50.6377	39.4089
+GO:0004527: [MF] exonuclease activity|g__Clostridium.s__Clostridium_thermocellum	0.786552	4.32842	5.81313	17.9185	10.1795	12.5853
+GO:0004527: [MF] exonuclease activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.5885	34.9914	35.9408	31.3281	39.4867	21.3861
+GO:0004527: [MF] exonuclease activity|g__Escherichia.s__Escherichia_coli	0.0798631	0	0.0179072	0	0	0.0256771
+GO:0004527: [MF] exonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.40476	1.41314	0.770146	1.8231	0.971466	5.41185
+GO:0004530: [MF] deoxyribonuclease I activity	0.0871057	0	0	0	0	0.0579513
+GO:0004530: [MF] deoxyribonuclease I activity|g__Escherichia.s__Escherichia_coli	0.0871057	0	0	0	0	0.0579513
+GO:0004534: [MF] 5'-3' exoribonuclease activity	0.768105	10.3592	7.60394	30.4662	30.5283	29.2885
+GO:0004534: [MF] 5'-3' exoribonuclease activity|g__Clostridium.s__Clostridium_thermocellum	0.768105	10.3592	7.48738	30.4662	30.5283	29.2001
+GO:0004534: [MF] 5'-3' exoribonuclease activity|g__Escherichia.s__Escherichia_coli	0	0	0.116555	0	0	0.0883498
+GO:0004540: [MF] ribonuclease activity	3.7098	22.6071	16.4999	76.4092	73.2016	75.7355
+GO:0004540: [MF] ribonuclease activity|g__Clostridium.s__Clostridium_thermocellum	3.60021	22.6071	16.4999	76.4092	73.2016	75.4608
+GO:0004540: [MF] ribonuclease activity|g__Escherichia.s__Escherichia_coli	0.109563	0	0	0	0	0.0979868
+GO:0004540: [MF] ribonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0	0	0.1767
+GO:0004549: [MF] tRNA-specific ribonuclease activity	3.27018	22.0906	19.5707	49.8565	44.7456	41.7264
+GO:0004549: [MF] tRNA-specific ribonuclease activity|g__Clostridium.s__Clostridium_thermocellum	3.09874	22.0906	19.5707	49.8565	44.7456	41.7264
+GO:0004549: [MF] tRNA-specific ribonuclease activity|g__Escherichia.s__Escherichia_coli	0.171465	0	0	0	0	0
+GO:0004550: [MF] nucleoside diphosphate kinase activity	164.016	295.443	240.466	234.904	242.374	313.401
+GO:0004550: [MF] nucleoside diphosphate kinase activity|g__Clostridium.s__Clostridium_thermocellum	1.86167	12.8491	11.2268	58.815	46.6577	64.3269
+GO:0004550: [MF] nucleoside diphosphate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	161.758	282.441	228.356	175.603	195.079	248.125
+GO:0004550: [MF] nucleoside diphosphate kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.396861	0.152529	0.883498	0.485838	0.638087	0.949793
+GO:0004553: [MF] hydrolase activity, hydrolyzing O-glycosyl compounds	274.423	464.875	431.3	1172.49	1123.65	1188.03
+GO:0004553: [MF] hydrolase activity, hydrolyzing O-glycosyl compounds|g__Clostridium.s__Clostridium_thermocellum	243.578	426.5	408.561	1146.64	1087.85	1158.79
+GO:0004553: [MF] hydrolase activity, hydrolyzing O-glycosyl compounds|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.3339	38.3753	20.3505	25.8515	35.8054	29.1819
+GO:0004553: [MF] hydrolase activity, hydrolyzing O-glycosyl compounds|g__Escherichia.s__Escherichia_coli	1.51076	0	2.38798	0	0	0.0514188
+GO:0004555: [MF] alpha,alpha-trehalase activity	0.0972162	0	0.222825	0	0	0
+GO:0004555: [MF] alpha,alpha-trehalase activity|g__Escherichia.s__Escherichia_coli	0.0972162	0	0.222825	0	0	0
+GO:0004556: [MF] alpha-amylase activity	102.101	40.8794	52.6217	38.4827	41.8009	33.3908
+GO:0004556: [MF] alpha-amylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	101.997	40.8794	52.5729	38.4827	41.8009	33.3908
+GO:0004556: [MF] alpha-amylase activity|g__Escherichia.s__Escherichia_coli	0.104191	0	0.0487149	0	0	0
+GO:0004557: [MF] alpha-galactosidase activity	0.0402961	0	0	0	0	0
+GO:0004557: [MF] alpha-galactosidase activity|g__Escherichia.s__Escherichia_coli	0.0402961	0	0	0	0	0
+GO:0004558: [MF] alpha-1,4-glucosidase activity	0.016867	0	0	0	0	0
+GO:0004558: [MF] alpha-1,4-glucosidase activity|g__Escherichia.s__Escherichia_coli	0.016867	0	0	0	0	0
+GO:0004559: [MF] alpha-mannosidase activity	0	0	0	0	0	0.0327593
+GO:0004559: [MF] alpha-mannosidase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0327593
+GO:0004563: [MF] beta-N-acetylhexosaminidase activity	1.49941	2.15053	0.493599	4.32845	4.25251	5.26529
+GO:0004563: [MF] beta-N-acetylhexosaminidase activity|g__Clostridium.s__Clostridium_thermocellum	0.287104	1.96897	0.493599	4.28	4.08377	5.26529
+GO:0004563: [MF] beta-N-acetylhexosaminidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.15682	0.18156	0	0.0484221	0.16874	0
+GO:0004563: [MF] beta-N-acetylhexosaminidase activity|g__Escherichia.s__Escherichia_coli	0.0554862	0	0	0	0	0
+GO:0004565: [MF] beta-galactosidase activity	2179.04	0	768.067	0	0	225.731
+GO:0004565: [MF] beta-galactosidase activity|g__Escherichia.s__Escherichia_coli	2179.04	0	768.067	0	0	225.731
+GO:0004568: [MF] chitinase activity	5.29947	8.80582	9.09723	23.3712	19.9315	20.0054
+GO:0004568: [MF] chitinase activity|g__Clostridium.s__Clostridium_thermocellum	5.29947	8.80582	9.09723	23.3712	19.9315	20.0054
+GO:0004576: [MF] oligosaccharyl transferase activity	0.228774	0.391592	0.231305	0.153225	0.327671	0.202312
+GO:0004576: [MF] oligosaccharyl transferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.228774	0.391592	0.231305	0.153225	0.327671	0.202312
+GO:0004585: [MF] ornithine carbamoyltransferase activity	53.6485	19.2095	22.6192	28.2534	29.7609	20.1494
+GO:0004585: [MF] ornithine carbamoyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.50707	2.58642	1.39825	7.4204	5.77356	4.76255
+GO:0004585: [MF] ornithine carbamoyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	51.7953	16.3761	20.4556	20.6356	23.7289	14.788
+GO:0004585: [MF] ornithine carbamoyltransferase activity|g__Escherichia.s__Escherichia_coli	0.05675	0	0.0494366	0	0	0
+GO:0004585: [MF] ornithine carbamoyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.28934	0.24695	0.715838	0.197394	0.258373	0.598884
+GO:0004586: [MF] ornithine decarboxylase activity	0.0726691	0	0.0220119	0	0	0
+GO:0004586: [MF] ornithine decarboxylase activity|g__Escherichia.s__Escherichia_coli	0.0726691	0	0.0220119	0	0	0
+GO:0004588: [MF] orotate phosphoribosyltransferase activity	6.57437	7.53597	4.54302	2.85658	4.37357	3.38339
+GO:0004588: [MF] orotate phosphoribosyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.1579	4.68626	2.36768	1.02219	2.77335	2.067
+GO:0004588: [MF] orotate phosphoribosyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.41646	2.8497	2.17534	1.8344	1.60022	1.31639
+GO:0004589: [MF] orotate reductase (NADH) activity	0.944407	5.48275	4.48253	21.5487	15.862	14.4945
+GO:0004589: [MF] orotate reductase (NADH) activity|g__Clostridium.s__Clostridium_thermocellum	0.785021	5.36028	4.36413	21.353	15.7481	14.4096
+GO:0004589: [MF] orotate reductase (NADH) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.159386	0.122518	0.118404	0.195778	0.113897	0.0848896
+GO:0004590: [MF] orotidine-5'-phosphate decarboxylase activity	2.30925	4.5419	3.98668	8.84449	13.5307	12.868
+GO:0004590: [MF] orotidine-5'-phosphate decarboxylase activity|g__Clostridium.s__Clostridium_thermocellum	0.427873	3.69296	2.61121	7.47407	12.7419	11.5439
+GO:0004590: [MF] orotidine-5'-phosphate decarboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.65496	0.502161	1.29126	0.534832	0.505483	0.811253
+GO:0004590: [MF] orotidine-5'-phosphate decarboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.226417	0.346785	0.0842136	0.835562	0.283353	0.512798
+GO:0004591: [MF] oxoglutarate dehydrogenase (succinyl-transferring) activity	0.00916263	0	0	0	0	0
+GO:0004591: [MF] oxoglutarate dehydrogenase (succinyl-transferring) activity|g__Escherichia.s__Escherichia_coli	0.00916263	0	0	0	0	0
+GO:0004592: [MF] pantoate-beta-alanine ligase activity	32.396	35.9722	30.1788	63.4443	64.2297	63.933
+GO:0004592: [MF] pantoate-beta-alanine ligase activity|g__Clostridium.s__Clostridium_thermocellum	4.14834	22.4429	12.4929	47.0788	46.2156	50.0343
+GO:0004592: [MF] pantoate-beta-alanine ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	28.1785	13.5293	17.686	16.3655	18.0141	13.8987
+GO:0004592: [MF] pantoate-beta-alanine ligase activity|g__Escherichia.s__Escherichia_coli	0.0692422	0	0	0	0	0
+GO:0004594: [MF] pantothenate kinase activity	33.3553	106.926	87.0918	223.061	209.44	187.462
+GO:0004594: [MF] pantothenate kinase activity|g__Clostridium.s__Clostridium_thermocellum	14.6644	93.1317	77.7649	208.36	193.382	177.128
+GO:0004594: [MF] pantothenate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.5659	13.794	9.32691	14.7015	16.0576	10.3332
+GO:0004594: [MF] pantothenate kinase activity|g__Escherichia.s__Escherichia_coli	0.125117	0	0	0	0	0
+GO:0004595: [MF] pantetheine-phosphate adenylyltransferase activity	17.8463	82.5294	71.6573	99.9808	102.05	117.836
+GO:0004595: [MF] pantetheine-phosphate adenylyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.35608	26.1485	22.2304	65.138	64.5237	83.1103
+GO:0004595: [MF] pantetheine-phosphate adenylyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.4902	56.2534	48.499	34.4354	37.4669	34.461
+GO:0004595: [MF] pantetheine-phosphate adenylyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.681377	0	0	0
+GO:0004595: [MF] pantetheine-phosphate adenylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.127512	0.246461	0.407348	0.0592924	0.264823
+GO:0004596: [MF] peptide alpha-N-acetyltransferase activity	0.0736413	0	0.135454	0	0	0
+GO:0004596: [MF] peptide alpha-N-acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0736413	0	0.135454	0	0	0
+GO:0004601: [MF] peroxidase activity	283.434	790.92	656.057	983.834	959.239	1222.1
+GO:0004601: [MF] peroxidase activity|g__Clostridium.s__Clostridium_thermocellum	22.6348	216.426	161.484	605.149	432.637	705.98
+GO:0004601: [MF] peroxidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	260.486	574.494	494.362	378.685	526.602	516.122
+GO:0004601: [MF] peroxidase activity|g__Escherichia.s__Escherichia_coli	0.313036	0	0.211143	0	0	0
+GO:0004604: [MF] phosphoadenylyl-sulfate reductase (thioredoxin) activity	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0004604: [MF] phosphoadenylyl-sulfate reductase (thioredoxin) activity|g__Clostridium.s__Clostridium_thermocellum	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0004605: [MF] phosphatidate cytidylyltransferase activity	39.0069	30.7983	30.6151	37.2582	38.9489	27.505
+GO:0004605: [MF] phosphatidate cytidylyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	38.6834	30.7983	30.6151	37.2582	38.9489	27.505
+GO:0004605: [MF] phosphatidate cytidylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.323463	0	0	0	0	0
+GO:0004609: [MF] phosphatidylserine decarboxylase activity	0.0296752	0.35766	0.172802	0.19058	0.415611	0.803427
+GO:0004609: [MF] phosphatidylserine decarboxylase activity|g__Escherichia.s__Escherichia_coli	0.0296752	0	0	0	0	0
+GO:0004609: [MF] phosphatidylserine decarboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.35766	0.172802	0.19058	0.415611	0.803427
+GO:0004612: [MF] phosphoenolpyruvate carboxykinase (ATP) activity	189.959	47.5127	106.482	7.40456	7.98654	10.4568
+GO:0004612: [MF] phosphoenolpyruvate carboxykinase (ATP) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	189.884	47.5127	106.482	7.40456	7.98654	10.4351
+GO:0004612: [MF] phosphoenolpyruvate carboxykinase (ATP) activity|g__Escherichia.s__Escherichia_coli	0.0745648	0	0	0	0	0.0216994
+GO:0004613: [MF] phosphoenolpyruvate carboxykinase (GTP) activity	3.81639	65.064	74.5875	230.114	193.526	182.721
+GO:0004613: [MF] phosphoenolpyruvate carboxykinase (GTP) activity|g__Clostridium.s__Clostridium_thermocellum	3.81639	65.064	74.5875	230.114	193.526	182.721
+GO:0004614: [MF] phosphoglucomutase activity	4.60829	38.8424	31.8566	98.9275	100.38	84.5695
+GO:0004614: [MF] phosphoglucomutase activity|g__Clostridium.s__Clostridium_thermocellum	4.60829	38.8424	31.8566	98.9275	100.38	84.5695
+GO:0004615: [MF] phosphomannomutase activity	18.1422	23.6157	39.1816	17.2282	21.1682	17.1783
+GO:0004615: [MF] phosphomannomutase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.8829	23.3093	38.9594	16.8403	20.9545	17.0455
+GO:0004615: [MF] phosphomannomutase activity|g__Escherichia.s__Escherichia_coli	0.03981	0	0	0	0	0
+GO:0004615: [MF] phosphomannomutase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.219466	0.306412	0.222149	0.38785	0.213665	0.132719
+GO:0004616: [MF] phosphogluconate dehydrogenase (decarboxylating) activity	0.128496	0	0.118855	0	0	0
+GO:0004616: [MF] phosphogluconate dehydrogenase (decarboxylating) activity|g__Escherichia.s__Escherichia_coli	0.128496	0	0.118855	0	0	0
+GO:0004617: [MF] phosphoglycerate dehydrogenase activity	0.0564826	0.326855	0.126027	0.191276	0.334051	0.724488
+GO:0004617: [MF] phosphoglycerate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0224326	0	0	0	0	0
+GO:0004617: [MF] phosphoglycerate dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.03405	0.326855	0.126027	0.191276	0.334051	0.724488
+GO:0004618: [MF] phosphoglycerate kinase activity	116.198	275.861	308.669	351.709	403.418	257.999
+GO:0004618: [MF] phosphoglycerate kinase activity|g__Clostridium.s__Clostridium_thermocellum	3.79131	58.1847	51.2642	168.02	174.865	180.172
+GO:0004618: [MF] phosphoglycerate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	111.779	217.204	256.907	182.841	228.413	77.4405
+GO:0004618: [MF] phosphoglycerate kinase activity|g__Escherichia.s__Escherichia_coli	0.0239638	0	0	0	0	0
+GO:0004618: [MF] phosphoglycerate kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.604126	0.472757	0.498245	0.847126	0.139897	0.387129
+GO:0004619: [MF] phosphoglycerate mutase activity	0.0757071	0	0	0	0	0
+GO:0004619: [MF] phosphoglycerate mutase activity|g__Escherichia.s__Escherichia_coli	0.0757071	0	0	0	0	0
+GO:0004622: [MF] lysophospholipase activity	0.0556806	0	0	0	0	0
+GO:0004622: [MF] lysophospholipase activity|g__Escherichia.s__Escherichia_coli	0.0556806	0	0	0	0	0
+GO:0004632: [MF] phosphopantothenate--cysteine ligase activity	6.30447	18.6416	12.7659	39.1608	40.3548	32.1954
+GO:0004632: [MF] phosphopantothenate--cysteine ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.40399	14.0103	9.51189	35.0685	35.422	28.2307
+GO:0004632: [MF] phosphopantothenate--cysteine ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.75624	4.16977	2.89714	3.77369	4.86838	3.58089
+GO:0004632: [MF] phosphopantothenate--cysteine ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.144245	0.461509	0.356881	0.318537	0.0643926	0.383798
+GO:0004633: [MF] phosphopantothenoylcysteine decarboxylase activity	6.30447	18.6416	12.7659	39.1608	40.3548	32.1954
+GO:0004633: [MF] phosphopantothenoylcysteine decarboxylase activity|g__Clostridium.s__Clostridium_thermocellum	2.40399	14.0103	9.51189	35.0685	35.422	28.2307
+GO:0004633: [MF] phosphopantothenoylcysteine decarboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.75624	4.16977	2.89714	3.77369	4.86838	3.58089
+GO:0004633: [MF] phosphopantothenoylcysteine decarboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.144245	0.461509	0.356881	0.318537	0.0643926	0.383798
+GO:0004634: [MF] phosphopyruvate hydratase activity	49.83	66.6584	66.4705	147.031	140.778	92.7014
+GO:0004634: [MF] phosphopyruvate hydratase activity|g__Clostridium.s__Clostridium_thermocellum	3.85773	22.1513	21.5629	82.9536	74.2882	59.5495
+GO:0004634: [MF] phosphopyruvate hydratase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	45.8416	44.4224	44.6618	63.8743	66.3513	33.0344
+GO:0004634: [MF] phosphopyruvate hydratase activity|g__Escherichia.s__Escherichia_coli	0.0423134	0	0	0	0	0
+GO:0004634: [MF] phosphopyruvate hydratase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0882966	0.0847593	0.245785	0.20289	0.137987	0.117487
+GO:0004635: [MF] phosphoribosyl-AMP cyclohydrolase activity	5.267	13.1668	7.12207	42.6483	37.7056	32.5569
+GO:0004635: [MF] phosphoribosyl-AMP cyclohydrolase activity|g__Clostridium.s__Clostridium_thermocellum	5.16145	12.643	7.12207	41.9038	37.3034	32.0724
+GO:0004635: [MF] phosphoribosyl-AMP cyclohydrolase activity|g__Escherichia.s__Escherichia_coli	0.105553	0	0	0	0	0
+GO:0004635: [MF] phosphoribosyl-AMP cyclohydrolase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.523771	0	0.744487	0.402264	0.484469
+GO:0004636: [MF] phosphoribosyl-ATP diphosphatase activity	5.61176	12.643	7.12207	42.0802	37.3034	32.0724
+GO:0004636: [MF] phosphoribosyl-ATP diphosphatase activity|g__Clostridium.s__Clostridium_thermocellum	5.16145	12.643	7.12207	41.9038	37.3034	32.0724
+GO:0004636: [MF] phosphoribosyl-ATP diphosphatase activity|g__Escherichia.s__Escherichia_coli	0.105553	0	0	0	0	0
+GO:0004636: [MF] phosphoribosyl-ATP diphosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.344729	0	0	0.176379	0	0
+GO:0004637: [MF] phosphoribosylamine-glycine ligase activity	2.48142	3.38472	3.38465	42.8434	25.7529	20.9748
+GO:0004637: [MF] phosphoribosylamine-glycine ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.01403	3.10991	2.39668	42.2397	25.3504	20.3035
+GO:0004637: [MF] phosphoribosylamine-glycine ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.218907	0.0841058	0.325081	0.156781	0.136663	0.116549
+GO:0004637: [MF] phosphoribosylamine-glycine ligase activity|g__Escherichia.s__Escherichia_coli	0.149227	0	0	0	0	0
+GO:0004637: [MF] phosphoribosylamine-glycine ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0992578	0.190708	0.662883	0.446991	0.265904	0.554806
+GO:0004638: [MF] phosphoribosylaminoimidazole carboxylase activity	0.0529585	0	0.0982867	0	0	0
+GO:0004638: [MF] phosphoribosylaminoimidazole carboxylase activity|g__Escherichia.s__Escherichia_coli	0.0529585	0	0.0982867	0	0	0
+GO:0004639: [MF] phosphoribosylaminoimidazolesuccinocarboxamide synthase activity	17.3501	35.4669	27.5697	67.8205	87.798	89.602
+GO:0004639: [MF] phosphoribosylaminoimidazolesuccinocarboxamide synthase activity|g__Clostridium.s__Clostridium_thermocellum	5.4872	26.5875	18.6503	57.3266	73.4186	83.0339
+GO:0004639: [MF] phosphoribosylaminoimidazolesuccinocarboxamide synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.8198	8.56666	8.91942	10.4106	14.3067	6.56819
+GO:0004639: [MF] phosphoribosylaminoimidazolesuccinocarboxamide synthase activity|g__Escherichia.s__Escherichia_coli	0.0430911	0	0	0	0	0
+GO:0004639: [MF] phosphoribosylaminoimidazolesuccinocarboxamide synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.312713	0	0.0832403	0.0727048	0
+GO:0004640: [MF] phosphoribosylanthranilate isomerase activity	19.0113	91.8732	205.588	214.157	99.8994	114.056
+GO:0004640: [MF] phosphoribosylanthranilate isomerase activity|g__Clostridium.s__Clostridium_thermocellum	18.6339	91.8732	205.184	213.941	99.8994	113.607
+GO:0004640: [MF] phosphoribosylanthranilate isomerase activity|g__Escherichia.s__Escherichia_coli	0.0401989	0	0.403341	0	0	0
+GO:0004640: [MF] phosphoribosylanthranilate isomerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.337267	0	0	0.215898	0	0.449058
+GO:0004641: [MF] phosphoribosylformylglycinamidine cyclo-ligase activity	3.36893	8.12476	4.4925	74.1799	64.9073	47.7997
+GO:0004641: [MF] phosphoribosylformylglycinamidine cyclo-ligase activity|g__Clostridium.s__Clostridium_thermocellum	3.17338	8.07094	4.4925	73.8931	64.9073	47.4268
+GO:0004641: [MF] phosphoribosylformylglycinamidine cyclo-ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.168184	0	0	0.114751	0	0.149147
+GO:0004641: [MF] phosphoribosylformylglycinamidine cyclo-ligase activity|g__Escherichia.s__Escherichia_coli	0.0273664	0	0	0	0	0
+GO:0004641: [MF] phosphoribosylformylglycinamidine cyclo-ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.0538147	0	0.172101	0	0.223785
+GO:0004642: [MF] phosphoribosylformylglycinamidine synthase activity	40.4669	27.1087	32.3531	38.7605	50.4463	39.8071
+GO:0004642: [MF] phosphoribosylformylglycinamidine synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	40.0243	24.5918	29.3687	38.3741	50.1104	39.1429
+GO:0004642: [MF] phosphoribosylformylglycinamidine synthase activity|g__Escherichia.s__Escherichia_coli	0.00651349	0	0	0	0	0
+GO:0004642: [MF] phosphoribosylformylglycinamidine synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.436088	2.51687	2.98446	0.386432	0.335809	0.664144
+GO:0004643: [MF] phosphoribosylaminoimidazolecarboxamide formyltransferase activity	1.61829	2.87719	2.16578	36.1461	27.8234	16.8718
+GO:0004643: [MF] phosphoribosylaminoimidazolecarboxamide formyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.53247	2.87719	2.16578	36.1461	27.8234	16.8718
+GO:0004643: [MF] phosphoribosylaminoimidazolecarboxamide formyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0520107	0	0	0	0	0
+GO:0004643: [MF] phosphoribosylaminoimidazolecarboxamide formyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0337826	0	0	0	0	0
+GO:0004644: [MF] phosphoribosylglycinamide formyltransferase activity	2.68215	4.85765	2.51355	51.3108	40.3012	35.1897
+GO:0004644: [MF] phosphoribosylglycinamide formyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.68215	4.85765	2.25058	51.3108	40.3012	35.0655
+GO:0004644: [MF] phosphoribosylglycinamide formyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.26297	0	0	0.124181
+GO:0004645: [MF] phosphorylase activity	31.3666	24.7419	28.296	34.0698	41.2712	25.1916
+GO:0004645: [MF] phosphorylase activity|g__Clostridium.s__Clostridium_thermocellum	0.738284	1.98489	2.77977	9.99093	9.33907	7.15631
+GO:0004645: [MF] phosphorylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	30.5868	22.757	25.5162	24.0789	31.9322	18.0353
+GO:0004645: [MF] phosphorylase activity|g__Escherichia.s__Escherichia_coli	0.0414384	0	0	0	0	0
+GO:0004647: [MF] phosphoserine phosphatase activity	0.145095	0.348792	0.379841	0.260216	0.388699	0.453036
+GO:0004647: [MF] phosphoserine phosphatase activity|g__Escherichia.s__Escherichia_coli	0	0	0.11015	0	0	0.114674
+GO:0004647: [MF] phosphoserine phosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.145095	0.348792	0.269691	0.260216	0.388699	0.338362
+GO:0004648: [MF] O-phospho-L-serine:2-oxoglutarate aminotransferase activity	3.83627	38.8084	30.0663	82.1011	81.3638	64.717
+GO:0004648: [MF] O-phospho-L-serine:2-oxoglutarate aminotransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.83627	38.8084	29.9703	82.1011	81.3638	64.717
+GO:0004648: [MF] O-phospho-L-serine:2-oxoglutarate aminotransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0959863	0	0	0
+GO:0004652: [MF] polynucleotide adenylyltransferase activity	0	0	0.0742451	0	0	0
+GO:0004652: [MF] polynucleotide adenylyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0742451	0	0	0
+GO:0004654: [MF] polyribonucleotide nucleotidyltransferase activity	35.2737	69.6844	56.928	96.3141	102.988	96.85
+GO:0004654: [MF] polyribonucleotide nucleotidyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.72492	16.2016	15.1478	61.5467	63.3508	61.82
+GO:0004654: [MF] polyribonucleotide nucleotidyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.5488	53.4827	41.7801	34.7674	39.6371	35.03
+GO:0004655: [MF] porphobilinogen synthase activity	0.146456	17.2936	11.1226	18.964	18.7636	29.1318
+GO:0004655: [MF] porphobilinogen synthase activity|g__Clostridium.s__Clostridium_thermocellum	0.116975	17.2936	10.5792	18.964	18.7113	28.8204
+GO:0004655: [MF] porphobilinogen synthase activity|g__Escherichia.s__Escherichia_coli	0.0294565	0	0.109338	0	0	0
+GO:0004655: [MF] porphobilinogen synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.434058	0	0.0522389	0.311359
+GO:0004657: [MF] proline dehydrogenase activity	0.00636766	0	0	0	0	0
+GO:0004657: [MF] proline dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.00636766	0	0	0	0	0
+GO:0004658: [MF] propionyl-CoA carboxylase activity	39.7308	24.1489	20.9167	25.6852	28.76	20.2805
+GO:0004658: [MF] propionyl-CoA carboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.7308	24.1489	20.9167	25.6852	28.76	20.2805
+GO:0004659: [MF] prenyltransferase activity	57.9151	60.4989	52.4815	61.4978	60.2769	75.1739
+GO:0004659: [MF] prenyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.82448	14.6845	12.1855	34.2103	30.4807	42.2707
+GO:0004659: [MF] prenyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	55.5829	45.2354	39.5043	26.6307	28.8053	32.1429
+GO:0004659: [MF] prenyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.507663	0.578939	0.791662	0.65687	0.990868	0.760384
+GO:0004664: [MF] prephenate dehydratase activity	2.13837	18.4487	13.3233	48.7579	38.0421	46.1078
+GO:0004664: [MF] prephenate dehydratase activity|g__Clostridium.s__Clostridium_thermocellum	1.98005	18.4487	13.3233	48.5815	38.0421	46.1078
+GO:0004664: [MF] prephenate dehydratase activity|g__Escherichia.s__Escherichia_coli	0.0721101	0	0	0	0	0
+GO:0004664: [MF] prephenate dehydratase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0861822	0	0	0.176379	0	0
+GO:0004665: [MF] prephenate dehydrogenase (NADP+) activity	3.62641	16.9319	12.9249	61.6974	63.1192	58.5705
+GO:0004665: [MF] prephenate dehydrogenase (NADP+) activity|g__Clostridium.s__Clostridium_thermocellum	3.38371	16.3874	12.5114	61.2005	62.8299	58.0045
+GO:0004665: [MF] prephenate dehydrogenase (NADP+) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.2427	0.544541	0.41349	0.496905	0.289343	0.565963
+GO:0004672: [MF] protein kinase activity	82.9682	264.399	288.997	198.194	247.208	270.261
+GO:0004672: [MF] protein kinase activity|g__Clostridium.s__Clostridium_thermocellum	7.45145	125.108	181.324	120.968	133.784	130.793
+GO:0004672: [MF] protein kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	75.0917	139.048	107.562	77.1771	113.396	139.174
+GO:0004672: [MF] protein kinase activity|g__Escherichia.s__Escherichia_coli	0.251012	0	0.111052	0	0	0
+GO:0004672: [MF] protein kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.174041	0.243076	0	0.0485714	0.0282572	0.294187
+GO:0004673: [MF] protein histidine kinase activity	18.1018	109.279	82.1481	263.852	275.351	238.539
+GO:0004673: [MF] protein histidine kinase activity|g__Clostridium.s__Clostridium_thermocellum	6.39588	71.5724	51.717	237.038	215.67	195.354
+GO:0004673: [MF] protein histidine kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.7059	37.7065	30.1439	26.8137	59.6813	43.0816
+GO:0004673: [MF] protein histidine kinase activity|g__Escherichia.s__Escherichia_coli	0	0	0.287237	0	0	0.103032
+GO:0004674: [MF] protein serine/threonine kinase activity	24.267	61.5723	51.0405	128.185	132.321	132.252
+GO:0004674: [MF] protein serine/threonine kinase activity|g__Clostridium.s__Clostridium_thermocellum	6.96112	35.6461	30.2686	102.969	97.4742	102.245
+GO:0004674: [MF] protein serine/threonine kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.3533	25.4559	20.4179	24.5232	34.2803	29.4076
+GO:0004674: [MF] protein serine/threonine kinase activity|g__Escherichia.s__Escherichia_coli	0.356686	0	0.056834	0	0	0.0409087
+GO:0004674: [MF] protein serine/threonine kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.595862	0.470283	0.297116	0.691986	0.566707	0.558299
+GO:0004683: [MF] calmodulin-dependent protein kinase activity	0.0556077	0	0	0	0	0.0246746
+GO:0004683: [MF] calmodulin-dependent protein kinase activity|g__Clostridium.s__Clostridium_thermocellum	0.0556077	0	0	0	0	0.0246746
+GO:0004712: [MF] protein serine/threonine/tyrosine kinase activity	0.116927	0.192435	0.0620212	0.136711	0.178984	0.0888996
+GO:0004712: [MF] protein serine/threonine/tyrosine kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.116927	0.192435	0.0620212	0.136711	0.178984	0.0888996
+GO:0004713: [MF] protein tyrosine kinase activity	0.0241339	0	0.0892204	0	0	0
+GO:0004713: [MF] protein tyrosine kinase activity|g__Escherichia.s__Escherichia_coli	0.0241339	0	0.0892204	0	0	0
+GO:0004715: [MF] non-membrane spanning protein tyrosine kinase activity	0.0810054	0.0778049	0.150339	0.41451	0.434058	1.2931
+GO:0004715: [MF] non-membrane spanning protein tyrosine kinase activity|g__Clostridium.s__Clostridium_thermocellum	0.0810054	0.0778049	0.150339	0.41451	0.434058	1.2931
+GO:0004719: [MF] protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	0.198345	0	0.714034	0.197394	0.0430586	0
+GO:0004719: [MF] protein-L-isoaspartate (D-aspartate) O-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.150126	0	0	0	0	0
+GO:0004719: [MF] protein-L-isoaspartate (D-aspartate) O-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0482192	0	0.714034	0.197394	0.0430586	0
+GO:0004721: [MF] phosphoprotein phosphatase activity	25.5691	43.7269	34.6039	34.0487	43.6273	31.86
+GO:0004721: [MF] phosphoprotein phosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	25.0964	43.7269	34.3691	34.0487	43.6273	31.819
+GO:0004721: [MF] phosphoprotein phosphatase activity|g__Escherichia.s__Escherichia_coli	0.472714	0	0.234779	0	0	0.0409087
+GO:0004722: [MF] protein serine/threonine phosphatase activity	15.2474	47.8396	53.3818	96.0903	95.2539	97.1181
+GO:0004722: [MF] protein serine/threonine phosphatase activity|g__Clostridium.s__Clostridium_thermocellum	4.93647	29.9201	30.9732	87.7261	84.643	86.1459
+GO:0004722: [MF] protein serine/threonine phosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.3109	17.9195	22.4086	8.36427	10.611	10.9722
+GO:0004725: [MF] protein tyrosine phosphatase activity	19.8057	70.367	65.5947	78.3262	101.396	112.96
+GO:0004725: [MF] protein tyrosine phosphatase activity|g__Clostridium.s__Clostridium_thermocellum	19.3853	70.367	65.5947	78.3262	101.396	112.694
+GO:0004725: [MF] protein tyrosine phosphatase activity|g__Escherichia.s__Escherichia_coli	0.0208286	0	0	0	0	0
+GO:0004725: [MF] protein tyrosine phosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.399656	0	0	0	0	0.266149
+GO:0004730: [MF] pseudouridylate synthase activity	2.14196	3.38192	3.26796	1.73579	2.60042	1.87404
+GO:0004730: [MF] pseudouridylate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.07992	3.38192	3.26796	1.73579	2.60042	1.87404
+GO:0004730: [MF] pseudouridylate synthase activity|g__Escherichia.s__Escherichia_coli	0.0620482	0	0	0	0	0
+GO:0004731: [MF] purine-nucleoside phosphorylase activity	30.3905	38.8967	35.7072	63.9523	73.6396	72.4447
+GO:0004731: [MF] purine-nucleoside phosphorylase activity|g__Clostridium.s__Clostridium_thermocellum	1.72022	18.1692	10.3778	43.6338	44.313	48.9259
+GO:0004731: [MF] purine-nucleoside phosphorylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	28.585	20.7275	25.3295	20.3184	29.3266	23.5188
+GO:0004731: [MF] purine-nucleoside phosphorylase activity|g__Escherichia.s__Escherichia_coli	0.0852829	0	0	0	0	0
+GO:0004733: [MF] pyridoxamine-phosphate oxidase activity	5.39805	61.2934	55.7947	115.922	119.456	182.261
+GO:0004733: [MF] pyridoxamine-phosphate oxidase activity|g__Clostridium.s__Clostridium_thermocellum	5.39805	60.7914	55.4234	115.168	118.371	180.87
+GO:0004733: [MF] pyridoxamine-phosphate oxidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.502021	0.371225	0.753639	1.08491	1.39115
+GO:0004735: [MF] pyrroline-5-carboxylate reductase activity	2.63074	20.7372	19.5061	49.7949	43.2229	37.9231
+GO:0004735: [MF] pyrroline-5-carboxylate reductase activity|g__Clostridium.s__Clostridium_thermocellum	2.59103	20.7372	19.3588	49.6324	43.152	37.7646
+GO:0004735: [MF] pyrroline-5-carboxylate reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0397128	0	0.147272	0.162477	0.0709251	0.158525
+GO:0004736: [MF] pyruvate carboxylase activity	3.97206	6.56217	6.13248	5.92842	7.02226	5.31845
+GO:0004736: [MF] pyruvate carboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.75758	6.23732	5.74456	5.50612	6.79375	4.79741
+GO:0004736: [MF] pyruvate carboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.214483	0.324848	0.387915	0.422295	0.22851	0.521044
+GO:0004739: [MF] pyruvate dehydrogenase (acetyl-transferring) activity	1.98204	0	0	0.176379	0.10259	0
+GO:0004739: [MF] pyruvate dehydrogenase (acetyl-transferring) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.98204	0	0	0.176379	0.10259	0
+GO:0004743: [MF] pyruvate kinase activity	82.4715	172.006	221.728	91.3702	114.013	90.918
+GO:0004743: [MF] pyruvate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	82.4715	172.006	221.728	91.3702	114.013	90.918
+GO:0004746: [MF] riboflavin synthase activity	1.34139	13.4274	6.95806	26.1803	24.0623	18.8649
+GO:0004746: [MF] riboflavin synthase activity|g__Clostridium.s__Clostridium_thermocellum	1.34139	12.9787	6.66893	25.5426	23.7845	18.0357
+GO:0004746: [MF] riboflavin synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.448767	0.289132	0.637695	0.277797	0.829201
+GO:0004747: [MF] ribokinase activity	1.86507	2.57876	3.79218	1.50907	1.03469	2.71194
+GO:0004747: [MF] ribokinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.484137	1.66564	2.81522	0.0990826	0.4323	1.37424
+GO:0004747: [MF] ribokinase activity|g__Escherichia.s__Escherichia_coli	0.276264	0	0	0	0	0.0783571
+GO:0004747: [MF] ribokinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.10464	0.913123	0.976913	1.40999	0.602386	1.25934
+GO:0004748: [MF] ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor	48.5727	48.3415	40.6825	56.5845	51.2294	41.7677
+GO:0004748: [MF] ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor|g__Clostridium.s__Clostridium_thermocellum	4.8596	35.6615	27.4644	44.2686	37.3282	32.9128
+GO:0004748: [MF] ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	43.4601	12.68	12.8797	12.3158	13.8459	8.77247
+GO:0004748: [MF] ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor|g__Escherichia.s__Escherichia_coli	0.17861	0	0.200498	0	0	0.0329857
+GO:0004748: [MF] ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0743218	0	0.137935	0	0.055299	0.0494138
+GO:0004749: [MF] ribose phosphate diphosphokinase activity	25.8198	63.8724	47.9149	154.152	158.062	149.163
+GO:0004749: [MF] ribose phosphate diphosphokinase activity|g__Clostridium.s__Clostridium_thermocellum	7.68042	47.456	38.0977	129.847	130.084	128.96
+GO:0004749: [MF] ribose phosphate diphosphokinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.0708	16.0209	9.62597	23.7424	27.9475	19.6547
+GO:0004749: [MF] ribose phosphate diphosphokinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0685617	0.395372	0.191116	0.56194	0.0306445	0.548177
+GO:0004750: [MF] ribulose-phosphate 3-epimerase activity	5.39212	17.1768	8.44522	56.377	46.561	70.8909
+GO:0004750: [MF] ribulose-phosphate 3-epimerase activity|g__Clostridium.s__Clostridium_thermocellum	1.37374	14.2688	7.56172	54.0517	42.5857	66.3568
+GO:0004750: [MF] ribulose-phosphate 3-epimerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.83739	2.90795	0.790128	2.32528	3.97537	4.41161
+GO:0004750: [MF] ribulose-phosphate 3-epimerase activity|g__Escherichia.s__Escherichia_coli	0.180992	0	0.0933701	0	0	0.1225
+GO:0004751: [MF] ribose-5-phosphate isomerase activity	49.8821	125.483	124.917	251.367	258.034	317.351
+GO:0004751: [MF] ribose-5-phosphate isomerase activity|g__Clostridium.s__Clostridium_thermocellum	22.6719	98.7472	96.9038	224.296	228.218	292.399
+GO:0004751: [MF] ribose-5-phosphate isomerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	26.7488	25.4178	26.6931	25.5749	29.1205	24.0404
+GO:0004751: [MF] ribose-5-phosphate isomerase activity|g__Escherichia.s__Escherichia_coli	0.0953205	0	0.300724	0	0	0
+GO:0004751: [MF] ribose-5-phosphate isomerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.366068	1.3183	1.01918	1.49649	0.69458	0.912054
+GO:0004756: [MF] selenide, water dikinase activity	6.75728	11.4487	13.667	8.41754	10.591	12.1338
+GO:0004756: [MF] selenide, water dikinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.75728	11.4487	13.667	8.41754	10.591	12.1338
+GO:0004760: [MF] serine-pyruvate transaminase activity	0.675045	12.1893	8.1666	8.05742	7.65503	4.29156
+GO:0004760: [MF] serine-pyruvate transaminase activity|g__Clostridium.s__Clostridium_thermocellum	0.675045	12.1893	8.1666	8.05742	7.65503	4.29156
+GO:0004764: [MF] shikimate 3-dehydrogenase (NADP+) activity	1.88687	8.3528	5.09463	37.9082	41.0562	40.5462
+GO:0004764: [MF] shikimate 3-dehydrogenase (NADP+) activity|g__Clostridium.s__Clostridium_thermocellum	1.36543	6.36931	4.52466	37.8689	40.8847	40.2398
+GO:0004764: [MF] shikimate 3-dehydrogenase (NADP+) activity|g__Escherichia.s__Escherichia_coli	0.214289	0	0	0	0	0
+GO:0004764: [MF] shikimate 3-dehydrogenase (NADP+) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.307155	1.98349	0.569964	0.0392948	0.171431	0.306379
+GO:0004765: [MF] shikimate kinase activity	7.55472	58.3682	28.9213	154.207	70.8	273.978
+GO:0004765: [MF] shikimate kinase activity|g__Clostridium.s__Clostridium_thermocellum	7.3903	57.9144	28.3575	153.827	70.6191	273.484
+GO:0004765: [MF] shikimate kinase activity|g__Escherichia.s__Escherichia_coli	0.130659	0	0	0	0	0
+GO:0004765: [MF] shikimate kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0337583	0.453761	0.563829	0.379866	0.18085	0.494074
+GO:0004766: [MF] spermidine synthase activity	100.619	101.487	103.968	119.159	141.2	107.879
+GO:0004766: [MF] spermidine synthase activity|g__Clostridium.s__Clostridium_thermocellum	2.75926	18.0253	17.4834	48.3895	53.496	53.4748
+GO:0004766: [MF] spermidine synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	97.7919	83.4617	86.3589	70.7699	87.7041	54.3586
+GO:0004766: [MF] spermidine synthase activity|g__Escherichia.s__Escherichia_coli	0.067784	0	0.125711	0	0	0.0451128
+GO:0004775: [MF] succinate-CoA ligase (ADP-forming) activity	0.235458	0.0984813	0.0935055	0.094208	0.210171	0.0682351
+GO:0004775: [MF] succinate-CoA ligase (ADP-forming) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.235458	0.0984813	0.0935055	0.094208	0.210171	0.0682351
+GO:0004777: [MF] succinate-semialdehyde dehydrogenase (NAD+) activity	0.0781861	0	0	0	0	0
+GO:0004777: [MF] succinate-semialdehyde dehydrogenase (NAD+) activity|g__Escherichia.s__Escherichia_coli	0.0781861	0	0	0	0	0
+GO:0004781: [MF] sulfate adenylyltransferase (ATP) activity	0.178149	0	0	0	0	0
+GO:0004781: [MF] sulfate adenylyltransferase (ATP) activity|g__Escherichia.s__Escherichia_coli	0.178149	0	0	0	0	0
+GO:0004783: [MF] sulfite reductase (NADPH) activity	0.119503	0	0	0	0	0
+GO:0004783: [MF] sulfite reductase (NADPH) activity|g__Escherichia.s__Escherichia_coli	0.119503	0	0	0	0	0
+GO:0004784: [MF] superoxide dismutase activity	4.87415	1.27629	1.8808	1.06317	1.15297	0.676271
+GO:0004784: [MF] superoxide dismutase activity|g__Clostridium.s__Clostridium_thermocellum	0	0.178807	0	0	0.457259	0.12389
+GO:0004784: [MF] superoxide dismutase activity|g__Escherichia.s__Escherichia_coli	0	0	0.242492	0	0	0
+GO:0004784: [MF] superoxide dismutase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	4.87415	1.09744	1.63826	1.06317	0.695709	0.552348
+GO:0004788: [MF] thiamine diphosphokinase activity	5.79525	3.55924	3.07797	2.52561	2.80879	2.53226
+GO:0004788: [MF] thiamine diphosphokinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.52963	3.21931	2.74946	2.52561	2.69027	2.35556
+GO:0004788: [MF] thiamine diphosphokinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.265619	0.339924	0.32851	0	0.11852	0.1767
+GO:0004789: [MF] thiamine-phosphate diphosphorylase activity	0.554497	3.12984	6.74746	2.2554	2.32566	2.70114
+GO:0004789: [MF] thiamine-phosphate diphosphorylase activity|g__Clostridium.s__Clostridium_thermocellum	0.131947	2.4821	6.56239	1.72748	2.12055	2.28183
+GO:0004789: [MF] thiamine-phosphate diphosphorylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.149932	0.0960543	0.185071	0	0	0.26602
+GO:0004789: [MF] thiamine-phosphate diphosphorylase activity|g__Escherichia.s__Escherichia_coli	0.100108	0	0	0	0	0
+GO:0004789: [MF] thiamine-phosphate diphosphorylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.17251	0.551682	0	0.527918	0.205114	0.153254
+GO:0004791: [MF] thioredoxin-disulfide reductase activity	64.0547	73.3668	63.4653	101.291	87.2444	71.0648
+GO:0004791: [MF] thioredoxin-disulfide reductase activity|g__Clostridium.s__Clostridium_thermocellum	3.34271	26.5836	22.3044	73.621	51.4425	40.9378
+GO:0004791: [MF] thioredoxin-disulfide reductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	60.5844	45.6812	40.6282	27.2136	35.3746	29.7026
+GO:0004791: [MF] thioredoxin-disulfide reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.127572	1.10196	0.532751	0.456765	0.427222	0.424383
+GO:0004792: [MF] thiosulfate sulfurtransferase activity	1.44726	2.16575	0	0	0	0.173886
+GO:0004792: [MF] thiosulfate sulfurtransferase activity|g__Escherichia.s__Escherichia_coli	0.421918	0	0	0	0	0.173886
+GO:0004792: [MF] thiosulfate sulfurtransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.02534	2.16575	0	0	0	0
+GO:0004794: [MF] L-threonine ammonia-lyase activity	0.231423	0	0.0536766	0	0	0
+GO:0004794: [MF] L-threonine ammonia-lyase activity|g__Escherichia.s__Escherichia_coli	0.231423	0	0.0536766	0	0	0
+GO:0004795: [MF] threonine synthase activity	9.81458	60.0156	53.8604	131.371	126.084	142.377
+GO:0004795: [MF] threonine synthase activity|g__Clostridium.s__Clostridium_thermocellum	9.68106	58.6653	53.2288	130.536	125.436	141.594
+GO:0004795: [MF] threonine synthase activity|g__Escherichia.s__Escherichia_coli	0.0427508	0	0	0	0	0
+GO:0004795: [MF] threonine synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0907756	1.35027	0.631624	0.83581	0.648331	0.783345
+GO:0004797: [MF] thymidine kinase activity	18.8045	14.4913	14.601	13.952	18.8738	12.0016
+GO:0004797: [MF] thymidine kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.8045	14.4913	14.601	13.952	18.8738	12.0016
+GO:0004798: [MF] thymidylate kinase activity	8.03055	8.03234	10.5069	23.3999	22.1419	20.7716
+GO:0004798: [MF] thymidylate kinase activity|g__Clostridium.s__Clostridium_thermocellum	1.85979	4.36492	5.40031	19.7196	19.5344	17.4885
+GO:0004798: [MF] thymidylate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.01618	3.2385	4.17365	3.22284	2.45792	2.24471
+GO:0004798: [MF] thymidylate kinase activity|g__Escherichia.s__Escherichia_coli	0.0986988	0	0	0	0	0
+GO:0004798: [MF] thymidylate kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.055875	0.42893	0.93298	0.457386	0.149685	1.03847
+GO:0004799: [MF] thymidylate synthase activity	4.57164	26.1716	19.7148	62.82	64.2457	71.0197
+GO:0004799: [MF] thymidylate synthase activity|g__Clostridium.s__Clostridium_thermocellum	4.20754	24.2485	18.8704	62.4472	63.5952	70.4747
+GO:0004799: [MF] thymidylate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.364099	1.92305	0.844391	0.372753	0.650436	0.54504
+GO:0004801: [MF] sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity	135.498	314.936	341.745	128.573	149.254	152.303
+GO:0004801: [MF] sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	135.437	314.936	341.745	128.573	149.254	152.303
+GO:0004801: [MF] sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity|g__Escherichia.s__Escherichia_coli	0.0604685	0	0	0	0	0
+GO:0004802: [MF] transketolase activity	0.0263942	0	0	0	0	0
+GO:0004802: [MF] transketolase activity|g__Escherichia.s__Escherichia_coli	0.0263942	0	0	0	0	0
+GO:0004803: [MF] transposase activity	58.5931	207.17	182.093	328.57	308.305	327.09
+GO:0004803: [MF] transposase activity|g__Clostridium.s__Clostridium_thermocellum	50.6674	207.17	179.61	328.57	308.305	326.202
+GO:0004803: [MF] transposase activity|g__Escherichia.s__Escherichia_coli	7.92575	0	2.48347	0	0	0.887541
+GO:0004805: [MF] trehalose-phosphatase activity	0.159945	0.217079	0.139198	0.0770476	0.0672356	0
+GO:0004805: [MF] trehalose-phosphatase activity|g__Escherichia.s__Escherichia_coli	0.159945	0	0	0	0	0
+GO:0004805: [MF] trehalose-phosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.217079	0.139198	0.0770476	0.0672356	0
+GO:0004807: [MF] triose-phosphate isomerase activity	77.1909	212.122	200.672	500.24	464.138	362.008
+GO:0004807: [MF] triose-phosphate isomerase activity|g__Clostridium.s__Clostridium_thermocellum	7.97827	104.076	77.7508	385.024	369.989	319.97
+GO:0004807: [MF] triose-phosphate isomerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	69.0326	107.358	122.921	115.124	93.868	41.6785
+GO:0004807: [MF] triose-phosphate isomerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.179947	0.688949	0	0.0920195	0.281335	0.359091
+GO:0004808: [MF] tRNA (5-methylaminomethyl-2-thiouridylate)-methyltransferase activity	0.0261755	0	0	0	0	0
+GO:0004808: [MF] tRNA (5-methylaminomethyl-2-thiouridylate)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0261755	0	0	0	0	0
+GO:0004809: [MF] tRNA (guanine-N2-)-methyltransferase activity	0.129638	0	1.08255	0.150216	0.181545	0.215377
+GO:0004809: [MF] tRNA (guanine-N2-)-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.129638	0	1.08255	0.150216	0.181545	0.215377
+GO:0004810: [MF] tRNA adenylyltransferase activity	3.55738	11.1752	7.55085	29.3174	31.5835	23.6007
+GO:0004810: [MF] tRNA adenylyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.60429	7.88873	6.48377	27.1068	28.7997	21.395
+GO:0004810: [MF] tRNA adenylyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.83085	2.93031	0.514844	1.9865	2.52672	1.4395
+GO:0004810: [MF] tRNA adenylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.122249	0.356213	0.552237	0.224105	0.257071	0.766173
+GO:0004812: [MF] aminoacyl-tRNA ligase activity	15.1402	47.4323	29.2281	58.2033	52.7466	52.6354
+GO:0004812: [MF] aminoacyl-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	5.3624	18.1744	10.1945	34.178	28.4465	43.0052
+GO:0004812: [MF] aminoacyl-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.43158	29.0199	18.8658	23.913	24.1686	9.43613
+GO:0004812: [MF] aminoacyl-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.346163	0.238035	0.167751	0.112264	0.131476	0.194066
+GO:0004813: [MF] alanine-tRNA ligase activity	39.1828	63.3028	59.1364	106.954	126.937	111.282
+GO:0004813: [MF] alanine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	5.49719	19.1865	11.5244	63.4788	64.6384	64.436
+GO:0004813: [MF] alanine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	33.666	44.1163	47.612	43.4753	62.2984	46.8456
+GO:0004813: [MF] alanine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0195891	0	0	0	0	0
+GO:0004814: [MF] arginine-tRNA ligase activity	56.0024	81.1343	82.7605	135.807	144.357	106.315
+GO:0004814: [MF] arginine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	14.0925	38.9658	49.3593	83.7525	86.937	71.8438
+GO:0004814: [MF] arginine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	41.754	41.1333	32.755	51.7953	57.2362	34.3873
+GO:0004814: [MF] arginine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.076655	0	0	0	0	0
+GO:0004814: [MF] arginine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0792798	1.03517	0.646194	0.259569	0.184019	0.0843722
+GO:0004815: [MF] aspartate-tRNA ligase activity	22.1682	18.8851	21.0763	20.3816	21.13	18.0065
+GO:0004815: [MF] aspartate-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.0965	18.8049	20.9213	20.1682	21.0927	17.8676
+GO:0004815: [MF] aspartate-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0299426	0	0	0	0	0
+GO:0004815: [MF] aspartate-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0417544	0.0801853	0.154985	0.213386	0.0372856	0.138863
+GO:0004816: [MF] asparagine-tRNA ligase activity	19.6819	37.2307	29.1304	58.8466	59.5325	54.4351
+GO:0004816: [MF] asparagine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.34199	16.3389	11.4461	45.0052	43.2546	38.7695
+GO:0004816: [MF] asparagine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.2449	20.8917	17.6842	13.8413	16.2779	15.6655
+GO:0004816: [MF] asparagine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0950045	0	0	0	0	0
+GO:0004817: [MF] cysteine-tRNA ligase activity	15.3008	19.893	13.8677	35.7364	32.9913	23.7617
+GO:0004817: [MF] cysteine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	1.56572	12.2106	8.96696	28.6586	23.4713	15.921
+GO:0004817: [MF] cysteine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.6957	7.68243	4.86418	7.07781	9.52005	7.78834
+GO:0004817: [MF] cysteine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.039324	0	0.036491	0	0	0.0523243
+GO:0004818: [MF] glutamate-tRNA ligase activity	19.5228	21.199	19.5978	49.0751	50.7212	40.3179
+GO:0004818: [MF] glutamate-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	4.28541	13.4853	13.6406	42.5905	41.3559	33.4363
+GO:0004818: [MF] glutamate-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1668	7.405	5.89757	6.48456	9.30782	6.88159
+GO:0004818: [MF] glutamate-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0384004	0	0	0	0	0
+GO:0004818: [MF] glutamate-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0321543	0.308746	0.0596757	0	0.0574259	0
+GO:0004819: [MF] glutamine-tRNA ligase activity	2.33414	19.5644	13.4457	57.1243	62.2455	49.6799
+GO:0004819: [MF] glutamine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.33414	19.5644	13.4457	57.1243	62.2455	49.6799
+GO:0004820: [MF] glycine-tRNA ligase activity	21.0726	29.2836	22.9982	81.4349	72.6562	72.6769
+GO:0004820: [MF] glycine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	4.03843	22.7861	16.3044	71.33	61.2833	62.8522
+GO:0004820: [MF] glycine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.6999	6.40707	6.34443	9.92818	11.3027	9.74119
+GO:0004820: [MF] glycine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.334229	0	0	0	0	0
+GO:0004820: [MF] glycine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.0904535	0.349394	0.176727	0.0701004	0.0835637
+GO:0004821: [MF] histidine-tRNA ligase activity	16.6032	32.2198	22.8885	49.9716	47.2497	40.7507
+GO:0004821: [MF] histidine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.63978	11.8759	8.04715	27.4492	23.7777	26.3258
+GO:0004821: [MF] histidine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.6129	19.4776	14.613	22.3125	23.2156	14.0687
+GO:0004821: [MF] histidine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0432126	0	0	0	0	0.0287493
+GO:0004821: [MF] histidine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.307325	0.866309	0.228328	0.209879	0.256377	0.327464
+GO:0004822: [MF] isoleucine-tRNA ligase activity	55.3052	36.2954	27.5199	30.7641	32.2157	26.2191
+GO:0004822: [MF] isoleucine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	55.1984	36.1391	27.3652	30.631	32.1575	26.0457
+GO:0004822: [MF] isoleucine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.00911402	0	0.0338298	0	0	0
+GO:0004822: [MF] isoleucine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0977023	0.156263	0.120885	0.13308	0.0581638	0.173336
+GO:0004823: [MF] leucine-tRNA ligase activity	34.9474	48.628	40.1434	104.577	103.367	89.7567
+GO:0004823: [MF] leucine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	5.48015	36.422	27.236	91.0435	87.979	79.0557
+GO:0004823: [MF] leucine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.2374	12.0659	12.6704	13.3937	15.282	10.5045
+GO:0004823: [MF] leucine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0199779	0	0	0	0	0.0265826
+GO:0004823: [MF] leucine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.209841	0.140161	0.237034	0.140044	0.105889	0.169909
+GO:0004824: [MF] lysine-tRNA ligase activity	39.3415	45.396	28.9729	91.8475	89.7818	83.2609
+GO:0004824: [MF] lysine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	1.45601	14.2331	9.50287	38.4728	37.9494	40.2274
+GO:0004824: [MF] lysine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	37.675	31.0372	19.2826	53.2743	51.8031	42.9871
+GO:0004824: [MF] lysine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.112236	0	0.0659455	0	0	0.046471
+GO:0004824: [MF] lysine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0981884	0.125739	0.121517	0.100475	0.0292338	0
+GO:0004825: [MF] methionine-tRNA ligase activity	27.3954	23.1781	21.7407	47.8856	44.9001	33.9336
+GO:0004825: [MF] methionine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.43692	9.97597	6.73366	33.4126	30.0803	23.122
+GO:0004825: [MF] methionine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	24.9197	13.0987	14.9571	14.1977	14.6997	10.6684
+GO:0004825: [MF] methionine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0386921	0	0	0	0	0
+GO:0004825: [MF] methionine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.103382	0.0499327	0.275362	0.120169	0.143261
+GO:0004826: [MF] phenylalanine-tRNA ligase activity	44.7069	61.5136	54.7231	81.8029	83.5725	60.4386
+GO:0004826: [MF] phenylalanine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	1.97312	28.3832	22.7411	42.6145	37.7424	32.7753
+GO:0004826: [MF] phenylalanine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	42.5364	32.6279	31.8027	38.7024	45.6252	27.2614
+GO:0004826: [MF] phenylalanine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0434313	0	0.0540825	0	0	0
+GO:0004826: [MF] phenylalanine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.153869	0.502441	0.12517	0.486012	0.204919	0.40194
+GO:0004827: [MF] proline-tRNA ligase activity	24.4778	43.043	30.0157	75.9813	79.6589	72.7008
+GO:0004827: [MF] proline-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.52422	18.083	14.3411	44.9913	40.6442	43.3146
+GO:0004827: [MF] proline-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.8478	24.8163	15.5358	30.7611	38.8811	29.2867
+GO:0004827: [MF] proline-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0309634	0	0	0	0	0
+GO:0004827: [MF] proline-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0748079	0.143708	0.138837	0.228929	0.133603	0.0993774
+GO:0004828: [MF] serine-tRNA ligase activity	9.74398	22.8286	15.8953	49.0226	53.2104	47.3497
+GO:0004828: [MF] serine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.40476	16.8858	13.3064	39.3101	43.4919	37.9766
+GO:0004828: [MF] serine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	7.1783	5.77516	2.36222	9.40884	9.56265	9.14085
+GO:0004828: [MF] serine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0212417	0	0	0	0	0
+GO:0004828: [MF] serine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.139675	0.167605	0.22675	0.303739	0.15587	0.232323
+GO:0004829: [MF] threonine-tRNA ligase activity	54.6655	102.467	78.2368	132.35	135.064	92.6179
+GO:0004829: [MF] threonine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	4.03547	29.0893	18.9049	72.3296	67.5599	52.1923
+GO:0004829: [MF] threonine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	50.5135	73.2095	59.1197	59.8116	67.3875	40.0379
+GO:0004829: [MF] threonine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0499778	0	0	0
+GO:0004829: [MF] threonine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.116562	0.167885	0.162248	0.208735	0.117087	0.387776
+GO:0004830: [MF] tryptophan-tRNA ligase activity	16.3532	34.2073	20.8027	67.2916	69.0807	59.9526
+GO:0004830: [MF] tryptophan-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.31474	19.8864	9.66349	46.4333	46.0442	41.3628
+GO:0004830: [MF] tryptophan-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.7707	13.9259	10.8528	20.4638	22.8987	18.5213
+GO:0004830: [MF] tryptophan-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.113597	0	0	0	0	0
+GO:0004830: [MF] tryptophan-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.154209	0.395045	0.28638	0.39444	0.137792	0.0684291
+GO:0004831: [MF] tyrosine-tRNA ligase activity	2.45872	13.212	9.56417	32.9884	33.3056	26.5799
+GO:0004831: [MF] tyrosine-tRNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	0.924769	11.7781	8.03421	31.9374	31.988	25.6617
+GO:0004831: [MF] tyrosine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.46072	1.20339	1.41855	1.02027	1.26406	0.678696
+GO:0004831: [MF] tyrosine-tRNA ligase activity|g__Escherichia.s__Escherichia_coli	0.0432126	0	0	0	0	0
+GO:0004831: [MF] tyrosine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0300155	0.230474	0.111368	0.0307146	0.0535845	0.239437
+GO:0004832: [MF] valine-tRNA ligase activity	52.0385	32.3909	38.9705	29.6473	33.9471	26.5781
+GO:0004832: [MF] valine-tRNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	52.0003	32.0423	38.9351	29.4323	33.8191	26.451
+GO:0004832: [MF] valine-tRNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.038206	0.348559	0.0354536	0.215052	0.12796	0.127124
+GO:0004834: [MF] tryptophan synthase activity	34.9117	76.923	58.2156	250.47	200.231	184.541
+GO:0004834: [MF] tryptophan synthase activity|g__Clostridium.s__Clostridium_thermocellum	13.9437	68.4342	52.2207	236.363	182.933	178.752
+GO:0004834: [MF] tryptophan synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	19.9345	8.31616	5.76098	13.2171	16.6092	4.21343
+GO:0004834: [MF] tryptophan synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.03346	0.172599	0.233876	0.889778	0.688568	1.5761
+GO:0004837: [MF] tyrosine decarboxylase activity	0.0258109	0.148609	0	0.369296	0.115025	0
+GO:0004837: [MF] tyrosine decarboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0258109	0.148609	0	0.369296	0.115025	0
+GO:0004844: [MF] uracil DNA N-glycosylase activity	0.315126	0	0	0	0	0
+GO:0004844: [MF] uracil DNA N-glycosylase activity|g__Escherichia.s__Escherichia_coli	0.315126	0	0	0	0	0
+GO:0004845: [MF] uracil phosphoribosyltransferase activity	34.1021	103.989	100.679	183.391	180.233	210.061
+GO:0004845: [MF] uracil phosphoribosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	11.8634	81.0858	76.5841	171.093	169.026	196.382
+GO:0004845: [MF] uracil phosphoribosyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.1412	22.9034	23.9156	12.148	11.0766	13.6792
+GO:0004845: [MF] uracil phosphoribosyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0975079	0	0.179027	0.149818	0.130738	0
+GO:0004849: [MF] uridine kinase activity	25.3401	45.4046	25.477	28.4036	30.6211	29.9562
+GO:0004849: [MF] uridine kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	25.3401	45.4046	25.477	28.4036	30.6211	29.9562
+GO:0004850: [MF] uridine phosphorylase activity	0.0792312	0	0	0	0	0.105683
+GO:0004850: [MF] uridine phosphorylase activity|g__Escherichia.s__Escherichia_coli	0.0792312	0	0	0	0	0.105683
+GO:0004851: [MF] uroporphyrin-III C-methyltransferase activity	0.0653536	12.9279	8.00954	23.4066	22.693	32.3801
+GO:0004851: [MF] uroporphyrin-III C-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.0182523	12.9279	7.92212	23.4066	22.693	32.3801
+GO:0004851: [MF] uroporphyrin-III C-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0471013	0	0.0874161	0	0	0
+GO:0004852: [MF] uroporphyrinogen-III synthase activity	0.179631	12.9279	8.14323	23.4066	22.7285	32.3801
+GO:0004852: [MF] uroporphyrinogen-III synthase activity|g__Clostridium.s__Clostridium_thermocellum	0.0182523	12.9279	7.92212	23.4066	22.693	32.3801
+GO:0004852: [MF] uroporphyrinogen-III synthase activity|g__Escherichia.s__Escherichia_coli	0.0819776	0	0	0	0	0
+GO:0004852: [MF] uroporphyrinogen-III synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0794256	0	0.221111	0	0.0354626	0
+GO:0004853: [MF] uroporphyrinogen decarboxylase activity	0.42605	155.443	166.82	60.6048	59.1935	57.2473
+GO:0004853: [MF] uroporphyrinogen decarboxylase activity|g__Clostridium.s__Clostridium_thermocellum	0.42605	155.443	166.82	60.6048	59.1935	57.2473
+GO:0004854: [MF] xanthine dehydrogenase activity	0.048438	0	0	0	0	0.0720834
+GO:0004854: [MF] xanthine dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.048438	0	0	0	0	0.0720834
+GO:0004855: [MF] xanthine oxidase activity	0	0	0	0	0	0.0119007
+GO:0004855: [MF] xanthine oxidase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0119007
+GO:0004856: [MF] xylulokinase activity	0.0744919	0	0	0	0	0.0247716
+GO:0004856: [MF] xylulokinase activity|g__Escherichia.s__Escherichia_coli	0.0744919	0	0	0	0	0.0247716
+GO:0004866: [MF] endopeptidase inhibitor activity	0.00556563	0	0	0	0	0
+GO:0004866: [MF] endopeptidase inhibitor activity|g__Escherichia.s__Escherichia_coli	0.00556563	0	0	0	0	0
+GO:0004871: [MF] signal transducer activity	60.9528	103.371	115.392	454.711	436.335	388.923
+GO:0004871: [MF] signal transducer activity|g__Clostridium.s__Clostridium_thermocellum	24.3366	80.2366	90.3996	434.331	412.727	369.316
+GO:0004871: [MF] signal transducer activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	36.5893	23.1342	24.9425	20.3801	23.6085	19.4238
+GO:0004871: [MF] signal transducer activity|g__Escherichia.s__Escherichia_coli	0.0269046	0	0.0499327	0	0	0.183362
+GO:0004872: [MF] receptor activity	0.102053	0	0.306498	0	0	0.148791
+GO:0004872: [MF] receptor activity|g__Escherichia.s__Escherichia_coli	0.102053	0	0.306498	0	0	0.148791
+GO:0004984: [MF] olfactory receptor activity	0.361523	0	0.379841	0	0	0.0899345
+GO:0004984: [MF] olfactory receptor activity|g__Escherichia.s__Escherichia_coli	0.361523	0	0.379841	0	0	0.0899345
+GO:0005048: [MF] signal sequence binding	0.195599	0	0	0	0	0.13909
+GO:0005048: [MF] signal sequence binding|g__Escherichia.s__Escherichia_coli	0.195599	0	0	0	0	0.13909
+GO:0005198: [MF] structural molecule activity	46.1574	52.5408	54.2393	711.565	684.212	577.716
+GO:0005198: [MF] structural molecule activity|g__Clostridium.s__Clostridium_thermocellum	30.9275	52.5408	36.4512	711.565	684.212	559.164
+GO:0005198: [MF] structural molecule activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0268317	0	0	0	0	0
+GO:0005198: [MF] structural molecule activity|g__Escherichia.s__Escherichia_coli	15.2031	0	17.7881	0	0	18.552
+GO:0005215: [MF] transporter activity	1195.17	748.621	980.806	732.712	814.669	732.315
+GO:0005215: [MF] transporter activity|g__Clostridium.s__Clostridium_thermocellum	17.2173	69.7364	58.8712	236.604	218.35	146.78
+GO:0005215: [MF] transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1170.78	677.898	915.494	494.015	594.402	583.214
+GO:0005215: [MF] transporter activity|g__Escherichia.s__Escherichia_coli	4.18127	0	2.94355	0	0	1.10715
+GO:0005215: [MF] transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.99944	0.986914	3.49723	2.09404	1.91734	1.21358
+GO:0005216: [MF] ion channel activity	40.9234	80.209	60.8524	57.6281	71.0274	79.7315
+GO:0005216: [MF] ion channel activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	40.5509	80.209	60.3346	57.6281	71.0274	79.7315
+GO:0005216: [MF] ion channel activity|g__Escherichia.s__Escherichia_coli	0.372484	0	0.517821	0	0	0
+GO:0005247: [MF] voltage-gated chloride channel activity	6.62701	16.2138	12.5762	18.9522	21.7038	27.938
+GO:0005247: [MF] voltage-gated chloride channel activity|g__Clostridium.s__Clostridium_thermocellum	1.39583	11.857	9.61176	15.9613	18.6339	24.4157
+GO:0005247: [MF] voltage-gated chloride channel activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.19324	4.35679	2.96448	2.99088	3.06988	3.52225
+GO:0005247: [MF] voltage-gated chloride channel activity|g__Escherichia.s__Escherichia_coli	0.0379386	0	0	0	0	0
+GO:0005262: [MF] calcium channel activity	0.0880536	0	0	0	0	0
+GO:0005262: [MF] calcium channel activity|g__Escherichia.s__Escherichia_coli	0.0880536	0	0	0	0	0
+GO:0005267: [MF] potassium channel activity	0.0557049	0	0	0	0	0
+GO:0005267: [MF] potassium channel activity|g__Escherichia.s__Escherichia_coli	0.0557049	0	0	0	0	0
+GO:0005304: [MF] L-valine transmembrane transporter activity	0.26941	0	0	0	0	0
+GO:0005304: [MF] L-valine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.26941	0	0	0	0	0
+GO:0005315: [MF] inorganic phosphate transmembrane transporter activity	124.431	28.4383	22.8459	33.0951	39.2943	25.7227
+GO:0005315: [MF] inorganic phosphate transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	1.96736	3.66458	3.21293	1.37838	1.46176	2.78587
+GO:0005315: [MF] inorganic phosphate transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	121.811	23.8095	18.4492	31.11	37.3002	22.008
+GO:0005315: [MF] inorganic phosphate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.161598	0	0.310332	0	0	0.0718247
+GO:0005315: [MF] inorganic phosphate transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.491136	0.96423	0.873439	0.606732	0.532394	0.857013
+GO:0005328: [MF] neurotransmitter:sodium symporter activity	107.983	27.1758	41.6894	22.6594	27.5648	25.5205
+GO:0005328: [MF] neurotransmitter:sodium symporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	107.983	27.1758	41.6894	22.6594	27.5648	25.5205
+GO:0005337: [MF] nucleoside transmembrane transporter activity	0.0446465	0	0	0	0	0
+GO:0005337: [MF] nucleoside transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0446465	0	0	0	0	0
+GO:0005344: [MF] oxygen transporter activity	0.0466881	0	0	0	0	0
+GO:0005344: [MF] oxygen transporter activity|g__Escherichia.s__Escherichia_coli	0.0466881	0	0	0	0	0
+GO:0005345: [MF] purine nucleobase transmembrane transporter activity	13.3964	4.17556	5.65101	7.77604	5.76994	3.99521
+GO:0005345: [MF] purine nucleobase transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.3584	4.17556	5.65101	7.77604	5.76994	3.99521
+GO:0005345: [MF] purine nucleobase transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0379872	0	0	0	0	0
+GO:0005351: [MF] sugar:proton symporter activity	92.864	20.5231	28.6952	18.3597	14.3406	8.78741
+GO:0005351: [MF] sugar:proton symporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	92.4241	20.5231	28.3484	18.3597	14.3406	8.53233
+GO:0005351: [MF] sugar:proton symporter activity|g__Escherichia.s__Escherichia_coli	0.439879	0	0.346778	0	0	0.255089
+GO:0005354: [MF] galactose transmembrane transporter activity	0.0354596	0	0	0	0	0
+GO:0005354: [MF] galactose transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0354596	0	0	0	0	0
+GO:0005355: [MF] glucose transmembrane transporter activity	0.0756585	0	0.140506	0	0	0
+GO:0005355: [MF] glucose transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0756585	0	0.140506	0	0	0
+GO:0005363: [MF] maltose transmembrane transporter activity	134.162	63.4878	144.991	25.642	38.6514	48.4664
+GO:0005363: [MF] maltose transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	134.045	63.4878	144.991	25.642	38.6514	48.4664
+GO:0005363: [MF] maltose transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.116659	0	0	0	0	0
+GO:0005384: [MF] manganese ion transmembrane transporter activity	0.722244	3.44363	0.525489	9.5837	5.30007	9.28078
+GO:0005384: [MF] manganese ion transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	0.489095	3.44363	0.302709	9.39949	5.19327	9.04121
+GO:0005384: [MF] manganese ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.233124	0	0	0	0	0
+GO:0005384: [MF] manganese ion transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.222735	0.184213	0.106778	0.239534
+GO:0005385: [MF] zinc ion transmembrane transporter activity	0	0	0.113894	0	0	0.0774516
+GO:0005385: [MF] zinc ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0	0	0.113894	0	0	0.0774516
+GO:0005388: [MF] calcium-transporting ATPase activity	16.1674	20.2817	21.4531	24.7265	26.083	23.8316
+GO:0005388: [MF] calcium-transporting ATPase activity|g__Clostridium.s__Clostridium_thermocellum	1.39102	2.74772	3.00625	9.27501	10.5159	12.0989
+GO:0005388: [MF] calcium-transporting ATPase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.7153	17.3383	18.1821	15.2639	15.476	11.57
+GO:0005388: [MF] calcium-transporting ATPase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0610275	0.195702	0.264774	0.18762	0.0910003	0.162697
+GO:0005415: [MF] nucleoside:sodium symporter activity	0.0461534	0	0	0	0	0
+GO:0005415: [MF] nucleoside:sodium symporter activity|g__Escherichia.s__Escherichia_coli	0.0461534	0	0	0	0	0
+GO:0005451: [MF] monovalent cation:proton antiporter activity	172.359	36.0767	55.0211	48.2942	66.8379	40.1699
+GO:0005451: [MF] monovalent cation:proton antiporter activity|g__Clostridium.s__Clostridium_thermocellum	0.298211	3.37077	2.55194	7.38812	7.07064	9.19162
+GO:0005451: [MF] monovalent cation:proton antiporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	172.061	32.706	52.4692	40.9061	59.7672	30.9783
+GO:0005506: [MF] iron ion binding	5874.12	17413.2	14153.7	12261.8	11036.2	16106.8
+GO:0005506: [MF] iron ion binding|g__Clostridium.s__Clostridium_thermocellum	153.719	2243.4	1268.9	6534.09	4641.59	8242.74
+GO:0005506: [MF] iron ion binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5715.6	15150.5	12874.2	5720.03	6389.76	7852.8
+GO:0005506: [MF] iron ion binding|g__Escherichia.s__Escherichia_coli	1.76977	0	1.52897	0	0	0.691244
+GO:0005506: [MF] iron ion binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.03361	19.3303	9.12389	7.69832	4.90158	10.6172
+GO:0005507: [MF] copper ion binding	67.6057	301.665	233.029	566.94	443.035	727.419
+GO:0005507: [MF] copper ion binding|g__Clostridium.s__Clostridium_thermocellum	16.9333	234.828	152.623	532.191	394.881	686.647
+GO:0005507: [MF] copper ion binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	50.2588	66.8372	80.2765	34.749	48.1546	40.7722
+GO:0005507: [MF] copper ion binding|g__Escherichia.s__Escherichia_coli	0.413679	0	0.128824	0	0	0
+GO:0005509: [MF] calcium ion binding	9.88152	32.1759	28.4955	95.7609	100.804	178.511
+GO:0005509: [MF] calcium ion binding|g__Clostridium.s__Clostridium_thermocellum	8.36538	31.6643	27.2588	94.0011	100.804	175.611
+GO:0005509: [MF] calcium ion binding|g__Escherichia.s__Escherichia_coli	0.447705	0	0.245379	0	0	0.040844
+GO:0005509: [MF] calcium ion binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.06843	0.511636	0.991347	1.75981	0	2.85895
+GO:0005524: [MF] ATP binding	6951.27	8938.68	8619.61	14082.9	14015.8	13349.4
+GO:0005524: [MF] ATP binding|g__Clostridium.s__Clostridium_thermocellum	668.581	4222.52	3620.11	10383.3	9584.47	9867.57
+GO:0005524: [MF] ATP binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6241.98	4663.37	4935.41	3656.83	4405.54	3431.7
+GO:0005524: [MF] ATP binding|g__Escherichia.s__Escherichia_coli	15.6811	0	11.4563	0	0	4.07425
+GO:0005524: [MF] ATP binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	25.0222	52.7989	52.6346	42.7274	25.8365	46.0619
+GO:0005525: [MF] GTP binding	853.89	1346.5	1126.04	2949.18	2759.84	2509.89
+GO:0005525: [MF] GTP binding|g__Clostridium.s__Clostridium_thermocellum	123.793	759.52	591.357	2382.52	2088.79	1951.49
+GO:0005525: [MF] GTP binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	716.148	568.669	518.586	553.919	664.223	544.29
+GO:0005525: [MF] GTP binding|g__Escherichia.s__Escherichia_coli	1.19423	0	0.246416	0	0	0.607486
+GO:0005525: [MF] GTP binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	12.755	18.3124	15.8513	12.7497	6.82856	13.4991
+GO:0005528: [MF] FK506 binding	0.103098	0	0	0	0	0
+GO:0005528: [MF] FK506 binding|g__Escherichia.s__Escherichia_coli	0.103098	0	0	0	0	0
+GO:0005534: [MF] galactose binding	0.120475	0	0	0	0	0
+GO:0005534: [MF] galactose binding|g__Escherichia.s__Escherichia_coli	0.120475	0	0	0	0	0
+GO:0005542: [MF] folic acid binding	38.7195	12.9166	45.4751	2.07255	4.42169	4.76219
+GO:0005542: [MF] folic acid binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	38.7195	12.9166	45.4751	2.07255	4.42169	4.76219
+GO:0005543: [MF] phospholipid binding	0.0500177	0	0	0	0	0
+GO:0005543: [MF] phospholipid binding|g__Escherichia.s__Escherichia_coli	0.0500177	0	0	0	0	0
+GO:0005576: [CC] extracellular region	340.205	372.778	282.298	1781.39	1626.05	1512.43
+GO:0005576: [CC] extracellular region|g__Clostridium.s__Clostridium_thermocellum	293.909	328.271	236.851	1717.31	1559.56	1479.13
+GO:0005576: [CC] extracellular region|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	45.8685	44.4224	44.6618	63.8743	66.3513	33.0344
+GO:0005576: [CC] extracellular region|g__Escherichia.s__Escherichia_coli	0.339819	0	0.539923	0	0	0.146075
+GO:0005576: [CC] extracellular region|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0882966	0.0847593	0.245785	0.20289	0.137987	0.117487
+GO:0005615: [CC] extracellular space	21.1215	23.8639	28.1497	73.8584	64.2893	81.3199
+GO:0005615: [CC] extracellular space|g__Clostridium.s__Clostridium_thermocellum	21.1215	23.8639	28.1497	73.8584	64.2893	81.3199
+GO:0005618: [CC] cell wall	132.307	77.6562	63.5617	206.377	177.666	187.091
+GO:0005618: [CC] cell wall|g__Clostridium.s__Clostridium_thermocellum	58.3023	60.8564	38.5172	189.43	159.686	175.613
+GO:0005618: [CC] cell wall|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	74.0045	16.7998	24.9959	16.9468	17.98	11.4782
+GO:0005618: [CC] cell wall|g__Escherichia.s__Escherichia_coli	0	0	0.0486698	0	0	0
+GO:0005622: [CC] intracellular	538.501	1148.51	1009.22	2743.03	2636.16	2917.84
+GO:0005622: [CC] intracellular|g__Clostridium.s__Clostridium_thermocellum	132.043	788.868	654.215	2413.11	2201.76	2558.55
+GO:0005622: [CC] intracellular|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	396.371	348.407	342.571	323.733	430.333	351.441
+GO:0005622: [CC] intracellular|g__Escherichia.s__Escherichia_coli	3.24709	0	3.39389	0	0	1.06178
+GO:0005622: [CC] intracellular|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	6.84006	11.2381	9.03548	6.18192	4.06014	6.78221
+GO:0005623: [CC] cell	479.165	1507.19	1309.31	2939.1	2339.74	3282.34
+GO:0005623: [CC] cell|g__Clostridium.s__Clostridium_thermocellum	88.1108	924.788	694.045	2432.89	1850.63	2920.54
+GO:0005623: [CC] cell|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	388.909	578.737	611.484	503.053	488.245	359.539
+GO:0005623: [CC] cell|g__Escherichia.s__Escherichia_coli	0.197422	0	0.430134	0	0	0.197785
+GO:0005623: [CC] cell|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.94768	3.66673	3.34743	3.15848	0.862539	2.06917
+GO:0005634: [CC] nucleus	53.4779	54.7495	42.6241	62.2203	69.7192	37.1381
+GO:0005634: [CC] nucleus|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	53.4174	54.7495	42.6241	62.2203	69.7192	37.1381
+GO:0005634: [CC] nucleus|g__Escherichia.s__Escherichia_coli	0.0604685	0	0	0	0	0
+GO:0005654: [CC] nucleoplasm	0.0696311	0	0	0	0	0
+GO:0005654: [CC] nucleoplasm|g__Escherichia.s__Escherichia_coli	0.0696311	0	0	0	0	0
+GO:0005663: [CC] DNA replication factor C complex	0.208456	0.343191	0.165811	0.121913	0	0.0792626
+GO:0005663: [CC] DNA replication factor C complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.208456	0.343191	0.165811	0.121913	0	0.0792626
+GO:0005694: [CC] chromosome	70.6628	126.812	107.326	255.231	225.563	280.39
+GO:0005694: [CC] chromosome|g__Clostridium.s__Clostridium_thermocellum	8.53879	55.9786	38.6122	163.38	154.983	150.966
+GO:0005694: [CC] chromosome|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	44.4792	32.5295	35.4333	25.4426	27.668	20.7157
+GO:0005694: [CC] chromosome|g__Escherichia.s__Escherichia_coli	0.0976294	0	0.114796	0	0	0
+GO:0005694: [CC] chromosome|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	17.5473	38.3043	33.1655	66.4082	42.9125	108.709
+GO:0005727: [CC] extrachromosomal circular DNA	1.43433	2.35258	0.965682	8.286	8.61521	9.87154
+GO:0005727: [CC] extrachromosomal circular DNA|g__Clostridium.s__Clostridium_thermocellum	0.581474	2.15609	0.744119	8.17548	8.58474	9.69756
+GO:0005727: [CC] extrachromosomal circular DNA|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.852854	0.196496	0.221562	0.110523	0.0304709	0.173983
+GO:0005732: [CC] small nucleolar ribonucleoprotein complex	0	0	0.939701	0.259072	1.13035	1.35099
+GO:0005732: [CC] small nucleolar ribonucleoprotein complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.939701	0.259072	1.13035	1.35099
+GO:0005737: [CC] cytoplasm	8058.43	14128.3	11974.4	24476.2	23752.4	24718.1
+GO:0005737: [CC] cytoplasm|g__Clostridium.s__Clostridium_thermocellum	985.983	6608.65	5079	19084.7	17596.7	19520.9
+GO:0005737: [CC] cytoplasm|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6993.36	7420.77	6786.41	5266.17	6079.37	5006.29
+GO:0005737: [CC] cytoplasm|g__Escherichia.s__Escherichia_coli	23.9069	0	16.5238	0	0	7.01042
+GO:0005737: [CC] cytoplasm|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	55.1781	98.9129	92.464	125.369	76.4117	183.928
+GO:0005739: [CC] mitochondrion	106.066	189.808	199.703	249.799	268.275	227.942
+GO:0005739: [CC] mitochondrion|g__Clostridium.s__Clostridium_thermocellum	7.66837	77.5821	79.0071	174.263	170.678	151.519
+GO:0005739: [CC] mitochondrion|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	98.2272	112.226	120.696	75.5362	97.5968	76.4232
+GO:0005739: [CC] mitochondrion|g__Escherichia.s__Escherichia_coli	0.170785	0	0	0	0	0
+GO:0005759: [CC] mitochondrial matrix	8.8536	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0005759: [CC] mitochondrial matrix|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.8536	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0005774: [CC] vacuolar membrane	54.7538	136.348	154.791	135.119	153.925	144.864
+GO:0005774: [CC] vacuolar membrane|g__Clostridium.s__Clostridium_thermocellum	4.49499	69.5112	74.5146	100.37	105.77	104.092
+GO:0005774: [CC] vacuolar membrane|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	50.2588	66.8372	80.2765	34.749	48.1546	40.7722
+GO:0005794: [CC] Golgi apparatus	0.671715	0	0.259948	0	0	0.372512
+GO:0005794: [CC] Golgi apparatus|g__Escherichia.s__Escherichia_coli	0.671715	0	0.259948	0	0	0.372512
+GO:0005829: [CC] cytosol	121.296	154.329	131.033	189.031	203.756	153.104
+GO:0005829: [CC] cytosol|g__Clostridium.s__Clostridium_thermocellum	3.00658	12.4897	8.87391	37.1361	31.9694	34.2708
+GO:0005829: [CC] cytosol|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	109.435	140.819	117.508	151.182	171.195	116.262
+GO:0005829: [CC] cytosol|g__Escherichia.s__Escherichia_coli	7.85879	0	3.78799	0	0	0.892068
+GO:0005829: [CC] cytosol|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.996102	1.02038	0.8632	0.713151	0.591752	1.67855
+GO:0005839: [CC] proteasome core complex	0	0	0	0	0	0.0846632
+GO:0005839: [CC] proteasome core complex|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0846632
+GO:0005840: [CC] ribosome	7172.27	14550.4	9680.88	30300	29162.6	32333.5
+GO:0005840: [CC] ribosome|g__Clostridium.s__Clostridium_thermocellum	959.595	6562.61	3724.93	21562.6	19472.5	24544.6
+GO:0005840: [CC] ribosome|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6192.78	7926.41	5879.11	8665.98	9644.44	7719.84
+GO:0005840: [CC] ribosome|g__Escherichia.s__Escherichia_coli	1.12873	0	1.46496	0	0	0.376134
+GO:0005840: [CC] ribosome|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	18.7646	61.3356	75.3705	71.4628	45.7015	68.7738
+GO:0005850: [CC] eukaryotic translation initiation factor 2 complex	0.152143	0.584354	0.771138	1.63459	0.610243	1.61856
+GO:0005850: [CC] eukaryotic translation initiation factor 2 complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.152143	0.584354	0.771138	1.63459	0.610243	1.61856
+GO:0005853: [CC] eukaryotic translation elongation factor 1 complex	0	0.777909	1.12766	1.03626	0.542573	3.41159
+GO:0005853: [CC] eukaryotic translation elongation factor 1 complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.777909	1.12766	1.03626	0.542573	3.41159
+GO:0005856: [CC] cytoskeleton	0.109563	0	0	0	0	0.0979868
+GO:0005856: [CC] cytoskeleton|g__Escherichia.s__Escherichia_coli	0.109563	0	0	0	0	0.0979868
+GO:0005886: [CC] plasma membrane	4863.04	5694.9	5702.85	9333.8	8923.11	8768.45
+GO:0005886: [CC] plasma membrane|g__Clostridium.s__Clostridium_thermocellum	492.7	3557.13	2899.24	7712.37	6980.17	7083.11
+GO:0005886: [CC] plasma membrane|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4290.66	2112.84	2738.14	1586.98	1917.18	1633.44
+GO:0005886: [CC] plasma membrane|g__Escherichia.s__Escherichia_coli	51.0862	0	31.7927	0	0	11.8175
+GO:0005886: [CC] plasma membrane|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	28.5951	24.9259	33.6733	34.4447	25.7645	40.0812
+GO:0005887: [CC] integral component of plasma membrane	438.201	467.88	438.372	1440.93	1261.75	1036.19
+GO:0005887: [CC] integral component of plasma membrane|g__Clostridium.s__Clostridium_thermocellum	117.594	311.556	245.204	1303.01	1103.9	872.939
+GO:0005887: [CC] integral component of plasma membrane|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	313.718	156.058	188.787	137.54	157.787	160.56
+GO:0005887: [CC] integral component of plasma membrane|g__Escherichia.s__Escherichia_coli	6.88925	0	4.25195	0	0	2.21809
+GO:0005887: [CC] integral component of plasma membrane|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.265573	0.128418	0.383746	0.0618316	0.468688
+GO:0005948: [CC] acetolactate synthase complex	0.0631662	0	0	0	0	0
+GO:0005948: [CC] acetolactate synthase complex|g__Escherichia.s__Escherichia_coli	0.0631662	0	0	0	0	0
+GO:0005960: [CC] glycine cleavage complex	105.413	141.085	135.216	134.739	162.845	110.604
+GO:0005960: [CC] glycine cleavage complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	105.413	141.085	135.216	134.739	162.845	110.604
+GO:0005971: [CC] ribonucleoside-diphosphate reductase complex	0.0600067	0	0	0	0	0
+GO:0005971: [CC] ribonucleoside-diphosphate reductase complex|g__Escherichia.s__Escherichia_coli	0.0600067	0	0	0	0	0
+GO:0005975: [BP] carbohydrate metabolic process	947.836	969.31	1095.73	1397.46	1346.14	1339.64
+GO:0005975: [BP] carbohydrate metabolic process|g__Clostridium.s__Clostridium_thermocellum	126.47	361.161	325.987	955.177	847.176	910.707
+GO:0005975: [BP] carbohydrate metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	672.536	603.786	700.263	437.905	496.515	409.395
+GO:0005975: [BP] carbohydrate metabolic process|g__Escherichia.s__Escherichia_coli	145.99	0	66.1159	0	0	15.6679
+GO:0005975: [BP] carbohydrate metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.83961	4.36361	3.36209	4.37366	2.45349	3.87423
+GO:0005977: [BP] glycogen metabolic process	0.0251304	0	0	0	0	0
+GO:0005977: [BP] glycogen metabolic process|g__Escherichia.s__Escherichia_coli	0.0251304	0	0	0	0	0
+GO:0005978: [BP] glycogen biosynthetic process	175.94	175.654	166.916	367.022	387.726	338.291
+GO:0005978: [BP] glycogen biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	6.04374	39.584	28.5428	256.93	251.996	223.186
+GO:0005978: [BP] glycogen biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	169.299	136.07	138.294	110.092	135.73	115.105
+GO:0005978: [BP] glycogen biosynthetic process|g__Escherichia.s__Escherichia_coli	0.596932	0	0.0787106	0	0	0
+GO:0005980: [BP] glycogen catabolic process	1.2328	8.18431	6.26527	29.6421	28.7723	30.4393
+GO:0005980: [BP] glycogen catabolic process|g__Clostridium.s__Clostridium_thermocellum	1.08846	8.18431	6.03654	29.6421	28.7723	30.4393
+GO:0005980: [BP] glycogen catabolic process|g__Escherichia.s__Escherichia_coli	0.144317	0	0.228779	0	0	0
+GO:0005985: [BP] sucrose metabolic process	0	0	0.165946	0	0	0
+GO:0005985: [BP] sucrose metabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.165946	0	0	0
+GO:0005988: [BP] lactose metabolic process	134.941	134.531	133.368	207.117	206.169	216.128
+GO:0005988: [BP] lactose metabolic process|g__Clostridium.s__Clostridium_thermocellum	9.86686	28.7165	21.6438	133.033	107.045	143.081
+GO:0005988: [BP] lactose metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	125.074	105.814	111.725	74.0842	99.1241	73.0471
+GO:0005991: [BP] trehalose metabolic process	0.13044	0	0.0219217	0	0	0
+GO:0005991: [BP] trehalose metabolic process|g__Escherichia.s__Escherichia_coli	0.13044	0	0.0219217	0	0	0
+GO:0005992: [BP] trehalose biosynthetic process	0.32249	0.35626	0.139198	0.151235	0.0672356	0.0482173
+GO:0005992: [BP] trehalose biosynthetic process|g__Escherichia.s__Escherichia_coli	0.159945	0	0	0	0	0
+GO:0005992: [BP] trehalose biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.162546	0.35626	0.139198	0.151235	0.0672356	0.0482173
+GO:0005993: [BP] trehalose catabolic process	0.0972162	0	0.200904	0	0	0
+GO:0005993: [BP] trehalose catabolic process|g__Escherichia.s__Escherichia_coli	0.0972162	0	0.200904	0	0	0
+GO:0005995: [BP] melibiose catabolic process	0.0402961	0	0	0	0	0
+GO:0005995: [BP] melibiose catabolic process|g__Escherichia.s__Escherichia_coli	0.0402961	0	0	0	0	0
+GO:0005996: [BP] monosaccharide metabolic process	22.5745	29.4038	22.4566	57.7658	59.2636	72.2278
+GO:0005996: [BP] monosaccharide metabolic process|g__Clostridium.s__Clostridium_thermocellum	8.9723	20.5811	17.6418	48.8933	48.7887	64.0767
+GO:0005996: [BP] monosaccharide metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.6022	8.82271	4.81488	8.87252	10.4749	8.15105
+GO:0005998: [BP] xylulose catabolic process	0.0744919	0	0	0	0	0.0247716
+GO:0005998: [BP] xylulose catabolic process|g__Escherichia.s__Escherichia_coli	0.0744919	0	0	0	0	0.0247716
+GO:0005999: [BP] xylulose biosynthetic process	0.0604685	0	0	0	0	0
+GO:0005999: [BP] xylulose biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0604685	0	0	0	0	0
+GO:0006000: [BP] fructose metabolic process	0	0	0.33947	0	0	0
+GO:0006000: [BP] fructose metabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.33947	0	0	0
+GO:0006002: [BP] fructose 6-phosphate metabolic process	246.302	427.652	315.56	632.778	655.397	447.485
+GO:0006002: [BP] fructose 6-phosphate metabolic process|g__Clostridium.s__Clostridium_thermocellum	12.712	116.88	72.6404	379.328	344.769	269.537
+GO:0006002: [BP] fructose 6-phosphate metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	233.381	310.772	242.865	253.449	310.629	177.948
+GO:0006002: [BP] fructose 6-phosphate metabolic process|g__Escherichia.s__Escherichia_coli	0.209744	0	0.0554808	0	0	0
+GO:0006004: [BP] fucose metabolic process	0.0410252	0	0	0	0	0.166448
+GO:0006004: [BP] fucose metabolic process|g__Escherichia.s__Escherichia_coli	0.0410252	0	0	0	0	0.166448
+GO:0006006: [BP] glucose metabolic process	104.632	637.673	465.469	1237.27	1346.32	1102.79
+GO:0006006: [BP] glucose metabolic process|g__Clostridium.s__Clostridium_thermocellum	28.2254	362.751	253.872	1053.85	1079.39	914.434
+GO:0006006: [BP] glucose metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	75.8646	274.922	211.047	183.353	266.927	188.019
+GO:0006006: [BP] glucose metabolic process|g__Escherichia.s__Escherichia_coli	0.474585	0	0.298424	0	0	0.247878
+GO:0006006: [BP] glucose metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.067784	0	0.251558	0.0693628	0	0.0901932
+GO:0006007: [BP] glucose catabolic process	4.45241	74.3333	74.8652	106.757	98.0077	79.9185
+GO:0006007: [BP] glucose catabolic process|g__Clostridium.s__Clostridium_thermocellum	4.40013	74.3333	74.8652	106.757	98.0077	79.9185
+GO:0006007: [BP] glucose catabolic process|g__Escherichia.s__Escherichia_coli	0.052278	0	0	0	0	0
+GO:0006011: [BP] UDP-glucose metabolic process	3.5055	17.7693	10.0443	40.7912	36.3595	50.4016
+GO:0006011: [BP] UDP-glucose metabolic process|g__Clostridium.s__Clostridium_thermocellum	3.00262	16.584	8.70638	40.1594	35.961	49.9037
+GO:0006011: [BP] UDP-glucose metabolic process|g__Escherichia.s__Escherichia_coli	0.0913346	0	0	0	0	0.0869269
+GO:0006011: [BP] UDP-glucose metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.411541	1.18523	1.3379	0.63185	0.398466	0.410963
+GO:0006012: [BP] galactose metabolic process	12.3962	41.236	28.5777	62.4172	73.4257	69.7664
+GO:0006012: [BP] galactose metabolic process|g__Clostridium.s__Clostridium_thermocellum	2.6548	27.3309	23.0112	46.6437	55.0428	57.194
+GO:0006012: [BP] galactose metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.59595	13.7924	5.45755	15.3531	18.278	12.0259
+GO:0006012: [BP] galactose metabolic process|g__Escherichia.s__Escherichia_coli	0.0280226	0	0	0	0	0
+GO:0006012: [BP] galactose metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.117413	0.11267	0.108932	0.420429	0.104868	0.546495
+GO:0006013: [BP] mannose metabolic process	0	0	0	0	0	0.0327593
+GO:0006013: [BP] mannose metabolic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0327593
+GO:0006014: [BP] D-ribose metabolic process	1.80616	2.57876	3.79218	1.50907	1.03469	2.63358
+GO:0006014: [BP] D-ribose metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.484137	1.66564	2.81522	0.0990826	0.4323	1.37424
+GO:0006014: [BP] D-ribose metabolic process|g__Escherichia.s__Escherichia_coli	0.217351	0	0	0	0	0
+GO:0006014: [BP] D-ribose metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.10464	0.913123	0.976913	1.40999	0.602386	1.25934
+GO:0006015: [BP] 5-phosphoribose 1-diphosphate biosynthetic process	41.3011	78.7633	62.2322	177.363	186.294	171.625
+GO:0006015: [BP] 5-phosphoribose 1-diphosphate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	8.49303	51.9047	43.1504	140.288	142.991	139.676
+GO:0006015: [BP] 5-phosphoribose 1-diphosphate biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.7395	26.4632	18.8907	36.513	43.2726	31.3404
+GO:0006015: [BP] 5-phosphoribose 1-diphosphate biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.060215
+GO:0006015: [BP] 5-phosphoribose 1-diphosphate biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0685617	0.395372	0.191116	0.56194	0.0306445	0.548177
+GO:0006021: [BP] inositol biosynthetic process	0.152362	0.292504	0.471046	1.14353	0.702936	2.02296
+GO:0006021: [BP] inositol biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.152362	0.292504	0.471046	1.14353	0.702936	2.02296
+GO:0006024: [BP] glycosaminoglycan biosynthetic process	0.0682701	0.087373	0.168878	0.0465817	0	0.121109
+GO:0006024: [BP] glycosaminoglycan biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0682701	0.087373	0.168878	0.0465817	0	0.121109
+GO:0006032: [BP] chitin catabolic process	5.29947	8.80582	9.09723	23.3712	19.9315	20.0054
+GO:0006032: [BP] chitin catabolic process|g__Clostridium.s__Clostridium_thermocellum	5.29947	8.80582	9.09723	23.3712	19.9315	20.0054
+GO:0006044: [BP] N-acetylglucosamine metabolic process	94.0114	40.6153	65.1811	32.2884	37.6936	35.1103
+GO:0006044: [BP] N-acetylglucosamine metabolic process|g__Clostridium.s__Clostridium_thermocellum	1.20035	4.47483	3.62673	11.2753	13.3918	13.4697
+GO:0006044: [BP] N-acetylglucosamine metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	92.503	36.1405	61.5543	21.013	24.3019	21.5417
+GO:0006044: [BP] N-acetylglucosamine metabolic process|g__Escherichia.s__Escherichia_coli	0.308054	0	0	0	0	0.0988923
+GO:0006047: [BP] UDP-N-acetylglucosamine metabolic process	41.9718	61.1861	61.2957	87.8383	94.632	92.6222
+GO:0006047: [BP] UDP-N-acetylglucosamine metabolic process|g__Clostridium.s__Clostridium_thermocellum	2.92271	22.322	22.6089	55.7991	61.8888	59.941
+GO:0006047: [BP] UDP-N-acetylglucosamine metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	38.8843	38.8641	37.9197	31.6798	32.5771	32.4612
+GO:0006047: [BP] UDP-N-acetylglucosamine metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.16483	0	0.767079	0.359498	0.166049	0.219937
+GO:0006048: [BP] UDP-N-acetylglucosamine biosynthetic process	23.3776	49.8183	39.4291	131.32	129.622	104.529
+GO:0006048: [BP] UDP-N-acetylglucosamine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	6.26833	35.7007	27.2547	96.8199	94.1636	84.6506
+GO:0006048: [BP] UDP-N-acetylglucosamine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.0894	14.1176	12.1005	34.4997	35.4584	19.8786
+GO:0006048: [BP] UDP-N-acetylglucosamine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.019905	0	0.0738842	0	0	0
+GO:0006062: [BP] sorbitol catabolic process	0.0770925	0	0	0	0	0
+GO:0006062: [BP] sorbitol catabolic process|g__Escherichia.s__Escherichia_coli	0.0770925	0	0	0	0	0
+GO:0006064: [BP] glucuronate catabolic process	0.057309	0	0.0705914	0	0	0
+GO:0006064: [BP] glucuronate catabolic process|g__Escherichia.s__Escherichia_coli	0.057309	0	0.0705914	0	0	0
+GO:0006065: [BP] UDP-glucuronate biosynthetic process	0.143394	0	0	0	0	0.0636106
+GO:0006065: [BP] UDP-glucuronate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.143394	0	0	0	0	0.0636106
+GO:0006066: [BP] alcohol metabolic process	0.677937	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0006066: [BP] alcohol metabolic process|g__Clostridium.s__Clostridium_thermocellum	0.658664	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0006066: [BP] alcohol metabolic process|g__Escherichia.s__Escherichia_coli	0.0192731	0	0	0	0	0
+GO:0006068: [BP] ethanol catabolic process	0.0328591	0	0	0	0	0
+GO:0006068: [BP] ethanol catabolic process|g__Escherichia.s__Escherichia_coli	0.0328591	0	0	0	0	0
+GO:0006069: [BP] ethanol oxidation	0	0	0.0939565	0	0	0.0336971
+GO:0006069: [BP] ethanol oxidation|g__Escherichia.s__Escherichia_coli	0	0	0.0939565	0	0	0.0336971
+GO:0006071: [BP] glycerol metabolic process	44.5777	40.5883	39.2958	39.6642	46.5421	34.2398
+GO:0006071: [BP] glycerol metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	44.0015	40.5883	39.0635	39.6642	46.5421	34.0083
+GO:0006071: [BP] glycerol metabolic process|g__Escherichia.s__Escherichia_coli	0.576176	0	0.232298	0	0	0.231449
+GO:0006072: [BP] glycerol-3-phosphate metabolic process	0.0716727	0	0.0664868	0	0	0
+GO:0006072: [BP] glycerol-3-phosphate metabolic process|g__Escherichia.s__Escherichia_coli	0.0716727	0	0.0664868	0	0	0
+GO:0006080: [BP] substituted mannan metabolic process	41.2293	46.4253	52.9957	128.966	117.098	135.834
+GO:0006080: [BP] substituted mannan metabolic process|g__Clostridium.s__Clostridium_thermocellum	41.2293	46.4253	52.9957	128.966	117.098	135.834
+GO:0006081: [BP] cellular aldehyde metabolic process	0.229819	2.94146	1.49279	7.42607	6.99288	7.20601
+GO:0006081: [BP] cellular aldehyde metabolic process|g__Clostridium.s__Clostridium_thermocellum	0.229819	2.94146	1.49279	7.42607	6.99288	7.20601
+GO:0006082: [BP] organic acid metabolic process	37.1161	74.8308	75.5669	124.392	124.077	86.9996
+GO:0006082: [BP] organic acid metabolic process|g__Clostridium.s__Clostridium_thermocellum	4.97497	31.7717	26.5377	74.1942	75.7388	54.5204
+GO:0006082: [BP] organic acid metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.0488	43.0591	49.0291	50.1978	48.3386	32.4178
+GO:0006082: [BP] organic acid metabolic process|g__Escherichia.s__Escherichia_coli	0.0923068	0	0	0	0	0.0613792
+GO:0006084: [BP] acetyl-CoA metabolic process	14.0943	4.95529	3.92538	3.36824	3.95503	3.26067
+GO:0006084: [BP] acetyl-CoA metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.8095	4.95529	3.92538	3.07335	3.79558	3.06634
+GO:0006084: [BP] acetyl-CoA metabolic process|g__Escherichia.s__Escherichia_coli	0.201335	0	0	0	0	0.0829169
+GO:0006084: [BP] acetyl-CoA metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0834844	0	0	0.294885	0.159451	0.11144
+GO:0006085: [BP] acetyl-CoA biosynthetic process	40.9424	100.998	99.6889	174.192	180.378	160.964
+GO:0006085: [BP] acetyl-CoA biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	8.80132	57.9387	50.6598	123.994	132.039	128.484
+GO:0006085: [BP] acetyl-CoA biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.0488	43.0591	49.0291	50.1978	48.3386	32.4178
+GO:0006085: [BP] acetyl-CoA biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0923068	0	0	0	0	0.0613792
+GO:0006089: [BP] lactate metabolic process	0.0156518	0	0	0	0	0
+GO:0006089: [BP] lactate metabolic process|g__Escherichia.s__Escherichia_coli	0.0156518	0	0	0	0	0
+GO:0006090: [BP] pyruvate metabolic process	56.1077	66.7072	56.2292	112.003	114.077	78.6596
+GO:0006090: [BP] pyruvate metabolic process|g__Clostridium.s__Clostridium_thermocellum	2.59281	11.6392	13.25	49.2864	44.0848	41.199
+GO:0006090: [BP] pyruvate metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	53.4174	54.7495	42.6241	62.2203	69.7192	37.1381
+GO:0006090: [BP] pyruvate metabolic process|g__Escherichia.s__Escherichia_coli	0.046445	0	0	0	0	0
+GO:0006090: [BP] pyruvate metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0510385	0.318407	0.355077	0.495985	0.273435	0.322516
+GO:0006091: [BP] generation of precursor metabolites and energy	0.130416	31.3103	29.1451	43.3765	37.6878	33.5279
+GO:0006091: [BP] generation of precursor metabolites and energy|g__Clostridium.s__Clostridium_thermocellum	0.130416	31.3103	29.1451	43.3765	37.6878	33.5279
+GO:0006094: [BP] gluconeogenesis	328.426	775.818	616.861	1006.98	1007.52	837.492
+GO:0006094: [BP] gluconeogenesis|g__Clostridium.s__Clostridium_thermocellum	12.7286	181.224	162.281	648.555	592.409	530.483
+GO:0006094: [BP] gluconeogenesis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	314.784	592.819	453.248	357.14	413.998	305.421
+GO:0006094: [BP] gluconeogenesis|g__Escherichia.s__Escherichia_coli	0.241582	0	0.0742451	0	0	0.0216994
+GO:0006094: [BP] gluconeogenesis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.671837	1.77439	1.25693	1.28133	1.11416	1.56608
+GO:0006096: [BP] glycolytic process	470.582	1952.13	1504.62	3132.26	3340.02	2733.8
+GO:0006096: [BP] glycolytic process|g__Clostridium.s__Clostridium_thermocellum	50.7733	801.418	588.203	2284.02	2295.85	2088.11
+GO:0006096: [BP] glycolytic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	418.009	1148.82	915.105	846.277	1043.22	643.776
+GO:0006096: [BP] glycolytic process|g__Escherichia.s__Escherichia_coli	0.555858	0	0.0707719	0	0	0.0716306
+GO:0006096: [BP] glycolytic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.24412	1.88729	1.24516	1.95952	0.947571	1.83782
+GO:0006097: [BP] glyoxylate cycle	3.0303	47.411	33.0119	119.773	121.21	121.857
+GO:0006097: [BP] glyoxylate cycle|g__Clostridium.s__Clostridium_thermocellum	2.4552	47.411	32.8214	119.773	121.21	121.8
+GO:0006097: [BP] glyoxylate cycle|g__Escherichia.s__Escherichia_coli	0.575107	0	0.190484	0	0	0.0569164
+GO:0006098: [BP] pentose-phosphate shunt	267.449	668.4	674.864	935.061	917.293	901.64
+GO:0006098: [BP] pentose-phosphate shunt|g__Clostridium.s__Clostridium_thermocellum	32.0239	217.092	182.216	663.372	640.793	678.726
+GO:0006098: [BP] pentose-phosphate shunt|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	235.056	450.62	492.149	271.598	276.218	222.433
+GO:0006098: [BP] pentose-phosphate shunt|g__Escherichia.s__Escherichia_coli	0.189086	0	0.498921	0	0	0.1225
+GO:0006098: [BP] pentose-phosphate shunt|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.179947	0.688949	0	0.0920195	0.281335	0.359091
+GO:0006099: [BP] tricarboxylic acid cycle	4.10957	48.1234	33.3376	120.67	121.938	122.251
+GO:0006099: [BP] tricarboxylic acid cycle|g__Clostridium.s__Clostridium_thermocellum	2.4552	47.411	32.8214	119.773	121.21	121.8
+GO:0006099: [BP] tricarboxylic acid cycle|g__Escherichia.s__Escherichia_coli	0.908024	0	0.124674	0	0	0.125119
+GO:0006099: [BP] tricarboxylic acid cycle|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.746353	0.712379	0.391478	0.896792	0.728958	0.325071
+GO:0006102: [BP] isocitrate metabolic process	2.4552	47.411	32.8214	119.773	121.21	121.8
+GO:0006102: [BP] isocitrate metabolic process|g__Clostridium.s__Clostridium_thermocellum	2.4552	47.411	32.8214	119.773	121.21	121.8
+GO:0006107: [BP] oxaloacetate metabolic process	0.0536877	0.262166	0	0.262877	0.15294	0.159528
+GO:0006107: [BP] oxaloacetate metabolic process|g__Escherichia.s__Escherichia_coli	0.0194432	0	0	0	0	0
+GO:0006107: [BP] oxaloacetate metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0342444	0.262166	0	0.262877	0.15294	0.159528
+GO:0006108: [BP] malate metabolic process	12.3547	8.7682	7.9753	9.14256	8.88576	8.85914
+GO:0006108: [BP] malate metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.7036	8.48671	7.60015	8.90226	8.78091	8.77558
+GO:0006108: [BP] malate metabolic process|g__Escherichia.s__Escherichia_coli	0.211032	0	0.212947	0	0	0.0835637
+GO:0006108: [BP] malate metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.440074	0.281489	0.162202	0.240295	0.104847	0
+GO:0006109: [BP] regulation of carbohydrate metabolic process	48.7367	313.415	223.445	763.953	780.967	958.252
+GO:0006109: [BP] regulation of carbohydrate metabolic process|g__Clostridium.s__Clostridium_thermocellum	48.7367	313.415	223.445	763.953	780.967	958.252
+GO:0006112: [BP] energy reserve metabolic process	0.0604685	0	0	0	0	0
+GO:0006112: [BP] energy reserve metabolic process|g__Escherichia.s__Escherichia_coli	0.0604685	0	0	0	0	0
+GO:0006119: [BP] oxidative phosphorylation	0	0	0.0646374	0	0	0.023187
+GO:0006119: [BP] oxidative phosphorylation|g__Escherichia.s__Escherichia_coli	0	0	0.0646374	0	0	0.023187
+GO:0006139: [BP] nucleobase-containing compound metabolic process	0.852732	5.31244	5.16842	11.9018	13.076	14.4526
+GO:0006139: [BP] nucleobase-containing compound metabolic process|g__Clostridium.s__Clostridium_thermocellum	0.750728	5.25428	4.94361	11.7933	12.995	14.2713
+GO:0006139: [BP] nucleobase-containing compound metabolic process|g__Escherichia.s__Escherichia_coli	0.0414384	0	0	0	0	0
+GO:0006139: [BP] nucleobase-containing compound metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0605657	0.0581553	0.22481	0.108459	0.0809953	0.181324
+GO:0006144: [BP] purine nucleobase metabolic process	0.206025	0	0	0	0	0.34166
+GO:0006144: [BP] purine nucleobase metabolic process|g__Escherichia.s__Escherichia_coli	0.206025	0	0	0	0	0.34166
+GO:0006146: [BP] adenine catabolic process	0.163663	0.127232	0.273796	0.0508594	0.103349	0.308642
+GO:0006146: [BP] adenine catabolic process|g__Escherichia.s__Escherichia_coli	0.0149956	0	0.0278306	0	0	0
+GO:0006146: [BP] adenine catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.148644	0.127232	0.24592	0.0508594	0.103349	0.308642
+GO:0006163: [BP] purine nucleotide metabolic process	44.6282	107.691	98.1461	119.472	133.484	132.151
+GO:0006163: [BP] purine nucleotide metabolic process|g__Clostridium.s__Clostridium_thermocellum	4.42378	27.4467	20.7349	59.5457	61.5965	71.5612
+GO:0006163: [BP] purine nucleotide metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.9694	79.6803	76.3232	58.9659	71.4159	58.7156
+GO:0006163: [BP] purine nucleotide metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.235117	0.564237	1.08797	0.960733	0.471539	1.87452
+GO:0006164: [BP] purine nucleotide biosynthetic process	18.3321	64.2187	43.1227	172.821	177.798	178.326
+GO:0006164: [BP] purine nucleotide biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	8.04685	56.8594	38.1559	166.347	169.664	171.35
+GO:0006164: [BP] purine nucleotide biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.1493	7.35935	4.96675	6.47417	8.13417	6.97611
+GO:0006164: [BP] purine nucleotide biosynthetic process|g__Escherichia.s__Escherichia_coli	0.135957	0	0	0	0	0
+GO:0006166: [BP] purine ribonucleoside salvage	11.2737	23.3354	22.7631	63.3114	54.65	82.346
+GO:0006166: [BP] purine ribonucleoside salvage|g__Clostridium.s__Clostridium_thermocellum	2.33922	13.577	10.8916	51.0264	39.3707	68.6689
+GO:0006166: [BP] purine ribonucleoside salvage|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.76042	9.12357	11.0711	12.0851	15.1185	13.2017
+GO:0006166: [BP] purine ribonucleoside salvage|g__Escherichia.s__Escherichia_coli	0.174041	0	0.23311	0	0	0.381987
+GO:0006166: [BP] purine ribonucleoside salvage|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.634761	0.567212	0.199956	0.160884	0.09333
+GO:0006168: [BP] adenine salvage	88.2354	84.4916	56.7846	100.811	105.061	109.704
+GO:0006168: [BP] adenine salvage|g__Clostridium.s__Clostridium_thermocellum	5.3083	25.8836	13.0491	63.7916	59.4961	59.5095
+GO:0006168: [BP] adenine salvage|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	82.9271	58.608	43.511	37.0193	45.5653	50.1944
+GO:0006168: [BP] adenine salvage|g__Escherichia.s__Escherichia_coli	0	0	0.224404	0	0	0
+GO:0006171: [BP] cAMP biosynthetic process	0	0	0	0	0	0.0269706
+GO:0006171: [BP] cAMP biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0269706
+GO:0006177: [BP] GMP biosynthetic process	127.525	124.145	102.909	153.048	165.214	121.279
+GO:0006177: [BP] GMP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	3.92593	27.1335	16.1024	89.4446	80.4397	68.3222
+GO:0006177: [BP] GMP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	123.331	96.3271	85.7414	62.3909	84.3424	51.6951
+GO:0006177: [BP] GMP biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0709435	0	0	0	0	0
+GO:0006177: [BP] GMP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.196766	0.684375	1.06555	1.21234	0.43191	1.26173
+GO:0006183: [BP] GTP biosynthetic process	164.016	295.443	240.466	234.904	242.374	313.401
+GO:0006183: [BP] GTP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.86167	12.8491	11.2268	58.815	46.6577	64.3269
+GO:0006183: [BP] GTP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	161.758	282.441	228.356	175.603	195.079	248.125
+GO:0006183: [BP] GTP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.396861	0.152529	0.883498	0.485838	0.638087	0.949793
+GO:0006189: [BP] 'de novo' IMP biosynthetic process	82.0107	107.33	95.9686	379.285	377.582	329.075
+GO:0006189: [BP] 'de novo' IMP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	19.8679	63.0196	46.6489	320.659	304.833	273.568
+GO:0006189: [BP] 'de novo' IMP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	59.7195	38.6645	42.6321	55.2302	70.886	51.3796
+GO:0006189: [BP] 'de novo' IMP biosynthetic process|g__Escherichia.s__Escherichia_coli	0.42379	0	0.361257	0	0	0.124181
+GO:0006189: [BP] 'de novo' IMP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.99954	5.6462	6.32635	3.39607	1.86248	4.00336
+GO:0006206: [BP] pyrimidine nucleobase metabolic process	31.5201	24.7419	28.3527	34.0698	41.2712	25.2325
+GO:0006206: [BP] pyrimidine nucleobase metabolic process|g__Clostridium.s__Clostridium_thermocellum	0.738284	1.98489	2.77977	9.99093	9.33907	7.15631
+GO:0006206: [BP] pyrimidine nucleobase metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	30.5868	22.757	25.5162	24.0789	31.9322	18.0353
+GO:0006206: [BP] pyrimidine nucleobase metabolic process|g__Escherichia.s__Escherichia_coli	0.195016	0	0.0567438	0	0	0.040844
+GO:0006207: [BP] 'de novo' pyrimidine nucleobase biosynthetic process	8.38176	23.8661	21.9575	62.3091	65.5046	63.4481
+GO:0006207: [BP] 'de novo' pyrimidine nucleobase biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	3.23081	20.254	17.1549	59.8246	63.6541	60.5915
+GO:0006207: [BP] 'de novo' pyrimidine nucleobase biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.33669	2.70082	4.38438	1.31476	1.3433	1.58195
+GO:0006207: [BP] 'de novo' pyrimidine nucleobase biosynthetic process|g__Escherichia.s__Escherichia_coli	0.305259	0	0.0439787	0	0	0
+GO:0006207: [BP] 'de novo' pyrimidine nucleobase biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.509024	0.911256	0.374112	1.16977	0.507241	1.27461
+GO:0006208: [BP] pyrimidine nucleobase catabolic process	0.0786479	0	0	0	0	0
+GO:0006208: [BP] pyrimidine nucleobase catabolic process|g__Escherichia.s__Escherichia_coli	0.0786479	0	0	0	0	0
+GO:0006212: [BP] uracil catabolic process	0.0551702	0	0	0	0	0.0548468
+GO:0006212: [BP] uracil catabolic process|g__Escherichia.s__Escherichia_coli	0.0551702	0	0	0	0	0.0548468
+GO:0006213: [BP] pyrimidine nucleoside metabolic process	31.3251	24.7419	28.296	34.0698	41.2712	25.1916
+GO:0006213: [BP] pyrimidine nucleoside metabolic process|g__Clostridium.s__Clostridium_thermocellum	0.738284	1.98489	2.77977	9.99093	9.33907	7.15631
+GO:0006213: [BP] pyrimidine nucleoside metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	30.5868	22.757	25.5162	24.0789	31.9322	18.0353
+GO:0006220: [BP] pyrimidine nucleotide metabolic process	6.89474	51.4882	27.5884	105.503	119.254	126.4
+GO:0006220: [BP] pyrimidine nucleotide metabolic process|g__Clostridium.s__Clostridium_thermocellum	6.82242	51.3493	27.5884	104.762	118.867	125.629
+GO:0006220: [BP] pyrimidine nucleotide metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0723289	0.138901	0	0.740408	0.38718	0.77083
+GO:0006221: [BP] pyrimidine nucleotide biosynthetic process	10.1287	12.9346	8.25942	18.8094	16.9517	23.7116
+GO:0006221: [BP] pyrimidine nucleotide biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.628551	4.09094	1.61945	11.9282	7.41667	12.4429
+GO:0006221: [BP] pyrimidine nucleotide biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.50019	8.84372	6.63997	6.88117	9.53507	11.2686
+GO:0006222: [BP] UMP biosynthetic process	0.864033	0.484005	0.13365	0.257804	0.353627	0.431174
+GO:0006222: [BP] UMP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.864033	0.484005	0.13365	0.257804	0.353627	0.431174
+GO:0006223: [BP] uracil salvage	24.3333	77.0823	80.1456	138.756	133.398	149.062
+GO:0006223: [BP] uracil salvage|g__Clostridium.s__Clostridium_thermocellum	10.1241	63.2315	62.446	131.224	128.121	141.808
+GO:0006223: [BP] uracil salvage|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.1117	13.8508	17.5205	7.38217	5.14641	7.25436
+GO:0006223: [BP] uracil salvage|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0975079	0	0.179027	0.149818	0.130738	0
+GO:0006226: [BP] dUMP biosynthetic process	16.623	34.3116	23.718	47.8695	57.2655	56.6387
+GO:0006226: [BP] dUMP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.44795	10.3579	10.2479	25.2983	25.9347	35.8891
+GO:0006226: [BP] dUMP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.83	23.6456	13.4701	22.3517	31.1397	20.7496
+GO:0006226: [BP] dUMP biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0786479	0	0	0	0	0
+GO:0006226: [BP] dUMP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.266421	0.308093	0	0.219603	0.191159	0
+GO:0006228: [BP] UTP biosynthetic process	164.016	295.443	240.466	234.904	242.374	313.401
+GO:0006228: [BP] UTP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.86167	12.8491	11.2268	58.815	46.6577	64.3269
+GO:0006228: [BP] UTP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	161.758	282.441	228.356	175.603	195.079	248.125
+GO:0006228: [BP] UTP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.396861	0.152529	0.883498	0.485838	0.638087	0.949793
+GO:0006229: [BP] dUTP biosynthetic process	16.3852	34.0035	23.718	47.8695	57.1222	56.6387
+GO:0006229: [BP] dUTP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.44795	10.3579	10.2479	25.2983	25.9347	35.8891
+GO:0006229: [BP] dUTP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.83	23.6456	13.4701	22.3517	31.1397	20.7496
+GO:0006229: [BP] dUTP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.107302	0	0	0.219603	0.04792	0
+GO:0006231: [BP] dTMP biosynthetic process	36.9898	50.6987	42.4959	89.4689	93.8062	90.1199
+GO:0006231: [BP] dTMP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	4.20754	24.2485	18.8704	62.4472	63.5952	70.4747
+GO:0006231: [BP] dTMP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.4181	24.5272	22.7811	26.6489	29.5605	19.1002
+GO:0006231: [BP] dTMP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.364099	1.92305	0.844391	0.372753	0.650436	0.54504
+GO:0006233: [BP] dTDP biosynthetic process	8.03055	8.03234	10.5069	23.3999	22.1419	20.7716
+GO:0006233: [BP] dTDP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.85979	4.36492	5.40031	19.7196	19.5344	17.4885
+GO:0006233: [BP] dTDP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.01618	3.2385	4.17365	3.22284	2.45792	2.24471
+GO:0006233: [BP] dTDP biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0986988	0	0	0	0	0
+GO:0006233: [BP] dTDP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.055875	0.42893	0.93298	0.457386	0.149685	1.03847
+GO:0006235: [BP] dTTP biosynthetic process	8.39464	9.95539	11.3513	23.7727	22.7924	21.3167
+GO:0006235: [BP] dTTP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.85979	4.36492	5.40031	19.7196	19.5344	17.4885
+GO:0006235: [BP] dTTP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.01618	3.2385	4.17365	3.22284	2.45792	2.24471
+GO:0006235: [BP] dTTP biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0986988	0	0	0	0	0
+GO:0006235: [BP] dTTP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.419974	2.35198	1.77737	0.83014	0.8001	1.58351
+GO:0006241: [BP] CTP biosynthetic process	164.016	295.443	240.466	234.904	242.374	313.401
+GO:0006241: [BP] CTP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.86167	12.8491	11.2268	58.815	46.6577	64.3269
+GO:0006241: [BP] CTP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	161.758	282.441	228.356	175.603	195.079	248.125
+GO:0006241: [BP] CTP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.396861	0.152529	0.883498	0.485838	0.638087	0.949793
+GO:0006259: [BP] DNA metabolic process	0.200484	0	0	0	0	0
+GO:0006259: [BP] DNA metabolic process|g__Escherichia.s__Escherichia_coli	0.200484	0	0	0	0	0
+GO:0006260: [BP] DNA replication	585.472	617.666	565.521	1206.16	1111.81	1058.17
+GO:0006260: [BP] DNA replication|g__Clostridium.s__Clostridium_thermocellum	55.3214	303.437	224.862	981.635	824.881	824.135
+GO:0006260: [BP] DNA replication|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	526.611	310.035	334.161	221.2	284.822	225.705
+GO:0006260: [BP] DNA replication|g__Escherichia.s__Escherichia_coli	2.13929	0	2.35784	0	0	0.642768
+GO:0006260: [BP] DNA replication|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.4003	4.194	4.14036	3.32961	2.10542	7.68398
+GO:0006261: [BP] DNA-dependent DNA replication	35.2637	76.4948	71.0257	150.922	142.749	141.144
+GO:0006261: [BP] DNA-dependent DNA replication|g__Clostridium.s__Clostridium_thermocellum	7.73596	56.6698	47.0745	134.301	126.136	128.493
+GO:0006261: [BP] DNA-dependent DNA replication|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	27.2593	19.3438	23.3301	16.2397	16.4988	12.3178
+GO:0006261: [BP] DNA-dependent DNA replication|g__Escherichia.s__Escherichia_coli	0.0136346	0	0	0	0	0
+GO:0006261: [BP] DNA-dependent DNA replication|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.254901	0.481252	0.621024	0.380786	0.114136	0.333252
+GO:0006265: [BP] DNA topological change	82.1766	153.282	117.822	286.412	285.539	293.512
+GO:0006265: [BP] DNA topological change|g__Clostridium.s__Clostridium_thermocellum	14.5788	104.151	68.6428	253.86	250.345	266.925
+GO:0006265: [BP] DNA topological change|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	66.7647	46.8587	46.3297	31.894	34.6157	26.2064
+GO:0006265: [BP] DNA topological change|g__Escherichia.s__Escherichia_coli	0.138946	0	0.214345	0	0	0
+GO:0006265: [BP] DNA topological change|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.694197	2.27184	2.63471	0.658312	0.578339	0.380984
+GO:0006266: [BP] DNA ligation	0.090241	0	0.33505	0	0	0
+GO:0006266: [BP] DNA ligation|g__Escherichia.s__Escherichia_coli	0.090241	0	0.33505	0	0	0
+GO:0006268: [BP] DNA unwinding involved in DNA replication	2.78593	14.1489	10.7094	28.3455	27.7056	33.8206
+GO:0006268: [BP] DNA unwinding involved in DNA replication|g__Clostridium.s__Clostridium_thermocellum	2.09289	11.9003	8.03141	27.8359	27.3218	33.5524
+GO:0006268: [BP] DNA unwinding involved in DNA replication|g__Escherichia.s__Escherichia_coli	0.107813	0	0.223006	0	0	0
+GO:0006268: [BP] DNA unwinding involved in DNA replication|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.585217	2.24855	2.45496	0.509663	0.383816	0.268186
+GO:0006269: [BP] DNA replication, synthesis of RNA primer	17.074	32.9054	22.0465	90.6716	84.3334	78.074
+GO:0006269: [BP] DNA replication, synthesis of RNA primer|g__Clostridium.s__Clostridium_thermocellum	3.35377	23.5808	13.8349	77.6395	69.2138	68.7263
+GO:0006269: [BP] DNA replication, synthesis of RNA primer|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.3331	9.32455	7.93813	13.0321	15.1196	9.34772
+GO:0006269: [BP] DNA replication, synthesis of RNA primer|g__Escherichia.s__Escherichia_coli	0.387115	0	0.27339	0	0	0
+GO:0006270: [BP] DNA replication initiation	14.7935	28.7931	35.2201	24.5391	31.0386	28.9412
+GO:0006270: [BP] DNA replication initiation|g__Clostridium.s__Clostridium_thermocellum	1.62361	6.62831	5.33811	16.0679	18.1539	20.2148
+GO:0006270: [BP] DNA replication initiation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.1311	22.1648	29.882	8.47126	12.8847	8.72642
+GO:0006270: [BP] DNA replication initiation|g__Escherichia.s__Escherichia_coli	0.038765	0	0	0	0	0
+GO:0006275: [BP] regulation of DNA replication	14.9596	28.9526	35.2972	25.1342	31.558	30.0467
+GO:0006275: [BP] regulation of DNA replication|g__Clostridium.s__Clostridium_thermocellum	1.62361	6.62831	5.33811	16.0679	18.1539	20.2148
+GO:0006275: [BP] regulation of DNA replication|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.1311	22.1648	29.882	8.47126	12.8847	8.72642
+GO:0006275: [BP] regulation of DNA replication|g__Escherichia.s__Escherichia_coli	0.038765	0	0	0	0	0
+GO:0006275: [BP] regulation of DNA replication|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.166118	0.159437	0.0770868	0.595043	0.519394	1.1055
+GO:0006276: [BP] plasmid maintenance	0.019662	0	0	0	0	0
+GO:0006276: [BP] plasmid maintenance|g__Escherichia.s__Escherichia_coli	0.019662	0	0	0	0	0
+GO:0006281: [BP] DNA repair	371.699	758.604	719.318	969.575	971.95	1012.14
+GO:0006281: [BP] DNA repair|g__Clostridium.s__Clostridium_thermocellum	45.906	298.9	234.96	710.443	689.692	777.07
+GO:0006281: [BP] DNA repair|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	320.905	456.174	478.26	256.124	281.123	232.373
+GO:0006281: [BP] DNA repair|g__Escherichia.s__Escherichia_coli	2.49661	0	1.30935	0	0	0.432112
+GO:0006281: [BP] DNA repair|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.39196	3.53049	4.78845	3.00782	1.13571	2.26049
+GO:0006282: [BP] regulation of DNA repair	11.2595	28.766	28.6947	22.5051	21.601	28.8957
+GO:0006282: [BP] regulation of DNA repair|g__Clostridium.s__Clostridium_thermocellum	0.928925	7.51585	2.96484	14.3278	13.304	20.4789
+GO:0006282: [BP] regulation of DNA repair|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.3306	21.2501	25.7298	8.17725	8.29694	8.41684
+GO:0006284: [BP] base-excision repair	45.1528	66.0911	69.902	130.436	127.634	205.637
+GO:0006284: [BP] base-excision repair|g__Clostridium.s__Clostridium_thermocellum	9.10233	47.1933	46.9591	112.129	98.3745	179.749
+GO:0006284: [BP] base-excision repair|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	35.2144	18.7453	22.4538	18.0727	28.9692	25.5127
+GO:0006284: [BP] base-excision repair|g__Escherichia.s__Escherichia_coli	0.836059	0	0.324811	0	0	0
+GO:0006284: [BP] base-excision repair|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.152529	0.164322	0.234426	0.290624	0.375099
+GO:0006285: [BP] base-excision repair, AP site formation	0.272497	0	0	0	0	0
+GO:0006285: [BP] base-excision repair, AP site formation|g__Escherichia.s__Escherichia_coli	0.272497	0	0	0	0	0
+GO:0006289: [BP] nucleotide-excision repair	34.1498	58.3912	47.3398	107.81	98.3655	103.746
+GO:0006289: [BP] nucleotide-excision repair|g__Clostridium.s__Clostridium_thermocellum	10.5148	35.8935	31.0746	82.8924	74.6144	84.5537
+GO:0006289: [BP] nucleotide-excision repair|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	23.0826	22.3576	15.9566	24.5116	23.5278	18.7787
+GO:0006289: [BP] nucleotide-excision repair|g__Escherichia.s__Escherichia_coli	0.321834	0	0	0	0	0
+GO:0006289: [BP] nucleotide-excision repair|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.230475	0.140161	0.308573	0.406079	0.22328	0.414002
+GO:0006298: [BP] mismatch repair	37.9382	54.4805	44.4528	91.8449	100.232	96.6145
+GO:0006298: [BP] mismatch repair|g__Clostridium.s__Clostridium_thermocellum	2.98984	19.5161	13.0179	52.0287	52.5978	53.8572
+GO:0006298: [BP] mismatch repair|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	34.6387	33.8197	30.2089	39.5389	47.3924	42.4149
+GO:0006298: [BP] mismatch repair|g__Escherichia.s__Escherichia_coli	0.174187	0	0.221111	0	0	0
+GO:0006298: [BP] mismatch repair|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.135471	1.14467	1.00474	0.277252	0.241922	0.342437
+GO:0006302: [BP] double-strand break repair	2.20812	13.0762	8.06858	25.4128	28.3105	32.9628
+GO:0006302: [BP] double-strand break repair|g__Clostridium.s__Clostridium_thermocellum	1.90991	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0006302: [BP] double-strand break repair|g__Escherichia.s__Escherichia_coli	0.12344	0	0	0	0	0
+GO:0006302: [BP] double-strand break repair|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.17477	0.691003	0.0763199	0.0526003	0.109947	0.109435
+GO:0006304: [BP] DNA modification	0.210133	0.458101	0.278442	0.325699	0.124575	0.184526
+GO:0006304: [BP] DNA modification|g__Clostridium.s__Clostridium_thermocellum	0.152192	0.0224967	0.0869199	0.0359373	0.0418215	0.0934594
+GO:0006304: [BP] DNA modification|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0579409	0.0445266	0.107534	0.011863	0.0827749	0.0308513
+GO:0006304: [BP] DNA modification|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.391125	0.083988	0.277899	0	0.060215
+GO:0006306: [BP] DNA methylation	5.63402	5.50081	4.16196	6.41995	7.00023	3.96527
+GO:0006306: [BP] DNA methylation|g__Clostridium.s__Clostridium_thermocellum	0.114326	1.40912	0.709748	0.0874434	0.266751	0.145299
+GO:0006306: [BP] DNA methylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.46258	3.89958	3.45221	6.18637	6.63148	3.68699
+GO:0006306: [BP] DNA methylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0571388	0.192062	0	0.146112	0.102004	0.132978
+GO:0006307: [BP] DNA dealkylation involved in DNA repair	0	0	0	0	0	0.0848896
+GO:0006307: [BP] DNA dealkylation involved in DNA repair|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0	0	0.0848896
+GO:0006308: [BP] DNA catabolic process	9.96534	32.9928	26.8994	117.871	107.577	100.856
+GO:0006308: [BP] DNA catabolic process|g__Clostridium.s__Clostridium_thermocellum	9.96534	32.9928	26.8289	117.871	107.577	100.856
+GO:0006308: [BP] DNA catabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.0705914	0	0	0
+GO:0006310: [BP] DNA recombination	305.472	659.104	602.026	830.215	808.456	796.307
+GO:0006310: [BP] DNA recombination|g__Clostridium.s__Clostridium_thermocellum	47.6532	242.043	175.334	593.376	560.301	580.451
+GO:0006310: [BP] DNA recombination|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	253.594	416.12	423.563	235.223	247.802	214.524
+GO:0006310: [BP] DNA recombination|g__Escherichia.s__Escherichia_coli	3.46445	0	0.659004	0	0	0.299587
+GO:0006310: [BP] DNA recombination|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.760352	0.941173	2.46962	1.61604	0.35315	1.0319
+GO:0006313: [BP] transposition, DNA-mediated	81.5061	242.526	221.342	394.902	375.388	428.06
+GO:0006313: [BP] transposition, DNA-mediated|g__Clostridium.s__Clostridium_thermocellum	53.4656	226.165	197.304	382.169	366.093	416.208
+GO:0006313: [BP] transposition, DNA-mediated|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.2546	16.0043	18.9494	12.4801	8.90857	9.72214
+GO:0006313: [BP] transposition, DNA-mediated|g__Escherichia.s__Escherichia_coli	10.6623	0	4.68705	0	0	1.63625
+GO:0006313: [BP] transposition, DNA-mediated|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.123683	0.356213	0.401717	0.253103	0.386681	0.493718
+GO:0006351: [BP] transcription, DNA-templated	1178.38	2835.01	2442.31	3768.98	3459.97	3883.37
+GO:0006351: [BP] transcription, DNA-templated|g__Clostridium.s__Clostridium_thermocellum	164.724	1325.19	1224.52	2960.81	2573.94	3008.1
+GO:0006351: [BP] transcription, DNA-templated|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	963.689	1463.74	1175.16	759.157	866.563	813.038
+GO:0006351: [BP] transcription, DNA-templated|g__Escherichia.s__Escherichia_coli	17.9065	0	10.8492	0	0	5.91291
+GO:0006351: [BP] transcription, DNA-templated|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	32.0609	46.0881	31.7828	49.012	19.4615	56.3162
+GO:0006352: [BP] DNA-templated transcription, initiation	226.512	420.573	363.088	878.271	865.164	938.577
+GO:0006352: [BP] DNA-templated transcription, initiation|g__Clostridium.s__Clostridium_thermocellum	54.2278	290.859	233.105	793.09	749.265	841.275
+GO:0006352: [BP] DNA-templated transcription, initiation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	170.255	122.214	124.81	81.1139	113.434	92.5824
+GO:0006352: [BP] DNA-templated transcription, initiation|g__Escherichia.s__Escherichia_coli	0.355301	0	0.204602	0	0	0
+GO:0006352: [BP] DNA-templated transcription, initiation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.67367	7.50012	4.96851	4.06704	2.46463	4.71967
+GO:0006353: [BP] DNA-templated transcription, termination	159.695	377.313	307.599	671.458	696.927	703.716
+GO:0006353: [BP] DNA-templated transcription, termination|g__Clostridium.s__Clostridium_thermocellum	37.68	219.701	171.354	521.356	508.361	568.762
+GO:0006353: [BP] DNA-templated transcription, termination|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	121.719	157.281	136.164	149.221	188.105	134.129
+GO:0006353: [BP] DNA-templated transcription, termination|g__Escherichia.s__Escherichia_coli	0.123319	0	0.0812816	0	0	0.0241572
+GO:0006353: [BP] DNA-templated transcription, termination|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.172364	0.331009	0	0.881596	0.460688	0.800743
+GO:0006354: [BP] DNA-templated transcription, elongation	72.8363	130.975	89.7238	286.212	306.755	245.128
+GO:0006354: [BP] DNA-templated transcription, elongation|g__Clostridium.s__Clostridium_thermocellum	11.3204	50.8585	32.9726	201.327	197.621	156.937
+GO:0006354: [BP] DNA-templated transcription, elongation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	61.4545	80.1168	56.7512	84.885	109.133	88.1916
+GO:0006354: [BP] DNA-templated transcription, elongation|g__Escherichia.s__Escherichia_coli	0.0613677	0	0	0	0	0
+GO:0006355: [BP] regulation of transcription, DNA-templated	1106.25	3065.06	2566.63	3493.29	3340.17	3814.36
+GO:0006355: [BP] regulation of transcription, DNA-templated|g__Clostridium.s__Clostridium_thermocellum	150.96	1377.26	1373.87	2729.98	2518.85	3040.49
+GO:0006355: [BP] regulation of transcription, DNA-templated|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	938.636	1658.44	1172.12	751.274	813.121	749.815
+GO:0006355: [BP] regulation of transcription, DNA-templated|g__Escherichia.s__Escherichia_coli	7.09773	0	3.97856	0	0	3.77544
+GO:0006355: [BP] regulation of transcription, DNA-templated|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	9.55458	29.3612	16.6682	12.0298	8.20336	20.2803
+GO:0006364: [BP] rRNA processing	133.032	246.41	194.763	492.173	471.625	475.884
+GO:0006364: [BP] rRNA processing|g__Clostridium.s__Clostridium_thermocellum	21.6873	150.553	106.646	400.291	363.636	400.131
+GO:0006364: [BP] rRNA processing|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	109.158	93.7532	82.9219	83.8596	105.482	68.8383
+GO:0006364: [BP] rRNA processing|g__Escherichia.s__Escherichia_coli	0.261512	0	0	0	0	0.0680087
+GO:0006364: [BP] rRNA processing|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.92549	2.10321	5.19553	8.02253	2.50775	6.84653
+GO:0006367: [BP] transcription initiation from RNA polymerase II promoter	0.502243	3.85533	1.2821	0.642147	0.616732	1.91278
+GO:0006367: [BP] transcription initiation from RNA polymerase II promoter|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.502243	3.85533	1.2821	0.642147	0.616732	1.91278
+GO:0006378: [BP] mRNA polyadenylation	0	0	0.0742451	0	0	0
+GO:0006378: [BP] mRNA polyadenylation|g__Escherichia.s__Escherichia_coli	0	0	0.0742451	0	0	0
+GO:0006379: [BP] mRNA cleavage	1.64781	1.76795	0.341726	3.57145	0.822085	6.1105
+GO:0006379: [BP] mRNA cleavage|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.64781	1.76795	0.341726	3.57145	0.822085	6.1105
+GO:0006388: [BP] tRNA splicing, via endonucleolytic cleavage and ligation	1.0676	7.96387	7.92726	11.1115	10.0164	15.0828
+GO:0006388: [BP] tRNA splicing, via endonucleolytic cleavage and ligation|g__Clostridium.s__Clostridium_thermocellum	0.801937	6.93789	6.93591	10.7004	9.95663	15.0828
+GO:0006388: [BP] tRNA splicing, via endonucleolytic cleavage and ligation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.265668	1.02598	0.991347	0.411078	0.0597915	0
+GO:0006396: [BP] RNA processing	161.878	207.849	179.255	392.405	393.193	390.601
+GO:0006396: [BP] RNA processing|g__Clostridium.s__Clostridium_thermocellum	25.1889	100.817	77.7341	298.521	287.296	305.909
+GO:0006396: [BP] RNA processing|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	135.44	105.201	98.5433	91.8139	104.844	82.173
+GO:0006396: [BP] RNA processing|g__Escherichia.s__Escherichia_coli	0.363905	0	0.33505	0	0	0.135177
+GO:0006396: [BP] RNA processing|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.884522	1.83147	2.64242	2.07016	1.054	2.3837
+GO:0006397: [BP] mRNA processing	1.29891	6.48698	2.88541	28.1773	22.2648	16.6507
+GO:0006397: [BP] mRNA processing|g__Clostridium.s__Clostridium_thermocellum	1.29891	6.48698	2.88541	28.1773	22.2648	16.6507
+GO:0006400: [BP] tRNA modification	66.9997	100.891	75.3779	184.081	172.39	154.956
+GO:0006400: [BP] tRNA modification|g__Clostridium.s__Clostridium_thermocellum	7.12204	59.4064	49.2044	167.6	152.573	140.148
+GO:0006400: [BP] tRNA modification|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	59.3036	41.3259	25.5251	16.2168	19.669	14.5706
+GO:0006400: [BP] tRNA modification|g__Escherichia.s__Escherichia_coli	0.160018	0	0.186605	0	0	0
+GO:0006400: [BP] tRNA modification|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.414117	0.158737	0.461844	0.26335	0.147884	0.238047
+GO:0006401: [BP] RNA catabolic process	7.95788	47.3467	43.749	129.383	117.403	94.8325
+GO:0006401: [BP] RNA catabolic process|g__Clostridium.s__Clostridium_thermocellum	6.60254	42.4215	39.2954	125.812	115.846	91.043
+GO:0006401: [BP] RNA catabolic process|g__Escherichia.s__Escherichia_coli	0.218275	0	0.0815974	0	0	0.0966286
+GO:0006401: [BP] RNA catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.13707	4.92523	4.37198	3.57137	1.55679	3.69284
+GO:0006402: [BP] mRNA catabolic process	116.764	485.974	366.161	1143.11	1153.8	1282.09
+GO:0006402: [BP] mRNA catabolic process|g__Clostridium.s__Clostridium_thermocellum	71.5998	419.342	309.158	1101.61	1106.11	1239.69
+GO:0006402: [BP] mRNA catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	45.0061	66.6318	57.0036	41.4935	47.6957	42.4064
+GO:0006402: [BP] mRNA catabolic process|g__Escherichia.s__Escherichia_coli	0.157831	0	0	0	0	0
+GO:0006412: [BP] translation	8342.85	16894.4	11098.7	35182.9	34005.4	38092.9
+GO:0006412: [BP] translation|g__Clostridium.s__Clostridium_thermocellum	1143.89	7860.87	4330.21	25293.4	22865.7	29087
+GO:0006412: [BP] translation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	7168.49	8954.82	6667.55	9784.23	11084.7	8918.76
+GO:0006412: [BP] translation|g__Escherichia.s__Escherichia_coli	2.16323	0	2.26208	0	0	1.02417
+GO:0006412: [BP] translation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	28.3096	78.6725	98.6475	105.263	54.9794	86.1134
+GO:0006414: [BP] translational elongation	0	0.299178	0.578309	0.478277	1.11121	0.414617
+GO:0006414: [BP] translational elongation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.299178	0.578309	0.478277	1.11121	0.414617
+GO:0006415: [BP] translational termination	33.7466	52.4368	41.6394	88.4748	109.33	117.098
+GO:0006415: [BP] translational termination|g__Clostridium.s__Clostridium_thermocellum	4.57116	19.918	15.7805	60.6957	72.1577	83.0681
+GO:0006415: [BP] translational termination|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.1754	32.5188	25.8589	27.779	37.1724	34.0301
+GO:0006417: [BP] regulation of translation	52.0828	92.2133	59.7074	304.19	252.571	200.413
+GO:0006417: [BP] regulation of translation|g__Clostridium.s__Clostridium_thermocellum	29.5781	51.7533	27.0008	262.427	196.911	154.505
+GO:0006417: [BP] regulation of translation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	19.8934	33.9467	29.8872	33.8104	51.1115	38.6829
+GO:0006417: [BP] regulation of translation|g__Escherichia.s__Escherichia_coli	0.0640412	0	0	0	0	0.0213113
+GO:0006417: [BP] regulation of translation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.54731	6.5134	2.81937	7.9523	4.54852	7.20401
+GO:0006418: [BP] tRNA aminoacylation for protein translation	40.0387	70.801	57.3791	108.289	100.134	83.4881
+GO:0006418: [BP] tRNA aminoacylation for protein translation|g__Clostridium.s__Clostridium_thermocellum	8.44719	22.8474	17.5299	64.1393	54.8431	56.0281
+GO:0006418: [BP] tRNA aminoacylation for protein translation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	31.5281	47.8248	39.7871	44.0812	45.2613	27.3038
+GO:0006418: [BP] tRNA aminoacylation for protein translation|g__Escherichia.s__Escherichia_coli	0.0299426	0	0	0	0	0
+GO:0006418: [BP] tRNA aminoacylation for protein translation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0335396	0.128866	0.0622468	0.0686415	0.02995	0.156229
+GO:0006419: [BP] alanyl-tRNA aminoacylation	12.109	25.3368	17.9416	70.3442	72.3005	71.5896
+GO:0006419: [BP] alanyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	5.49719	19.1865	11.5244	63.4788	64.6384	64.436
+GO:0006419: [BP] alanyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.59223	6.15028	6.41724	6.8654	7.66215	7.15369
+GO:0006419: [BP] alanyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.0195891	0	0	0	0	0
+GO:0006420: [BP] arginyl-tRNA aminoacylation	56.0024	81.1343	82.7605	135.807	144.357	106.315
+GO:0006420: [BP] arginyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	14.0925	38.9658	49.3593	83.7525	86.937	71.8438
+GO:0006420: [BP] arginyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	41.754	41.1333	32.755	51.7953	57.2362	34.3873
+GO:0006420: [BP] arginyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.076655	0	0	0	0	0
+GO:0006420: [BP] arginyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0792798	1.03517	0.646194	0.259569	0.184019	0.0843722
+GO:0006421: [BP] asparaginyl-tRNA aminoacylation	19.6819	37.2307	29.1304	58.8466	59.5325	54.4351
+GO:0006421: [BP] asparaginyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	2.34199	16.3389	11.4461	45.0052	43.2546	38.7695
+GO:0006421: [BP] asparaginyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.2449	20.8917	17.6842	13.8413	16.2779	15.6655
+GO:0006421: [BP] asparaginyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.0950045	0	0	0	0	0
+GO:0006422: [BP] aspartyl-tRNA aminoacylation	0.0417544	0.0801853	0.154985	0.213386	0.0372856	0.138863
+GO:0006422: [BP] aspartyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0417544	0.0801853	0.154985	0.213386	0.0372856	0.138863
+GO:0006423: [BP] cysteinyl-tRNA aminoacylation	15.3008	19.893	13.8677	35.7364	32.9913	23.7617
+GO:0006423: [BP] cysteinyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	1.56572	12.2106	8.96696	28.6586	23.4713	15.921
+GO:0006423: [BP] cysteinyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.6957	7.68243	4.86418	7.07781	9.52005	7.78834
+GO:0006423: [BP] cysteinyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.039324	0	0.036491	0	0	0.0523243
+GO:0006424: [BP] glutamyl-tRNA aminoacylation	21.8569	40.7634	33.0435	106.199	112.967	89.9978
+GO:0006424: [BP] glutamyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	6.61953	33.0496	27.0863	99.7149	103.601	83.1163
+GO:0006424: [BP] glutamyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1668	7.405	5.89757	6.48456	9.30782	6.88159
+GO:0006424: [BP] glutamyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.0384004	0	0	0	0	0
+GO:0006424: [BP] glutamyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0321543	0.308746	0.0596757	0	0.0574259	0
+GO:0006425: [BP] glutaminyl-tRNA aminoacylation	2.33414	19.5644	13.4457	57.1243	62.2455	49.6799
+GO:0006425: [BP] glutaminyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	2.33414	19.5644	13.4457	57.1243	62.2455	49.6799
+GO:0006426: [BP] glycyl-tRNA aminoacylation	21.0726	29.2836	22.9982	81.4349	72.6562	72.6769
+GO:0006426: [BP] glycyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	4.03843	22.7861	16.3044	71.33	61.2833	62.8522
+GO:0006426: [BP] glycyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.6999	6.40707	6.34443	9.92818	11.3027	9.74119
+GO:0006426: [BP] glycyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.334229	0	0	0	0	0
+GO:0006426: [BP] glycyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.0904535	0.349394	0.176727	0.0701004	0.0835637
+GO:0006427: [BP] histidyl-tRNA aminoacylation	16.6032	32.2198	22.8885	49.9716	47.2497	40.7507
+GO:0006427: [BP] histidyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	2.63978	11.8759	8.04715	27.4492	23.7777	26.3258
+GO:0006427: [BP] histidyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.6129	19.4776	14.613	22.3125	23.2156	14.0687
+GO:0006427: [BP] histidyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.0432126	0	0	0	0	0.0287493
+GO:0006427: [BP] histidyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.307325	0.866309	0.228328	0.209879	0.256377	0.327464
+GO:0006428: [BP] isoleucyl-tRNA aminoacylation	55.3052	36.2954	27.5199	30.7641	32.2157	26.2191
+GO:0006428: [BP] isoleucyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	55.1984	36.1391	27.3652	30.631	32.1575	26.0457
+GO:0006428: [BP] isoleucyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.00911402	0	0.0338298	0	0	0
+GO:0006428: [BP] isoleucyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0977023	0.156263	0.120885	0.13308	0.0581638	0.173336
+GO:0006429: [BP] leucyl-tRNA aminoacylation	34.9474	48.628	40.1434	104.577	103.367	89.7567
+GO:0006429: [BP] leucyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	5.48015	36.422	27.236	91.0435	87.979	79.0557
+GO:0006429: [BP] leucyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.2374	12.0659	12.6704	13.3937	15.282	10.5045
+GO:0006429: [BP] leucyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.0199779	0	0	0	0	0.0265826
+GO:0006429: [BP] leucyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.209841	0.140161	0.237034	0.140044	0.105889	0.169909
+GO:0006430: [BP] lysyl-tRNA aminoacylation	39.3415	45.396	28.9729	91.8475	89.7818	83.2609
+GO:0006430: [BP] lysyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	1.45601	14.2331	9.50287	38.4728	37.9494	40.2274
+GO:0006430: [BP] lysyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	37.675	31.0372	19.2826	53.2743	51.8031	42.9871
+GO:0006430: [BP] lysyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.112236	0	0.0659455	0	0	0.046471
+GO:0006430: [BP] lysyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0981884	0.125739	0.121517	0.100475	0.0292338	0
+GO:0006431: [BP] methionyl-tRNA aminoacylation	27.3954	23.1781	21.7407	47.8856	44.9001	33.9336
+GO:0006431: [BP] methionyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	2.43692	9.97597	6.73366	33.4126	30.0803	23.122
+GO:0006431: [BP] methionyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	24.9197	13.0987	14.9571	14.1977	14.6997	10.6684
+GO:0006431: [BP] methionyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.0386921	0	0	0	0	0
+GO:0006431: [BP] methionyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.103382	0.0499327	0.275362	0.120169	0.143261
+GO:0006432: [BP] phenylalanyl-tRNA aminoacylation	44.7069	61.5136	54.7231	81.8029	83.5725	60.4386
+GO:0006432: [BP] phenylalanyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	1.97312	28.3832	22.7411	42.6145	37.7424	32.7753
+GO:0006432: [BP] phenylalanyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	42.5364	32.6279	31.8027	38.7024	45.6252	27.2614
+GO:0006432: [BP] phenylalanyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.0434313	0	0.0540825	0	0	0
+GO:0006432: [BP] phenylalanyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.153869	0.502441	0.12517	0.486012	0.204919	0.40194
+GO:0006433: [BP] prolyl-tRNA aminoacylation	24.4778	43.043	30.0157	75.9813	79.6589	72.7008
+GO:0006433: [BP] prolyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	2.52422	18.083	14.3411	44.9913	40.6442	43.3146
+GO:0006433: [BP] prolyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.8478	24.8163	15.5358	30.7611	38.8811	29.2867
+GO:0006433: [BP] prolyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.0309634	0	0	0	0	0
+GO:0006433: [BP] prolyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0748079	0.143708	0.138837	0.228929	0.133603	0.0993774
+GO:0006434: [BP] seryl-tRNA aminoacylation	9.74398	22.8286	15.8953	49.0226	53.2104	47.3497
+GO:0006434: [BP] seryl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	2.40476	16.8858	13.3064	39.3101	43.4919	37.9766
+GO:0006434: [BP] seryl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	7.1783	5.77516	2.36222	9.40884	9.56265	9.14085
+GO:0006434: [BP] seryl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.0212417	0	0	0	0	0
+GO:0006434: [BP] seryl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.139675	0.167605	0.22675	0.303739	0.15587	0.232323
+GO:0006435: [BP] threonyl-tRNA aminoacylation	54.6655	102.467	78.2368	132.35	135.064	92.6179
+GO:0006435: [BP] threonyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	4.03547	29.0893	18.9049	72.3296	67.5599	52.1923
+GO:0006435: [BP] threonyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	50.5135	73.2095	59.1197	59.8116	67.3875	40.0379
+GO:0006435: [BP] threonyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0	0	0.0499778	0	0	0
+GO:0006435: [BP] threonyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.116562	0.167885	0.162248	0.208735	0.117087	0.387776
+GO:0006436: [BP] tryptophanyl-tRNA aminoacylation	16.3532	34.2073	20.8027	67.2916	69.0807	59.9526
+GO:0006436: [BP] tryptophanyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	2.31474	19.8864	9.66349	46.4333	46.0442	41.3628
+GO:0006436: [BP] tryptophanyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.7707	13.9259	10.8528	20.4638	22.8987	18.5213
+GO:0006436: [BP] tryptophanyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.113597	0	0	0	0	0
+GO:0006436: [BP] tryptophanyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.154209	0.395045	0.28638	0.39444	0.137792	0.0684291
+GO:0006437: [BP] tyrosyl-tRNA aminoacylation	2.45872	13.212	9.56417	32.9884	33.3056	26.5799
+GO:0006437: [BP] tyrosyl-tRNA aminoacylation|g__Clostridium.s__Clostridium_thermocellum	0.924769	11.7781	8.03421	31.9374	31.988	25.6617
+GO:0006437: [BP] tyrosyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.46072	1.20339	1.41855	1.02027	1.26406	0.678696
+GO:0006437: [BP] tyrosyl-tRNA aminoacylation|g__Escherichia.s__Escherichia_coli	0.0432126	0	0	0	0	0
+GO:0006437: [BP] tyrosyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0300155	0.230474	0.111368	0.0307146	0.0535845	0.239437
+GO:0006438: [BP] valyl-tRNA aminoacylation	52.0385	32.3909	38.9705	29.6473	33.9471	26.5781
+GO:0006438: [BP] valyl-tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	52.0003	32.0423	38.9351	29.4323	33.8191	26.451
+GO:0006438: [BP] valyl-tRNA aminoacylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.038206	0.348559	0.0354536	0.215052	0.12796	0.127124
+GO:0006449: [BP] regulation of translational termination	0.887317	3.40601	1.61566	10.2901	11.8347	12.7583
+GO:0006449: [BP] regulation of translational termination|g__Clostridium.s__Clostridium_thermocellum	0.853583	3.40601	1.55301	10.2901	11.8347	12.7359
+GO:0006449: [BP] regulation of translational termination|g__Escherichia.s__Escherichia_coli	0.033734	0	0.0626527	0	0	0.0224432
+GO:0006450: [BP] regulation of translational fidelity	1.46235	6.04157	4.87076	16.5757	20.2655	20.5883
+GO:0006450: [BP] regulation of translational fidelity|g__Clostridium.s__Clostridium_thermocellum	1.23156	5.96101	4.87076	16.4469	20.2092	20.5046
+GO:0006450: [BP] regulation of translational fidelity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.230816	0.0805587	0	0.128802	0.0562323	0.0837254
+GO:0006452: [BP] translational frameshifting	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0006452: [BP] translational frameshifting|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0006457: [BP] protein folding	286.559	517.369	582.899	713.065	780.236	823.471
+GO:0006457: [BP] protein folding|g__Clostridium.s__Clostridium_thermocellum	31.557	350.892	344.238	606.168	625.807	632.404
+GO:0006457: [BP] protein folding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	252.525	156.135	227.791	102.427	149.864	181.694
+GO:0006457: [BP] protein folding|g__Escherichia.s__Escherichia_coli	0.255654	0	0.40519	0	0	0.0530681
+GO:0006457: [BP] protein folding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.22132	10.3413	10.4654	4.46938	4.56573	9.31994
+GO:0006461: [BP] protein complex assembly	11.5589	16.0132	7.64895	26.8468	20.2585	20.5622
+GO:0006461: [BP] protein complex assembly|g__Clostridium.s__Clostridium_thermocellum	0.413995	2.15095	2.25884	18.9885	10.7841	9.65254
+GO:0006461: [BP] protein complex assembly|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.1449	13.6771	5.03229	7.06966	9.38825	10.6529
+GO:0006461: [BP] protein complex assembly|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.185201	0.357829	0.788656	0.0861172	0.256674
+GO:0006464: [BP] cellular protein modification process	171.073	222.019	392.176	113.754	129.819	113.707
+GO:0006464: [BP] cellular protein modification process|g__Clostridium.s__Clostridium_thermocellum	0.217497	2.60971	0.706365	3.28263	1.65025	7.94968
+GO:0006464: [BP] cellular protein modification process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	166.619	216.391	385.592	107.014	124.807	102.897
+GO:0006464: [BP] cellular protein modification process|g__Escherichia.s__Escherichia_coli	0.717772	0	0.0994144	0	0	0
+GO:0006464: [BP] cellular protein modification process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.51869	3.01918	5.77853	3.45685	3.36187	2.86076
+GO:0006465: [BP] signal peptide processing	0.425418	0.979772	0.316556	0.261783	0.0761555	0.151346
+GO:0006465: [BP] signal peptide processing|g__Escherichia.s__Escherichia_coli	0.0846024	0	0	0	0	0.0379012
+GO:0006465: [BP] signal peptide processing|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.340816	0.979772	0.316556	0.261783	0.0761555	0.113477
+GO:0006468: [BP] protein phosphorylation	0.120597	0	0	0	0	0
+GO:0006468: [BP] protein phosphorylation|g__Escherichia.s__Escherichia_coli	0.120597	0	0	0	0	0
+GO:0006470: [BP] protein dephosphorylation	0.242652	0	0.177945	0	0	0
+GO:0006470: [BP] protein dephosphorylation|g__Escherichia.s__Escherichia_coli	0.242652	0	0.177945	0	0	0
+GO:0006474: [BP] N-terminal protein amino acid acetylation	9.04108	9.1337	8.4053	18.2514	16.3249	12.9769
+GO:0006474: [BP] N-terminal protein amino acid acetylation|g__Clostridium.s__Clostridium_thermocellum	0.863936	4.81023	4.66521	16.7138	12.776	11.1884
+GO:0006474: [BP] N-terminal protein amino acid acetylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	7.87636	3.88773	3.60458	1.22769	3.346	1.58729
+GO:0006474: [BP] N-terminal protein amino acid acetylation|g__Escherichia.s__Escherichia_coli	0.0736413	0	0.135454	0	0	0
+GO:0006474: [BP] N-terminal protein amino acid acetylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.227146	0.435745	0	0.309907	0.202835	0.20118
+GO:0006479: [BP] protein methylation	0.150126	0	0	0	0	0
+GO:0006479: [BP] protein methylation|g__Escherichia.s__Escherichia_coli	0.150126	0	0	0	0	0
+GO:0006486: [BP] protein glycosylation	0.228774	0.391592	0.231305	0.153225	0.327671	0.202312
+GO:0006486: [BP] protein glycosylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.228774	0.391592	0.231305	0.153225	0.327671	0.202312
+GO:0006493: [BP] protein O-linked glycosylation	2.53579	4.38419	2.75771	22.4856	20.2827	17.4859
+GO:0006493: [BP] protein O-linked glycosylation|g__Clostridium.s__Clostridium_thermocellum	2.50346	4.38419	2.69903	22.4856	20.2827	17.4859
+GO:0006493: [BP] protein O-linked glycosylation|g__Escherichia.s__Escherichia_coli	0.0323487	0	0.0586834	0	0	0
+GO:0006508: [BP] proteolysis	1.94301	5.91	3.22966	6.28965	5.7809	15.4525
+GO:0006508: [BP] proteolysis|g__Clostridium.s__Clostridium_thermocellum	0.486081	5.91	2.38342	6.28965	5.7809	15.2818
+GO:0006508: [BP] proteolysis|g__Escherichia.s__Escherichia_coli	1.45693	0	0.846285	0	0	0.170717
+GO:0006511: [BP] ubiquitin-dependent protein catabolic process	0.488463	0.781783	0.453319	0.166505	0.217876	1.0818
+GO:0006511: [BP] ubiquitin-dependent protein catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.488463	0.781783	0.453319	0.166505	0.217876	1.0818
+GO:0006515: [BP] misfolded or incompletely synthesized protein catabolic process	17.9531	26.4392	21.3721	51.9233	53.0269	60.9012
+GO:0006515: [BP] misfolded or incompletely synthesized protein catabolic process|g__Clostridium.s__Clostridium_thermocellum	3.384	11.554	11.2844	33.3054	26.5787	30.8817
+GO:0006515: [BP] misfolded or incompletely synthesized protein catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.3745	14.8853	9.86895	18.6179	26.4482	29.9665
+GO:0006515: [BP] misfolded or incompletely synthesized protein catabolic process|g__Escherichia.s__Escherichia_coli	0.194675	0	0.218766	0	0	0.0530681
+GO:0006520: [BP] cellular amino acid metabolic process	99.8358	272.043	235.383	582.121	691.718	914.149
+GO:0006520: [BP] cellular amino acid metabolic process|g__Clostridium.s__Clostridium_thermocellum	4.75844	179.434	126.828	508.831	598.8	832.114
+GO:0006520: [BP] cellular amino acid metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	93.957	92.2553	107.802	72.9845	92.6523	81.1496
+GO:0006520: [BP] cellular amino acid metabolic process|g__Escherichia.s__Escherichia_coli	0.51668	0	0.322285	0	0	0
+GO:0006520: [BP] cellular amino acid metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.603664	0.353553	0.430044	0.305778	0.265665	0.88518
+GO:0006522: [BP] alanine metabolic process	0.111701	0.321908	0.103745	0	0.124727	0.0743471
+GO:0006522: [BP] alanine metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.111701	0.321908	0.103745	0	0.124727	0.0743471
+GO:0006523: [BP] alanine biosynthetic process	32.5228	41.4276	38.7524	54.8716	50.8431	53.1722
+GO:0006523: [BP] alanine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.52193	14.4972	11.4945	32.9542	31.4178	34.2164
+GO:0006523: [BP] alanine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.9563	26.9304	27.2579	21.9174	19.4253	18.9558
+GO:0006523: [BP] alanine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0446465	0	0	0	0	0
+GO:0006525: [BP] arginine metabolic process	82.4654	17.393	23.6271	27.2268	30.7455	22.1183
+GO:0006525: [BP] arginine metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	82.2044	17.393	23.6271	27.2268	30.7455	22.1183
+GO:0006525: [BP] arginine metabolic process|g__Escherichia.s__Escherichia_coli	0.260928	0	0	0	0	0
+GO:0006526: [BP] arginine biosynthetic process	119.824	102.291	101.043	174	150.98	148.247
+GO:0006526: [BP] arginine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	7.94956	35.4299	30.2387	135.449	101.166	96.0519
+GO:0006526: [BP] arginine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	110.225	64.4571	68.7743	37.0576	48.5997	48.8203
+GO:0006526: [BP] arginine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.439563	0	0.139694	0	0	0.103581
+GO:0006526: [BP] arginine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.20966	2.4042	1.89032	1.493	1.21436	3.2715
+GO:0006527: [BP] arginine catabolic process	0.0887584	0.305059	0.196799	0	0	0
+GO:0006527: [BP] arginine catabolic process|g__Escherichia.s__Escherichia_coli	0.0887584	0	0.0493915	0	0	0
+GO:0006527: [BP] arginine catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.305059	0.147408	0	0	0
+GO:0006528: [BP] asparagine metabolic process	0.135471	0	0.0502936	0	0	0.0360579
+GO:0006528: [BP] asparagine metabolic process|g__Escherichia.s__Escherichia_coli	0.135471	0	0.0502936	0	0	0.0360579
+GO:0006529: [BP] asparagine biosynthetic process	0.134644	0.294744	0.393102	0.441022	0.239665	1.03384
+GO:0006529: [BP] asparagine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.0574548	0.220626	0.106631	0.26422	0.205223	0.324909
+GO:0006529: [BP] asparagine biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.452292
+GO:0006529: [BP] asparagine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0771897	0.074071	0.286425	0.176802	0.0344425	0.256641
+GO:0006531: [BP] aspartate metabolic process	0.518989	0.420856	0.858599	1.0871	0.831374	0.725717
+GO:0006531: [BP] aspartate metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.274417	0.316447	0.10176	0.224826	0.637198	0.219193
+GO:0006531: [BP] aspartate metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.244572	0.104409	0.756839	0.862297	0.194176	0.506492
+GO:0006535: [BP] cysteine biosynthetic process from serine	15.6605	963.532	658.245	1484.6	1302.25	1148.02
+GO:0006535: [BP] cysteine biosynthetic process from serine|g__Clostridium.s__Clostridium_thermocellum	9.21889	942.806	640.11	1470.31	1286.49	1136.76
+GO:0006535: [BP] cysteine biosynthetic process from serine|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.37537	20.7263	18.0253	14.2907	15.7527	11.2618
+GO:0006535: [BP] cysteine biosynthetic process from serine|g__Escherichia.s__Escherichia_coli	0.0662285	0	0.109744	0	0	0
+GO:0006536: [BP] glutamate metabolic process	0.27867	0	0	0	0	0.0517099
+GO:0006536: [BP] glutamate metabolic process|g__Escherichia.s__Escherichia_coli	0.27867	0	0	0	0	0.0517099
+GO:0006537: [BP] glutamate biosynthetic process	9.31776	11.9087	20.4929	18.6917	26.8972	35.0133
+GO:0006537: [BP] glutamate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.0358485	4.2676	11.7037	15.034	23.2169	30.3742
+GO:0006537: [BP] glutamate biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.8536	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0006537: [BP] glutamate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.133259	0	0.113894	0	0	0
+GO:0006537: [BP] glutamate biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.295076	0.463002	0.367572	1.10774	0.474339	0.297194
+GO:0006541: [BP] glutamine metabolic process	173.822	161.282	126.775	344.514	347.979	284.294
+GO:0006541: [BP] glutamine metabolic process|g__Clostridium.s__Clostridium_thermocellum	18.3298	83.207	52.1163	271.671	262.208	228.773
+GO:0006541: [BP] glutamine metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	153.962	75.4199	72.4702	69.8816	83.9803	51.9815
+GO:0006541: [BP] glutamine metabolic process|g__Escherichia.s__Escherichia_coli	0.487029	0	0.0439787	0	0	0.146657
+GO:0006541: [BP] glutamine metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.04323	2.65503	2.14445	2.96146	1.79075	3.39332
+GO:0006542: [BP] glutamine biosynthetic process	91.4723	77.1621	113.703	83.253	93.4154	86.1625
+GO:0006542: [BP] glutamine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.24208	10.5026	19.1823	47.285	51.3849	47.0985
+GO:0006542: [BP] glutamine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	89.8945	66.5803	94.2909	35.8416	41.9936	38.8995
+GO:0006542: [BP] glutamine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.212272	0	0	0	0	0
+GO:0006542: [BP] glutamine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.12344	0.0791584	0.229546	0.126465	0.0368081	0.164573
+GO:0006543: [BP] glutamine catabolic process	0	0.652544	0.420797	1.67843	0.202358	1.1316
+GO:0006543: [BP] glutamine catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.652544	0.420797	1.67843	0.202358	1.1316
+GO:0006544: [BP] glycine metabolic process	33.2716	51.5545	66.8396	27.4989	35.3101	21.7446
+GO:0006544: [BP] glycine metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	33.2716	51.5545	66.8396	27.4989	35.3101	21.7446
+GO:0006545: [BP] glycine biosynthetic process	4.66723	34.7584	21.8931	95.8256	97.9612	69.4259
+GO:0006545: [BP] glycine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	4.66723	34.7584	21.8931	95.8256	97.9612	69.4259
+GO:0006555: [BP] methionine metabolic process	0.943216	4.09818	3.37711	10.4034	10.0246	13.4894
+GO:0006555: [BP] methionine metabolic process|g__Clostridium.s__Clostridium_thermocellum	0.220584	3.75139	3.04175	10.2494	9.54049	13.2489
+GO:0006555: [BP] methionine metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.722657	0.346785	0.335366	0.154046	0.484084	0.24044
+GO:0006556: [BP] S-adenosylmethionine biosynthetic process	30.3955	35.7417	25.0474	107.259	143.902	106.667
+GO:0006556: [BP] S-adenosylmethionine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.44273	25.2447	17.4504	80.409	108.614	87.4991
+GO:0006556: [BP] S-adenosylmethionine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	27.8182	10.2815	7.51373	26.666	34.968	18.8696
+GO:0006556: [BP] S-adenosylmethionine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.13462	0.215492	0.0833114	0.183691	0.320661	0.298617
+GO:0006557: [BP] S-adenosylmethioninamine biosynthetic process	109.31	260.647	237.286	727.63	738.062	1032.77
+GO:0006557: [BP] S-adenosylmethioninamine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	17.8211	150.459	93.7517	655.139	644.823	950.994
+GO:0006557: [BP] S-adenosylmethioninamine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	91.4887	110.189	143.464	72.4909	93.239	81.7297
+GO:0006557: [BP] S-adenosylmethioninamine biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0.0699148	0	0	0.0501253
+GO:0006561: [BP] proline biosynthetic process	41.7449	50.4758	40.8245	45.7403	38.4935	35.5937
+GO:0006561: [BP] proline biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.540085	2.86455	2.88893	11.9237	4.87905	5.78973
+GO:0006561: [BP] proline biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	40.8268	47.4838	37.6034	33.4503	33.3063	29.2921
+GO:0006561: [BP] proline biosynthetic process|g__Escherichia.s__Escherichia_coli	0.00636766	0	0	0	0	0
+GO:0006561: [BP] proline biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.371609	0.127419	0.332163	0.366237	0.308116	0.511892
+GO:0006564: [BP] L-serine biosynthetic process	4.03785	39.484	30.5721	82.5525	82.0866	65.7799
+GO:0006564: [BP] L-serine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	3.83627	38.8084	29.9703	82.1011	81.3638	64.717
+GO:0006564: [BP] L-serine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0224326	0	0.206136	0	0	0
+GO:0006564: [BP] L-serine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.179121	0.675647	0.395673	0.451492	0.722751	1.06285
+GO:0006569: [BP] tryptophan catabolic process	0.221993	0	0.199641	0	0	0.134886
+GO:0006569: [BP] tryptophan catabolic process|g__Escherichia.s__Escherichia_coli	0.221993	0	0.199641	0	0	0.134886
+GO:0006570: [BP] tyrosine metabolic process	0.0258109	0.148609	0	0.369296	0.115025	0
+GO:0006570: [BP] tyrosine metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0258109	0.148609	0	0.369296	0.115025	0
+GO:0006571: [BP] tyrosine biosynthetic process	3.69626	16.9319	12.9249	61.6974	63.1192	58.5705
+GO:0006571: [BP] tyrosine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	3.38371	16.3874	12.5114	61.2005	62.8299	58.0045
+GO:0006571: [BP] tyrosine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0698499	0	0	0	0	0
+GO:0006571: [BP] tyrosine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.2427	0.544541	0.41349	0.496905	0.289343	0.565963
+GO:0006593: [BP] ornithine catabolic process	0.0680757	0	0	0	0	0
+GO:0006593: [BP] ornithine catabolic process|g__Escherichia.s__Escherichia_coli	0.0680757	0	0	0	0	0
+GO:0006605: [BP] protein targeting	278.784	413.217	318.639	1149.86	1074.86	1076.78
+GO:0006605: [BP] protein targeting|g__Clostridium.s__Clostridium_thermocellum	49.1403	203.27	133.526	944.343	781.244	838.359
+GO:0006605: [BP] protein targeting|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	229.033	209.599	183.924	204.744	292.953	237.531
+GO:0006605: [BP] protein targeting|g__Escherichia.s__Escherichia_coli	0.130464	0	0.283087	0	0	0.0273587
+GO:0006605: [BP] protein targeting|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.479884	0.348138	0.905871	0.768238	0.663957	0.866585
+GO:0006614: [BP] SRP-dependent cotranslational protein targeting to membrane	29.8099	55.1712	45.5279	116.803	118.897	116.044
+GO:0006614: [BP] SRP-dependent cotranslational protein targeting to membrane|g__Clostridium.s__Clostridium_thermocellum	5.75785	37.1508	25.7878	104.476	103.333	103.266
+GO:0006614: [BP] SRP-dependent cotranslational protein targeting to membrane|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.7115	17.1426	18.7198	10.9277	14.4437	12.0794
+GO:0006614: [BP] SRP-dependent cotranslational protein targeting to membrane|g__Escherichia.s__Escherichia_coli	0.0181551	0	0	0	0	0
+GO:0006614: [BP] SRP-dependent cotranslational protein targeting to membrane|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.32231	0.877791	1.02031	1.39887	1.12061	0.698649
+GO:0006627: [BP] protein processing involved in protein targeting to mitochondrion	2.75139	29.8022	17.9531	85.0748	71.176	68.1265
+GO:0006627: [BP] protein processing involved in protein targeting to mitochondrion|g__Clostridium.s__Clostridium_thermocellum	2.75139	29.8022	17.9531	85.0748	71.176	68.1265
+GO:0006629: [BP] lipid metabolic process	83.9155	88.0939	118.327	64.9693	72.8764	53.7094
+GO:0006629: [BP] lipid metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	83.4374	87.955	117.991	64.8213	72.8441	53.7094
+GO:0006629: [BP] lipid metabolic process|g__Escherichia.s__Escherichia_coli	0.118312	0	0	0	0	0
+GO:0006629: [BP] lipid metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.359773	0.138901	0.335591	0.147927	0.0322939	0
+GO:0006631: [BP] fatty acid metabolic process	0.222188	0	0	0	0	0.0960142
+GO:0006631: [BP] fatty acid metabolic process|g__Escherichia.s__Escherichia_coli	0.222188	0	0	0	0	0.0960142
+GO:0006633: [BP] fatty acid biosynthetic process	327.468	367.955	256.292	986.041	858.675	740.002
+GO:0006633: [BP] fatty acid biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	37.526	210.249	125.572	805.318	642.782	578.118
+GO:0006633: [BP] fatty acid biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	289.769	157.706	129.753	180.723	215.893	161.83
+GO:0006633: [BP] fatty acid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.172559	0	0.966629	0	0	0.0539089
+GO:0006635: [BP] fatty acid beta-oxidation	0.194262	0	0.0881829	0	0	0.0158461
+GO:0006635: [BP] fatty acid beta-oxidation|g__Escherichia.s__Escherichia_coli	0.194262	0	0.0881829	0	0	0.0158461
+GO:0006641: [BP] triglyceride metabolic process	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0006641: [BP] triglyceride metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0006646: [BP] phosphatidylethanolamine biosynthetic process	0.0296752	0.35766	0.172802	0.19058	0.415611	0.803427
+GO:0006646: [BP] phosphatidylethanolamine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0296752	0	0	0	0	0
+GO:0006646: [BP] phosphatidylethanolamine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.35766	0.172802	0.19058	0.415611	0.803427
+GO:0006650: [BP] glycerophospholipid metabolic process	3.95898	12.3819	9.11726	37.0321	34.9101	28.1677
+GO:0006650: [BP] glycerophospholipid metabolic process|g__Clostridium.s__Clostridium_thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0006650: [BP] glycerophospholipid metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.14437	4.0171	3.62457	3.57142	2.38044	3.65433
+GO:0006655: [BP] phosphatidylglycerol biosynthetic process	0.060906	0	0.244476	0	0	0.175277
+GO:0006655: [BP] phosphatidylglycerol biosynthetic process|g__Escherichia.s__Escherichia_coli	0.060906	0	0.244476	0	0	0.175277
+GO:0006662: [BP] glycerol ether metabolic process	106.143	604.228	565.001	1100.31	902.191	1567.03
+GO:0006662: [BP] glycerol ether metabolic process|g__Clostridium.s__Clostridium_thermocellum	38.8844	434.038	334.012	974.87	757.718	1469.5
+GO:0006662: [BP] glycerol ether metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	66.74	167.601	230.571	124.749	143.671	96.3272
+GO:0006662: [BP] glycerol ether metabolic process|g__Escherichia.s__Escherichia_coli	0.0685131	0	0	0	0	0
+GO:0006662: [BP] glycerol ether metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.450087	2.58903	0.41764	0.690842	0.801966	1.19499
+GO:0006665: [BP] sphingolipid metabolic process	1.10134	2.62324	4.47595	5.63485	5.90085	6.5278
+GO:0006665: [BP] sphingolipid metabolic process|g__Clostridium.s__Clostridium_thermocellum	1.10134	2.62324	4.47595	5.63485	5.90085	6.5278
+GO:0006725: [BP] cellular aromatic compound metabolic process	69.2745	87.3033	78.2037	105.671	142.594	153.353
+GO:0006725: [BP] cellular aromatic compound metabolic process|g__Clostridium.s__Clostridium_thermocellum	6.5338	41.5837	28.6976	66.6847	86.606	106.486
+GO:0006725: [BP] cellular aromatic compound metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	62.4891	45.4467	49.2424	37.3337	55.9564	46.8678
+GO:0006725: [BP] cellular aromatic compound metabolic process|g__Escherichia.s__Escherichia_coli	0.109417	0	0	0	0	0
+GO:0006725: [BP] cellular aromatic compound metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.14213	0.272947	0.263692	1.65272	0.0317297	0
+GO:0006730: [BP] one-carbon metabolic process	95.3688	280.343	308.032	377.301	410.923	384.342
+GO:0006730: [BP] one-carbon metabolic process|g__Clostridium.s__Clostridium_thermocellum	9.85743	229.335	225.962	278.674	300.875	271.853
+GO:0006730: [BP] one-carbon metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	44.7513	32.178	26.851	55.7994	72.6024	40.7809
+GO:0006730: [BP] one-carbon metabolic process|g__Escherichia.s__Escherichia_coli	0.0654265	0	0.365136	0	0	0
+GO:0006730: [BP] one-carbon metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	40.6945	18.8299	54.8542	42.8272	37.4459	71.7083
+GO:0006734: [BP] NADH metabolic process	0.0330049	0	0	0	0	0
+GO:0006734: [BP] NADH metabolic process|g__Escherichia.s__Escherichia_coli	0.0330049	0	0	0	0	0
+GO:0006739: [BP] NADP metabolic process	0.0953691	0	0.07208	0	0	0.0517099
+GO:0006739: [BP] NADP metabolic process|g__Escherichia.s__Escherichia_coli	0.0953691	0	0.07208	0	0	0.0517099
+GO:0006740: [BP] NADPH regeneration	0	0.339924	0.246461	0	0.276647	0.0588891
+GO:0006740: [BP] NADPH regeneration|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.339924	0.246461	0	0.276647	0.0588891
+GO:0006741: [BP] NADP biosynthetic process	34.1816	84.4129	70.8227	122.75	126.191	160.262
+GO:0006741: [BP] NADP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	3.27337	43.3958	38.1945	99.6322	94.2849	136.194
+GO:0006741: [BP] NADP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	30.4671	40.6183	32.4355	23.0473	31.7517	24.0679
+GO:0006741: [BP] NADP biosynthetic process|g__Escherichia.s__Escherichia_coli	0.233368	0	0	0	0	0
+GO:0006741: [BP] NADP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.207727	0.398826	0.192649	0.070855	0.15459	0
+GO:0006744: [BP] ubiquinone biosynthetic process	10.0472	78.9405	60.9828	280.813	190.958	185.591
+GO:0006744: [BP] ubiquinone biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	9.60649	78.6496	60.5386	280.636	190.9	185.378
+GO:0006744: [BP] ubiquinone biosynthetic process|g__Escherichia.s__Escherichia_coli	0.267418	0	0.122915	0	0	0.154774
+GO:0006744: [BP] ubiquinone biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.173288	0.290917	0.321247	0.177324	0.0580336	0.0576602
+GO:0006747: [BP] FAD biosynthetic process	13.7662	25.8023	21.7148	53.9423	46.7158	49.7851
+GO:0006747: [BP] FAD biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.18476	13.2453	14.3414	40.3507	33.9304	35.5191
+GO:0006747: [BP] FAD biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.502	12.0994	6.78476	11.8856	12.0771	13.8432
+GO:0006747: [BP] FAD biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0794256	0.457588	0.588683	1.70599	0.70834	0.422734
+GO:0006749: [BP] glutathione metabolic process	0.227364	0	0.0750119	0	0	0
+GO:0006749: [BP] glutathione metabolic process|g__Escherichia.s__Escherichia_coli	0.227364	0	0.0750119	0	0	0
+GO:0006750: [BP] glutathione biosynthetic process	0.0455458	1.46588	1.69992	1.48547	0.477746	0.915255
+GO:0006750: [BP] glutathione biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0	1.46588	1.69992	1.48547	0.477746	0.915255
+GO:0006750: [BP] glutathione biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0455458	0	0	0	0	0
+GO:0006772: [BP] thiamine metabolic process	5.52963	3.21931	2.74946	2.52561	2.69027	2.35556
+GO:0006772: [BP] thiamine metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.52963	3.21931	2.74946	2.52561	2.69027	2.35556
+GO:0006777: [BP] Mo-molybdopterin cofactor biosynthetic process	123.103	49.4479	44.7934	39.5914	43.7818	34.791
+GO:0006777: [BP] Mo-molybdopterin cofactor biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	121.76	47.0808	42.6733	35.536	42.2358	31.167
+GO:0006777: [BP] Mo-molybdopterin cofactor biosynthetic process|g__Escherichia.s__Escherichia_coli	0.272594	0	0.329637	0	0	0.0743471
+GO:0006777: [BP] Mo-molybdopterin cofactor biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.07089	2.3671	1.79041	4.05542	1.54603	3.54971
+GO:0006779: [BP] porphyrin-containing compound biosynthetic process	1.78538	178.515	180.603	89.851	89.4049	95.3809
+GO:0006779: [BP] porphyrin-containing compound biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.10579	177.859	180.352	89.2808	88.7406	94.6287
+GO:0006779: [BP] porphyrin-containing compound biosynthetic process|g__Escherichia.s__Escherichia_coli	0.377636	0	0.173569	0	0	0
+GO:0006779: [BP] porphyrin-containing compound biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.301954	0.655951	0.0781693	0.570197	0.664196	0.752138
+GO:0006782: [BP] protoporphyrinogen IX biosynthetic process	1.36555	15.9179	18.4161	32.5876	24.0135	23.8198
+GO:0006782: [BP] protoporphyrinogen IX biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.52645	14.6026	15.6358	31.3887	23.3237	22.4876
+GO:0006782: [BP] protoporphyrinogen IX biosynthetic process|g__Escherichia.s__Escherichia_coli	0.329223	0	0.429232	0	0	0
+GO:0006782: [BP] protoporphyrinogen IX biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.509875	1.31531	2.35099	1.19889	0.689805	1.33223
+GO:0006783: [BP] heme biosynthetic process	0.149008	0	0.109338	0	0	0
+GO:0006783: [BP] heme biosynthetic process|g__Escherichia.s__Escherichia_coli	0.149008	0	0.109338	0	0	0
+GO:0006790: [BP] sulfur compound metabolic process	0.189596	0	0	0	0	0
+GO:0006790: [BP] sulfur compound metabolic process|g__Escherichia.s__Escherichia_coli	0.189596	0	0	0	0	0
+GO:0006793: [BP] phosphorus metabolic process	0.0349249	0	0.0648178	0	0	0
+GO:0006793: [BP] phosphorus metabolic process|g__Escherichia.s__Escherichia_coli	0.0349249	0	0.0648178	0	0	0
+GO:0006796: [BP] phosphate-containing compound metabolic process	0	0.122518	0	0.195479	0.170889	0.169747
+GO:0006796: [BP] phosphate-containing compound metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.122518	0	0.195479	0.170889	0.169747
+GO:0006805: [BP] xenobiotic metabolic process	0.431008	0	0	0	0	0
+GO:0006805: [BP] xenobiotic metabolic process|g__Escherichia.s__Escherichia_coli	0.431008	0	0	0	0	0
+GO:0006807: [BP] nitrogen compound metabolic process	70.8425	110.694	105.572	163.925	168.054	177.417
+GO:0006807: [BP] nitrogen compound metabolic process|g__Clostridium.s__Clostridium_thermocellum	1.91424	18.0432	28.1874	80.3704	75.4314	96.7531
+GO:0006807: [BP] nitrogen compound metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	68.7203	92.6506	77.1084	82.9228	92.4925	80.5627
+GO:0006807: [BP] nitrogen compound metabolic process|g__Escherichia.s__Escherichia_coli	0.20797	0	0.141183	0	0	0.101221
+GO:0006807: [BP] nitrogen compound metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.134733	0.631801	0.129762	0
+GO:0006808: [BP] regulation of nitrogen utilization	30.3272	132.648	93.1623	282.021	269.392	418.098
+GO:0006808: [BP] regulation of nitrogen utilization|g__Clostridium.s__Clostridium_thermocellum	29.5502	131.469	92.9205	281.49	268.928	416.262
+GO:0006808: [BP] regulation of nitrogen utilization|g__Escherichia.s__Escherichia_coli	0.134815	0	0.0358144	0	0	0
+GO:0006808: [BP] regulation of nitrogen utilization|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.642259	1.17865	0.205956	0.531599	0.464442	1.83536
+GO:0006810: [BP] transport	1753.68	1277.15	1577.42	1916.18	1958.72	1735.23
+GO:0006810: [BP] transport|g__Clostridium.s__Clostridium_thermocellum	126.041	523.997	464.856	1379.54	1287.84	1186.42
+GO:0006810: [BP] transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1622.31	749.489	1107.24	532.472	668.228	543.656
+GO:0006810: [BP] transport|g__Escherichia.s__Escherichia_coli	2.83757	0	2.04332	0	0	0.751912
+GO:0006810: [BP] transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.49299	3.65851	3.28478	4.16726	2.65761	4.40695
+GO:0006811: [BP] ion transport	1.85792	0	1.65283	0	0	0.833373
+GO:0006811: [BP] ion transport|g__Escherichia.s__Escherichia_coli	1.85792	0	1.65283	0	0	0.833373
+GO:0006813: [BP] potassium ion transport	60.2224	46.3696	45.5753	38.0798	41.8941	39.1497
+GO:0006813: [BP] potassium ion transport|g__Clostridium.s__Clostridium_thermocellum	0.298211	3.37077	2.55194	7.38812	7.07064	9.19162
+GO:0006813: [BP] potassium ion transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	58.6051	41.5047	41.8137	28.3159	34.0254	28.5067
+GO:0006813: [BP] potassium ion transport|g__Escherichia.s__Escherichia_coli	0.626802	0	0.261166	0	0	0.120139
+GO:0006813: [BP] potassium ion transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.692204	1.49407	0.948541	2.37574	0.798038	1.33123
+GO:0006814: [BP] sodium ion transport	56.9432	64.0552	62.943	132.412	122.485	97.6701
+GO:0006814: [BP] sodium ion transport|g__Clostridium.s__Clostridium_thermocellum	5.74186	19.6854	17.1418	81.1865	67.3804	47.0333
+GO:0006814: [BP] sodium ion transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	45.0709	41.4527	36.1311	39.6496	43.8495	39.3051
+GO:0006814: [BP] sodium ion transport|g__Escherichia.s__Escherichia_coli	1.47173	0	0.0728919	0	0	0.0506427
+GO:0006814: [BP] sodium ion transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	4.65863	2.91715	9.59719	11.576	11.255	11.281
+GO:0006817: [BP] phosphate ion transport	93.5278	43.9513	36.391	53.3597	64.5653	63.8
+GO:0006817: [BP] phosphate ion transport|g__Clostridium.s__Clostridium_thermocellum	2.90847	19.9349	16.6952	32.2327	38.368	43.4403
+GO:0006817: [BP] phosphate ion transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	90.0587	23.2862	17.7497	20.0183	25.6122	19.0488
+GO:0006817: [BP] phosphate ion transport|g__Escherichia.s__Escherichia_coli	0.180774	0	0.310332	0	0	0.240666
+GO:0006817: [BP] phosphate ion transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.379945	0.730255	1.63592	1.10871	0.585046	1.07029
+GO:0006820: [BP] anion transport	0.0715025	0	0.484532	0	0	0
+GO:0006820: [BP] anion transport|g__Escherichia.s__Escherichia_coli	0.0715025	0	0.484532	0	0	0
+GO:0006824: [BP] cobalt ion transport	4.40567	28.6793	28.4783	50.0222	39.7012	32.6355
+GO:0006824: [BP] cobalt ion transport|g__Clostridium.s__Clostridium_thermocellum	4.31181	28.5606	28.0658	49.5695	39.6386	32.0258
+GO:0006824: [BP] cobalt ion transport|g__Escherichia.s__Escherichia_coli	0.0237208	0	0.0220119	0	0	0.0478292
+GO:0006824: [BP] cobalt ion transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0701415	0.118691	0.390531	0.452686	0.0626346	0.561953
+GO:0006825: [BP] copper ion transport	9.27304	157.246	73.6162	357.928	224.203	535.128
+GO:0006825: [BP] copper ion transport|g__Clostridium.s__Clostridium_thermocellum	9.2649	157.246	73.6162	357.928	224.203	535.128
+GO:0006825: [BP] copper ion transport|g__Escherichia.s__Escherichia_coli	0.00814186	0	0	0	0	0
+GO:0006826: [BP] iron ion transport	69.4112	137.404	155.174	303.186	185.874	392.659
+GO:0006826: [BP] iron ion transport|g__Clostridium.s__Clostridium_thermocellum	6.25628	115.39	79.7483	294.479	169.316	373.564
+GO:0006826: [BP] iron ion transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	62.6168	22.0141	74.5188	8.50255	16.5574	18.8664
+GO:0006826: [BP] iron ion transport|g__Escherichia.s__Escherichia_coli	0.139675	0	0.660312	0	0	0.228507
+GO:0006826: [BP] iron ion transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.398416	0	0.246461	0.203661	0	0
+GO:0006829: [BP] zinc II ion transport	0.708001	0	0.311144	0	0	0
+GO:0006829: [BP] zinc II ion transport|g__Escherichia.s__Escherichia_coli	0.708001	0	0.311144	0	0	0
+GO:0006835: [BP] dicarboxylic acid transport	0.10441	0	0.0387464	0	0	0
+GO:0006835: [BP] dicarboxylic acid transport|g__Escherichia.s__Escherichia_coli	0.10441	0	0.0387464	0	0	0
+GO:0006855: [BP] drug transmembrane transport	0.501247	0	0.178802	0	0	0.0780984
+GO:0006855: [BP] drug transmembrane transport|g__Escherichia.s__Escherichia_coli	0.501247	0	0.178802	0	0	0.0780984
+GO:0006858: [BP] extracellular transport	0	0	0.466219	0	0	0.103646
+GO:0006858: [BP] extracellular transport|g__Escherichia.s__Escherichia_coli	0	0	0.466219	0	0	0.103646
+GO:0006865: [BP] amino acid transport	83.4174	7.30237	8.34783	19.2984	15.4885	25.3564
+GO:0006865: [BP] amino acid transport|g__Clostridium.s__Clostridium_thermocellum	0.86763	4.62619	3.22208	16.2786	12.353	21.5471
+GO:0006865: [BP] amino acid transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	81.1355	2.4807	4.76494	2.9156	3.13553	2.95316
+GO:0006865: [BP] amino acid transport|g__Escherichia.s__Escherichia_coli	1.41428	0	0.360851	0	0	0.584914
+GO:0006865: [BP] amino acid transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.195469	0	0.10428	0	0.271194
+GO:0006869: [BP] lipid transport	0.173069	0	0	0	0	0
+GO:0006869: [BP] lipid transport|g__Escherichia.s__Escherichia_coli	0.173069	0	0	0	0	0
+GO:0006874: [BP] cellular calcium ion homeostasis	0.0880536	0	0	0	0	0
+GO:0006874: [BP] cellular calcium ion homeostasis|g__Escherichia.s__Escherichia_coli	0.0880536	0	0	0	0	0
+GO:0006879: [BP] cellular iron ion homeostasis	244.501	275.561	280.451	473.779	362.901	521.426
+GO:0006879: [BP] cellular iron ion homeostasis|g__Clostridium.s__Clostridium_thermocellum	6.25628	115.39	79.7483	294.479	169.316	373.564
+GO:0006879: [BP] cellular iron ion homeostasis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	236.703	159.995	199.796	179.002	193.502	146.835
+GO:0006879: [BP] cellular iron ion homeostasis|g__Escherichia.s__Escherichia_coli	0.2855	0	0.660312	0	0	0.300461
+GO:0006879: [BP] cellular iron ion homeostasis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.25642	0.1768	0.246461	0.297869	0.0822106	0.726687
+GO:0006885: [BP] regulation of pH	0.0955635	0	0.177403	0	0	0
+GO:0006885: [BP] regulation of pH|g__Escherichia.s__Escherichia_coli	0.0955635	0	0.177403	0	0	0
+GO:0006935: [BP] chemotaxis	76.9524	176.797	149.592	1098.54	1000.96	851.627
+GO:0006935: [BP] chemotaxis|g__Clostridium.s__Clostridium_thermocellum	39.9011	153.227	121.301	1091.54	990.623	840.94
+GO:0006935: [BP] chemotaxis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	36.7895	23.57	28.1773	7.00877	10.335	10.4379
+GO:0006935: [BP] chemotaxis|g__Escherichia.s__Escherichia_coli	0.261828	0	0.113623	0	0	0.248654
+GO:0006950: [BP] response to stress	14.731	167.404	300.266	122.068	166.597	227.65
+GO:0006950: [BP] response to stress|g__Clostridium.s__Clostridium_thermocellum	13.0814	162.03	293.87	116.541	163.317	222.705
+GO:0006950: [BP] response to stress|g__Escherichia.s__Escherichia_coli	0.385365	0	0.425443	0	0	0.0942679
+GO:0006950: [BP] response to stress|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.26432	5.3733	5.97118	5.52763	3.27925	4.85112
+GO:0006970: [BP] response to osmotic stress	0.398416	0	0	0	0	0
+GO:0006970: [BP] response to osmotic stress|g__Escherichia.s__Escherichia_coli	0.398416	0	0	0	0	0
+GO:0006972: [BP] hyperosmotic response	0.0460319	0	0	0	0	0
+GO:0006972: [BP] hyperosmotic response|g__Escherichia.s__Escherichia_coli	0.0460319	0	0	0	0	0
+GO:0006974: [BP] cellular response to DNA damage stimulus	5.0368	0	2.84125	0	0	1.53086
+GO:0006974: [BP] cellular response to DNA damage stimulus|g__Escherichia.s__Escherichia_coli	5.0368	0	2.84125	0	0	1.53086
+GO:0006979: [BP] response to oxidative stress	52.7793	221.037	183.465	532.053	380.628	695.682
+GO:0006979: [BP] response to oxidative stress|g__Clostridium.s__Clostridium_thermocellum	16.883	200.229	148.232	506.966	347.335	664.317
+GO:0006979: [BP] response to oxidative stress|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	33.573	20.5479	34.6584	24.9246	33.2927	30.7519
+GO:0006979: [BP] response to oxidative stress|g__Escherichia.s__Escherichia_coli	1.7608	0	0.323773	0	0	0.506395
+GO:0006979: [BP] response to oxidative stress|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.562542	0.259319	0.250611	0.162278	0	0.106039
+GO:0007049: [BP] cell cycle	387.377	937.213	760.184	1929.46	1820.54	1968.23
+GO:0007049: [BP] cell cycle|g__Clostridium.s__Clostridium_thermocellum	87.6465	623.172	492.517	1658.04	1523.41	1746.42
+GO:0007049: [BP] cell cycle|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	297.796	313.98	266.957	271.272	297.044	221.046
+GO:0007049: [BP] cell cycle|g__Escherichia.s__Escherichia_coli	1.82285	0	0.593464	0	0	0.632937
+GO:0007049: [BP] cell cycle|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0007059: [BP] chromosome segregation	24.3815	62.1497	58.8076	134.221	125.504	196.604
+GO:0007059: [BP] chromosome segregation|g__Clostridium.s__Clostridium_thermocellum	6.72379	45.7892	39.4453	121.488	116.209	186.388
+GO:0007059: [BP] chromosome segregation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.2546	16.0043	18.9494	12.4801	8.90857	9.72214
+GO:0007059: [BP] chromosome segregation|g__Escherichia.s__Escherichia_coli	0.279472	0	0.0112766	0	0	0
+GO:0007059: [BP] chromosome segregation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.123683	0.356213	0.401717	0.253103	0.386681	0.493718
+GO:0007062: [BP] sister chromatid cohesion	0.0836546	0	0	0	0	0
+GO:0007062: [BP] sister chromatid cohesion|g__Escherichia.s__Escherichia_coli	0.0836546	0	0	0	0	0
+GO:0007155: [BP] cell adhesion	6.99991	22.2312	18.2745	121.309	115.524	113.806
+GO:0007155: [BP] cell adhesion|g__Clostridium.s__Clostridium_thermocellum	4.5617	21.9151	16.9857	121.04	115.348	113.012
+GO:0007155: [BP] cell adhesion|g__Escherichia.s__Escherichia_coli	2.14184	0	1.28882	0	0	0.662333
+GO:0007155: [BP] cell adhesion|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.296339	0.31612	0	0.269493	0.176445	0.131458
+GO:0007165: [BP] signal transduction	0.354013	0.723114	0.509972	3.33183	2.72595	2.78538
+GO:0007165: [BP] signal transduction|g__Clostridium.s__Clostridium_thermocellum	0.354013	0.723114	0.509972	3.33183	2.72595	2.76181
+GO:0007165: [BP] signal transduction|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0235751
+GO:0007186: [BP] G-protein coupled receptor signaling pathway	0.361523	0	0.379841	0	0	0.0899345
+GO:0007186: [BP] G-protein coupled receptor signaling pathway|g__Escherichia.s__Escherichia_coli	0.361523	0	0.379841	0	0	0.0899345
+GO:0007446: [BP] imaginal disc growth	0.85927	1.48119	1.15811	14.8812	12.7606	11.0413
+GO:0007446: [BP] imaginal disc growth|g__Clostridium.s__Clostridium_thermocellum	0.844128	1.36483	0.989498	14.7573	12.6659	10.6787
+GO:0007446: [BP] imaginal disc growth|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0151414	0.116311	0.168608	0.123953	0.0946464	0.362616
+GO:0007608: [BP] sensory perception of smell	0.361523	0	0.379841	0	0	0.0899345
+GO:0007608: [BP] sensory perception of smell|g__Escherichia.s__Escherichia_coli	0.361523	0	0.379841	0	0	0.0899345
+GO:0008026: [MF] ATP-dependent helicase activity	0.0605657	0.0581553	0.22481	0.108459	0.0809953	0.181324
+GO:0008026: [MF] ATP-dependent helicase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0605657	0.0581553	0.22481	0.108459	0.0809953	0.181324
+GO:0008033: [BP] tRNA processing	46.4656	83.5582	70.89	169.051	158.97	143.542
+GO:0008033: [BP] tRNA processing|g__Clostridium.s__Clostridium_thermocellum	8.31952	51.1094	43.9072	135.764	123.42	117.665
+GO:0008033: [BP] tRNA processing|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	37.0863	31.6207	25.6656	32.4106	35.0013	24.7912
+GO:0008033: [BP] tRNA processing|g__Escherichia.s__Escherichia_coli	0.480637	0	0.182185	0	0	0
+GO:0008033: [BP] tRNA processing|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.579141	0.828223	1.13497	0.876174	0.548867	1.08604
+GO:0008047: [MF] enzyme activator activity	3.2277	1.42733	6.11376	1.58348	2.86908	1.84513
+GO:0008047: [MF] enzyme activator activity|g__Escherichia.s__Escherichia_coli	0.0704575	0	0	0	0	0
+GO:0008047: [MF] enzyme activator activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.15724	1.42733	6.11376	1.58348	2.86908	1.84513
+GO:0008073: [MF] ornithine decarboxylase inhibitor activity	0.0983099	0	0.072937	0	0	0
+GO:0008073: [MF] ornithine decarboxylase inhibitor activity|g__Escherichia.s__Escherichia_coli	0.0983099	0	0.072937	0	0	0
+GO:0008080: [MF] N-acetyltransferase activity	53.3797	116.49	86.2902	460.736	363.85	505.924
+GO:0008080: [MF] N-acetyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	31.4505	94.0007	69.4138	446.086	347.924	492.377
+GO:0008080: [MF] N-acetyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.1521	21.4199	16.3102	13.8887	15.5413	13.1466
+GO:0008080: [MF] N-acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0.484647	0	0.0994144	0	0	0
+GO:0008080: [MF] N-acetyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.292475	1.06915	0.466806	0.760503	0.384402	0.401132
+GO:0008081: [MF] phosphoric diester hydrolase activity	0.0576492	0	0	0	0	0
+GO:0008081: [MF] phosphoric diester hydrolase activity|g__Escherichia.s__Escherichia_coli	0.0576492	0	0	0	0	0
+GO:0008094: [MF] DNA-dependent ATPase activity	92.6392	200.034	215.153	271.744	280.496	280.782
+GO:0008094: [MF] DNA-dependent ATPase activity|g__Clostridium.s__Clostridium_thermocellum	16.5444	106.025	77.9981	221.871	221.813	226.413
+GO:0008094: [MF] DNA-dependent ATPase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	75.3055	93.129	134.803	48.402	58.49	53.6726
+GO:0008094: [MF] DNA-dependent ATPase activity|g__Escherichia.s__Escherichia_coli	0.139748	0	0	0	0	0.0384186
+GO:0008094: [MF] DNA-dependent ATPase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.649574	0.880404	2.35212	1.47032	0.193286	0.658258
+GO:0008097: [MF] 5S rRNA binding	48.9648	69.2967	39.2528	84.6703	106.061	91.244
+GO:0008097: [MF] 5S rRNA binding|g__Clostridium.s__Clostridium_thermocellum	1.0118	1.38261	0	6.06257	3.34383	4.79799
+GO:0008097: [MF] 5S rRNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	47.7832	66.6101	38.517	77.8544	102.211	85.4707
+GO:0008097: [MF] 5S rRNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.169837	1.30406	0.735775	0.753366	0.505895	0.975341
+GO:0008106: [MF] alcohol dehydrogenase (NADP+) activity	0.105261	0	0	0	0	0.0743148
+GO:0008106: [MF] alcohol dehydrogenase (NADP+) activity|g__Escherichia.s__Escherichia_coli	0.105261	0	0	0	0	0.0743148
+GO:0008108: [MF] UDP-glucose:hexose-1-phosphate uridylyltransferase activity	9.59595	13.7924	5.45755	15.3531	18.278	12.0259
+GO:0008108: [MF] UDP-glucose:hexose-1-phosphate uridylyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.59595	13.7924	5.45755	15.3531	18.278	12.0259
+GO:0008113: [MF] peptide-methionine (S)-S-oxide reductase activity	2.57249	4.97825	2.76349	5.11407	3.33096	9.24485
+GO:0008113: [MF] peptide-methionine (S)-S-oxide reductase activity|g__Clostridium.s__Clostridium_thermocellum	0.217497	2.60971	0.706365	3.28263	1.65025	7.94968
+GO:0008113: [MF] peptide-methionine (S)-S-oxide reductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.85163	2.10927	1.80651	1.83144	1.68072	1.29517
+GO:0008113: [MF] peptide-methionine (S)-S-oxide reductase activity|g__Escherichia.s__Escherichia_coli	0.0994036	0	0	0	0	0
+GO:0008113: [MF] peptide-methionine (S)-S-oxide reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.403958	0.259319	0.250611	0	0	0
+GO:0008115: [MF] sarcosine oxidase activity	24.9721	21.0834	19.3698	18.0473	21.2332	16.4641
+GO:0008115: [MF] sarcosine oxidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	24.9721	21.0834	19.3698	18.0473	21.2332	16.4641
+GO:0008121: [MF] ubiquinol-cytochrome-c reductase activity	0.170857	0.787664	0.539201	1.69599	1.54104	2.41028
+GO:0008121: [MF] ubiquinol-cytochrome-c reductase activity|g__Clostridium.s__Clostridium_thermocellum	0.170857	0.787664	0.539201	1.69599	1.54104	2.41028
+GO:0008131: [MF] primary amine oxidase activity	0.0686346	0	0	0	0	0
+GO:0008131: [MF] primary amine oxidase activity|g__Escherichia.s__Escherichia_coli	0.0686346	0	0	0	0	0
+GO:0008134: [MF] transcription factor binding	0.0430911	0	0	0	0	0
+GO:0008134: [MF] transcription factor binding|g__Escherichia.s__Escherichia_coli	0.0430911	0	0	0	0	0
+GO:0008137: [MF] NADH dehydrogenase (ubiquinone) activity	129.292	277.482	194.803	695.487	658.6	623.254
+GO:0008137: [MF] NADH dehydrogenase (ubiquinone) activity|g__Clostridium.s__Clostridium_thermocellum	14.3932	138.42	72.764	533.184	488.292	520.938
+GO:0008137: [MF] NADH dehydrogenase (ubiquinone) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	114.261	138.653	121.844	161.211	169.648	101.808
+GO:0008137: [MF] NADH dehydrogenase (ubiquinone) activity|g__Escherichia.s__Escherichia_coli	0.514347	0	0.0653591	0	0	0.106557
+GO:0008137: [MF] NADH dehydrogenase (ubiquinone) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.123853	0.409561	0.12941	1.09162	0.659269	0.401132
+GO:0008138: [MF] protein tyrosine/serine/threonine phosphatase activity	0.0208286	0	0.177945	0	0	0
+GO:0008138: [MF] protein tyrosine/serine/threonine phosphatase activity|g__Escherichia.s__Escherichia_coli	0.0208286	0	0.177945	0	0	0
+GO:0008143: [MF] poly(A) binding	0.759696	2.22096	1.62162	1.49129	0.460601	0.947335
+GO:0008143: [MF] poly(A) binding|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.027294
+GO:0008143: [MF] poly(A) binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.759696	2.22096	1.62162	1.49129	0.460601	0.920041
+GO:0008152: [BP] metabolic process	11.7052	17.5581	30.559	73.0693	53.7078	61.136
+GO:0008152: [BP] metabolic process|g__Clostridium.s__Clostridium_thermocellum	11.168	16.4009	29.6268	72.423	52.9498	59.8253
+GO:0008152: [BP] metabolic process|g__Escherichia.s__Escherichia_coli	0.0251547	0	0	0	0	0
+GO:0008152: [BP] metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.511989	1.15709	0.932213	0.64635	0.758039	1.31066
+GO:0008168: [MF] methyltransferase activity	237.164	536.732	498.277	802.53	763.712	744.428
+GO:0008168: [MF] methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	24.4054	333.039	291.441	657.494	589.854	592.538
+GO:0008168: [MF] methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	210.994	200.193	203.621	142.107	171.568	148.81
+GO:0008168: [MF] methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.296266	0	0.33523	0	0	0.256674
+GO:0008168: [MF] methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.46826	3.50001	2.88031	2.92843	2.29107	2.82325
+GO:0008170: [MF] N-methyltransferase activity	5.71087	12.183	9.05695	7.76403	8.58624	4.84902
+GO:0008170: [MF] N-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.114326	8.09129	5.53351	1.43152	1.85276	1.02906
+GO:0008170: [MF] N-methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.46258	3.89958	3.45221	6.18637	6.63148	3.68699
+GO:0008170: [MF] N-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0768494	0	0.071268	0	0	0
+GO:0008170: [MF] N-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0571388	0.192062	0	0.146112	0.102004	0.132978
+GO:0008171: [MF] O-methyltransferase activity	0.298211	2.00458	0.36897	5.43305	5.09589	4.95522
+GO:0008171: [MF] O-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.298211	2.00458	0.36897	5.43305	5.09589	4.95522
+GO:0008173: [MF] RNA methyltransferase activity	78.7149	62.4136	56.8976	130.589	126.149	133.631
+GO:0008173: [MF] RNA methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	16.5154	41.3666	32.725	101.785	92.4117	109.412
+GO:0008173: [MF] RNA methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	62.1147	20.9657	24.0939	28.4997	33.7371	24.2185
+GO:0008173: [MF] RNA methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0848211	0.0813054	0.0787106	0.303739	0	0
+GO:0008175: [MF] tRNA methyltransferase activity	0.704259	6.57398	6.28341	16.3987	16.4713	25.6325
+GO:0008175: [MF] tRNA methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.704259	6.47027	5.88268	16.0671	16.4713	25.6325
+GO:0008175: [MF] tRNA methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.103709	0.400725	0.331593	0	0
+GO:0008176: [MF] tRNA (guanine-N7-)-methyltransferase activity	7.51027	28.1802	21.4238	41.0326	48.1098	51.0667
+GO:0008176: [MF] tRNA (guanine-N7-)-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.19758	22.9953	17.6967	38.2731	45.5668	49.7891
+GO:0008176: [MF] tRNA (guanine-N7-)-methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.27006	5.18488	3.72714	2.75951	2.54302	1.27764
+GO:0008176: [MF] tRNA (guanine-N7-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0426293	0	0	0	0	0
+GO:0008177: [MF] succinate dehydrogenase (ubiquinone) activity	0.0830956	0	0	0	0	0
+GO:0008177: [MF] succinate dehydrogenase (ubiquinone) activity|g__Escherichia.s__Escherichia_coli	0.0830956	0	0	0	0	0
+GO:0008184: [MF] glycogen phosphorylase activity	16.2507	19.177	15.9337	80.0788	66.9233	63.0364
+GO:0008184: [MF] glycogen phosphorylase activity|g__Clostridium.s__Clostridium_thermocellum	2.1006	8.77968	7.46055	66.069	52.7995	53.1133
+GO:0008184: [MF] glycogen phosphorylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.0012	10.3973	8.39276	14.0098	14.1239	9.89496
+GO:0008184: [MF] glycogen phosphorylase activity|g__Escherichia.s__Escherichia_coli	0.148984	0	0.0803795	0	0	0.0281348
+GO:0008186: [MF] RNA-dependent ATPase activity	58.6358	72.1542	79.552	106.114	108.893	85.7461
+GO:0008186: [MF] RNA-dependent ATPase activity|g__Clostridium.s__Clostridium_thermocellum	10.1748	24.4047	29.7108	58.603	55.1107	60.7126
+GO:0008186: [MF] RNA-dependent ATPase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	48.4172	47.7495	49.7599	47.5107	53.7822	25.0062
+GO:0008186: [MF] RNA-dependent ATPase activity|g__Escherichia.s__Escherichia_coli	0.0437959	0	0.0812816	0	0	0.027294
+GO:0008198: [MF] ferrous iron binding	66.2489	66.9811	73.359	75.9854	99.2615	88.2437
+GO:0008198: [MF] ferrous iron binding|g__Clostridium.s__Clostridium_thermocellum	3.19713	20.6728	23.0402	38.1483	43.2343	41.2012
+GO:0008198: [MF] ferrous iron binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	62.4891	45.4467	49.2424	37.3337	55.9564	46.8678
+GO:0008198: [MF] ferrous iron binding|g__Escherichia.s__Escherichia_coli	0.159435	0	0	0	0	0
+GO:0008198: [MF] ferrous iron binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.403204	0.861642	1.07642	0.503371	0.0707732	0.174792
+GO:0008199: [MF] ferric iron binding	244.566	275.561	280.451	473.779	362.901	521.323
+GO:0008199: [MF] ferric iron binding|g__Clostridium.s__Clostridium_thermocellum	6.25628	115.39	79.7483	294.479	169.316	373.564
+GO:0008199: [MF] ferric iron binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	236.703	159.995	199.796	179.002	193.502	146.835
+GO:0008199: [MF] ferric iron binding|g__Escherichia.s__Escherichia_coli	0.350464	0	0.660312	0	0	0.197785
+GO:0008199: [MF] ferric iron binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.25642	0.1768	0.246461	0.297869	0.0822106	0.726687
+GO:0008216: [BP] spermidine metabolic process	0.0852829	0	0	0	0	0
+GO:0008216: [BP] spermidine metabolic process|g__Escherichia.s__Escherichia_coli	0.0852829	0	0	0	0	0
+GO:0008233: [MF] peptidase activity	284.145	272.723	303.083	435.549	449.565	500.693
+GO:0008233: [MF] peptidase activity|g__Clostridium.s__Clostridium_thermocellum	33.4122	124.989	104.637	327.936	309.368	384.097
+GO:0008233: [MF] peptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	246.804	144.137	193.867	103.974	137.478	113.159
+GO:0008233: [MF] peptidase activity|g__Escherichia.s__Escherichia_coli	0.281562	0	0.387373	0	0	0.0229283
+GO:0008233: [MF] peptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.64777	3.59765	4.19178	3.63892	2.71909	3.41373
+GO:0008234: [MF] cysteine-type peptidase activity	48.7174	96.3913	81.924	118.292	124.486	128.528
+GO:0008234: [MF] cysteine-type peptidase activity|g__Clostridium.s__Clostridium_thermocellum	7.07246	25.0548	21.4841	39.2775	35.7906	61.1063
+GO:0008234: [MF] cysteine-type peptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	41.2371	71.3365	60.2322	79.0146	88.6953	67.4213
+GO:0008234: [MF] cysteine-type peptidase activity|g__Escherichia.s__Escherichia_coli	0.407871	0	0.207625	0	0	0
+GO:0008235: [MF] metalloexopeptidase activity	0.355301	1.84039	0.726528	4.58548	4.02984	5.22299
+GO:0008235: [MF] metalloexopeptidase activity|g__Clostridium.s__Clostridium_thermocellum	0.309172	1.84039	0.688639	4.58548	4.02984	5.22299
+GO:0008235: [MF] metalloexopeptidase activity|g__Escherichia.s__Escherichia_coli	0.0461291	0	0.0378893	0	0	0
+GO:0008236: [MF] serine-type peptidase activity	208.606	196.898	179.155	281.979	274.449	274.135
+GO:0008236: [MF] serine-type peptidase activity|g__Clostridium.s__Clostridium_thermocellum	12.2412	71.1457	51.4994	188.429	169.436	184.402
+GO:0008236: [MF] serine-type peptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	196.107	125.357	126.794	93.0754	104.644	89.5583
+GO:0008236: [MF] serine-type peptidase activity|g__Escherichia.s__Escherichia_coli	0.0511843	0	0	0	0	0.0379012
+GO:0008236: [MF] serine-type peptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.206293	0.395139	0.861892	0.475119	0.368624	0.137311
+GO:0008237: [MF] metallopeptidase activity	197.023	188.44	246.054	279.833	287.98	198.212
+GO:0008237: [MF] metallopeptidase activity|g__Clostridium.s__Clostridium_thermocellum	6.52338	33.9952	27.8926	100.731	88.4149	81.925
+GO:0008237: [MF] metallopeptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	189.094	153.94	216.378	178.381	199.241	115.163
+GO:0008237: [MF] metallopeptidase activity|g__Escherichia.s__Escherichia_coli	0.727834	0	0.841324	0	0	0.199531
+GO:0008237: [MF] metallopeptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.6775	0.504355	0.942091	0.720885	0.324046	0.924407
+GO:0008239: [MF] dipeptidyl-peptidase activity	0.309172	1.84039	0.688639	4.58548	4.02984	5.22299
+GO:0008239: [MF] dipeptidyl-peptidase activity|g__Clostridium.s__Clostridium_thermocellum	0.309172	1.84039	0.688639	4.58548	4.02984	5.22299
+GO:0008251: [MF] tRNA-specific adenosine deaminase activity	0.068659	0	0	0	0	0
+GO:0008251: [MF] tRNA-specific adenosine deaminase activity|g__Escherichia.s__Escherichia_coli	0.068659	0	0	0	0	0
+GO:0008252: [MF] nucleotidase activity	0	0	0.116555	0	0	0.0883498
+GO:0008252: [MF] nucleotidase activity|g__Escherichia.s__Escherichia_coli	0	0	0.116555	0	0	0.0883498
+GO:0008253: [MF] 5'-nucleotidase activity	313.619	78.9888	126.106	69.628	73.5935	70.4739
+GO:0008253: [MF] 5'-nucleotidase activity|g__Clostridium.s__Clostridium_thermocellum	0.467391	8.36461	6.45373	16.038	10.6595	18.6532
+GO:0008253: [MF] 5'-nucleotidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	312.975	70.6242	119.511	53.59	62.7981	51.8206
+GO:0008253: [MF] 5'-nucleotidase activity|g__Escherichia.s__Escherichia_coli	0.177371	0	0	0	0	0
+GO:0008253: [MF] 5'-nucleotidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.141183	0	0.13586	0
+GO:0008254: [MF] 3'-nucleotidase activity	0	0	0.161661	0	0	0
+GO:0008254: [MF] 3'-nucleotidase activity|g__Escherichia.s__Escherichia_coli	0	0	0.161661	0	0	0
+GO:0008263: [MF] pyrimidine-specific mismatch base pair DNA N-glycosylase activity	0.272497	0	0	0	0	0
+GO:0008263: [MF] pyrimidine-specific mismatch base pair DNA N-glycosylase activity|g__Escherichia.s__Escherichia_coli	0.272497	0	0	0	0	0
+GO:0008270: [MF] zinc ion binding	669.065	1306.46	1221.71	2427.83	2388.9	2526.42
+GO:0008270: [MF] zinc ion binding|g__Clostridium.s__Clostridium_thermocellum	121.632	845.19	691.368	2038.04	1960.51	2121.12
+GO:0008270: [MF] zinc ion binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	531.423	413.505	476.427	326.229	408.752	358.994
+GO:0008270: [MF] zinc ion binding|g__Escherichia.s__Escherichia_coli	4.09348	0	1.76447	0	0	1.82818
+GO:0008270: [MF] zinc ion binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	11.9165	47.7652	52.1486	63.5636	19.6411	44.476
+GO:0008271: [MF] secondary active sulfate transmembrane transporter activity	1.03295	113.725	101.512	227.825	204.608	207.385
+GO:0008271: [MF] secondary active sulfate transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	0.738989	113.725	100.607	227.825	204.608	207.385
+GO:0008271: [MF] secondary active sulfate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.293933	0	0.904563	0	0	0
+GO:0008273: [MF] calcium, potassium:sodium antiporter activity	0.0880536	0	0	0	0	0
+GO:0008273: [MF] calcium, potassium:sodium antiporter activity|g__Escherichia.s__Escherichia_coli	0.0880536	0	0	0	0	0
+GO:0008276: [MF] protein methyltransferase activity	22.1573	41.3588	33.4719	57.8263	67.8746	68.3095
+GO:0008276: [MF] protein methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.12718	33.8063	26.6336	52.0638	60.7265	63.5674
+GO:0008276: [MF] protein methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.5106	5.65722	5.81867	5.00208	6.73144	3.92394
+GO:0008276: [MF] protein methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0663987	0	0.123231	0	0	0
+GO:0008276: [MF] protein methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.4531	1.89542	0.896399	0.760503	0.416696	0.818271
+GO:0008289: [MF] lipid binding	71.0235	688.862	444.885	933.118	901.344	808.765
+GO:0008289: [MF] lipid binding|g__Clostridium.s__Clostridium_thermocellum	40.434	668.937	426.393	906.92	869.677	781.444
+GO:0008289: [MF] lipid binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	30.5067	19.9254	17.9561	26.1985	31.6671	27.2967
+GO:0008289: [MF] lipid binding|g__Escherichia.s__Escherichia_coli	0.0827067	0	0.535728	0	0	0.0247716
+GO:0008295: [BP] spermidine biosynthetic process	114.023	292.142	268.175	812.57	830.683	1123.86
+GO:0008295: [BP] spermidine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	22.3671	181.953	124.444	740.079	737.444	1042.03
+GO:0008295: [BP] spermidine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	91.4887	110.189	143.464	72.4909	93.239	81.7297
+GO:0008295: [BP] spermidine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.167066	0	0.267075	0	0	0.095238
+GO:0008296: [MF] 3'-5'-exodeoxyribonuclease activity	0.00811755	0	0.0450612	0	0	0
+GO:0008296: [MF] 3'-5'-exodeoxyribonuclease activity|g__Escherichia.s__Escherichia_coli	0.00811755	0	0.0450612	0	0	0
+GO:0008299: [BP] isoprenoid biosynthetic process	3.42184	18.6489	12.1521	60.6667	57.4375	55.3102
+GO:0008299: [BP] isoprenoid biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.97119	17.9604	12.1521	59.794	56.8354	54.8149
+GO:0008299: [BP] isoprenoid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.215067	0	0	0	0	0.077581
+GO:0008299: [BP] isoprenoid biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.235579	0.688436	0	0.872668	0.602039	0.417689
+GO:0008310: [MF] single-stranded DNA 3'-5' exodeoxyribonuclease activity	0	0	0.0705914	0	0	0
+GO:0008310: [MF] single-stranded DNA 3'-5' exodeoxyribonuclease activity|g__Escherichia.s__Escherichia_coli	0	0	0.0705914	0	0	0
+GO:0008312: [MF] 7S RNA binding	14.2021	33.6807	26.5458	42.0591	47.9919	48.3257
+GO:0008312: [MF] 7S RNA binding|g__Clostridium.s__Clostridium_thermocellum	1.75473	21.6171	14.4992	36.0885	39.4842	42.3414
+GO:0008312: [MF] 7S RNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.3594	11.5885	11.5127	5.29587	7.73811	5.73753
+GO:0008312: [MF] 7S RNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.08797	0.475044	0.533924	0.674801	0.769651	0.246778
+GO:0008320: [MF] protein transmembrane transporter activity	0.621406	0	0	0	0	0
+GO:0008320: [MF] protein transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.621406	0	0	0	0	0
+GO:0008324: [MF] cation transmembrane transporter activity	195.168	102.417	131.749	162.687	139.2	99.9484
+GO:0008324: [MF] cation transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	2.51355	11.0644	11.4866	62.5828	36.163	32.0477
+GO:0008324: [MF] cation transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	191.391	89.6278	118.539	97.2818	101.387	65.8208
+GO:0008324: [MF] cation transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.360235	0	0.176185	0	0	0.0675236
+GO:0008324: [MF] cation transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.902944	1.72487	1.54724	2.82278	1.64912	2.01235
+GO:0008360: [BP] regulation of cell shape	364.417	689.453	572.079	1263.75	1215.38	1254.31
+GO:0008360: [BP] regulation of cell shape|g__Clostridium.s__Clostridium_thermocellum	66.5047	419.356	357.738	1009.31	942.865	1047.15
+GO:0008360: [BP] regulation of cell shape|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	296.192	270.097	213.356	254.444	272.511	206.652
+GO:0008360: [BP] regulation of cell shape|g__Escherichia.s__Escherichia_coli	1.72031	0	0.985844	0	0	0.506007
+GO:0008375: [MF] acetylglucosaminyltransferase activity	0	0	0.0383855	0	0	0
+GO:0008375: [MF] acetylglucosaminyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0383855	0	0	0
+GO:0008381: [MF] mechanically-gated ion channel activity	0.132797	0	0	0	0	0
+GO:0008381: [MF] mechanically-gated ion channel activity|g__Escherichia.s__Escherichia_coli	0.132797	0	0	0	0	0
+GO:0008408: [MF] 3'-5' exonuclease activity	147.012	133.618	153.56	192.488	189.648	198.769
+GO:0008408: [MF] 3'-5' exonuclease activity|g__Clostridium.s__Clostridium_thermocellum	9.81626	53.0587	43.1783	144.084	132.052	151.627
+GO:0008408: [MF] 3'-5' exonuclease activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	136.446	79.7879	109.482	47.9617	57.4811	46.6896
+GO:0008408: [MF] 3'-5' exonuclease activity|g__Escherichia.s__Escherichia_coli	0.434289	0	0.223006	0	0	0.0194033
+GO:0008408: [MF] 3'-5' exonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.315248	0.770955	0.677046	0.442539	0.114136	0.433632
+GO:0008409: [MF] 5'-3' exonuclease activity	3.56587	18.9304	15.8033	45.3576	40.0766	46.6433
+GO:0008409: [MF] 5'-3' exonuclease activity|g__Clostridium.s__Clostridium_thermocellum	3.33376	18.9304	15.4808	44.8822	39.9729	46.566
+GO:0008409: [MF] 5'-3' exonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.232128	0	0.32251	0.475343	0.103718	0.0772576
+GO:0008410: [MF] CoA-transferase activity	0.0227486	0	0	0	0	0
+GO:0008410: [MF] CoA-transferase activity|g__Escherichia.s__Escherichia_coli	0.0227486	0	0	0	0	0
+GO:0008412: [MF] 4-hydroxybenzoate octaprenyltransferase activity	0.100838	0	0.0623821	0	0	0
+GO:0008412: [MF] 4-hydroxybenzoate octaprenyltransferase activity|g__Escherichia.s__Escherichia_coli	0.100838	0	0.0623821	0	0	0
+GO:0008413: [MF] 8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity	0.296388	0.189728	1.64873	2.62815	3.08639	2.23481
+GO:0008413: [MF] 8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity|g__Clostridium.s__Clostridium_thermocellum	0.296388	0.189728	1.64873	2.62815	3.08639	2.23481
+GO:0008417: [MF] fucosyltransferase activity	0.13061	0	0	0	0	0.069561
+GO:0008417: [MF] fucosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.13061	0	0	0	0	0.069561
+GO:0008422: [MF] beta-glucosidase activity	44.539	159.011	199.836	380.011	390.901	329.343
+GO:0008422: [MF] beta-glucosidase activity|g__Clostridium.s__Clostridium_thermocellum	44.539	159.011	199.836	380.011	390.901	329.343
+GO:0008425: [MF] 2-polyprenyl-6-methoxy-1,4-benzoquinone methyltransferase activity	0	0	0	0	0	0.106654
+GO:0008425: [MF] 2-polyprenyl-6-methoxy-1,4-benzoquinone methyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.106654
+GO:0008444: [MF] CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase activity	4.70906	30.4238	25.0534	76.7492	71.5545	67.4362
+GO:0008444: [MF] CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	4.64815	30.4238	25.0534	76.7492	71.5545	67.4362
+GO:0008444: [MF] CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase activity|g__Escherichia.s__Escherichia_coli	0.060906	0	0	0	0	0
+GO:0008448: [MF] N-acetylglucosamine-6-phosphate deacetylase activity	93.7033	40.6153	65.1811	32.2884	37.6936	35.0114
+GO:0008448: [MF] N-acetylglucosamine-6-phosphate deacetylase activity|g__Clostridium.s__Clostridium_thermocellum	1.20035	4.47483	3.62673	11.2753	13.3918	13.4697
+GO:0008448: [MF] N-acetylglucosamine-6-phosphate deacetylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	92.503	36.1405	61.5543	21.013	24.3019	21.5417
+GO:0008452: [MF] RNA ligase activity	29.3218	27.7125	28.5783	35.9734	38.0577	31.2452
+GO:0008452: [MF] RNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	0.910041	7.48463	3.94117	18.5528	19.1552	20.1523
+GO:0008452: [MF] RNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	28.137	19.8382	24.1651	17.1563	18.6719	10.7006
+GO:0008452: [MF] RNA ligase activity|g__Escherichia.s__Escherichia_coli	0.090241	0	0.33505	0	0	0
+GO:0008452: [MF] RNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.184541	0.389771	0.136988	0.264345	0.23068	0.392303
+GO:0008453: [MF] alanine-glyoxylate transaminase activity	20.0107	25.3463	31.8029	33.1498	38.9397	22.471
+GO:0008453: [MF] alanine-glyoxylate transaminase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	20.0107	25.3463	31.8029	33.1498	38.9397	22.471
+GO:0008460: [MF] dTDP-glucose 4,6-dehydratase activity	0.163955	0	0.305956	0.176628	0.486688	0.221392
+GO:0008460: [MF] dTDP-glucose 4,6-dehydratase activity|g__Clostridium.s__Clostridium_thermocellum	0	0	0	0.118854	0.285068	0.0772576
+GO:0008460: [MF] dTDP-glucose 4,6-dehydratase activity|g__Escherichia.s__Escherichia_coli	0.0794256	0	0.0963923	0	0	0.0691405
+GO:0008460: [MF] dTDP-glucose 4,6-dehydratase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0845295	0	0.209564	0.0577733	0.20162	0.0749939
+GO:0008470: [MF] isovaleryl-CoA dehydrogenase activity	0.065864	0	0.0611642	0	0	0
+GO:0008470: [MF] isovaleryl-CoA dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.065864	0	0.0611642	0	0	0
+GO:0008474: [MF] palmitoyl-(protein) hydrolase activity	0.17567	0	0	0	0	0
+GO:0008474: [MF] palmitoyl-(protein) hydrolase activity|g__Escherichia.s__Escherichia_coli	0.17567	0	0	0	0	0
+GO:0008478: [MF] pyridoxal kinase activity	0.0681243	0	0	0	0	0
+GO:0008478: [MF] pyridoxal kinase activity|g__Escherichia.s__Escherichia_coli	0.0681243	0	0	0	0	0
+GO:0008479: [MF] queuine tRNA-ribosyltransferase activity	3.17673	9.44072	7.99046	29.6481	29.8342	26.5023
+GO:0008479: [MF] queuine tRNA-ribosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.897136	7.70357	5.64186	27.2274	27.742	24.7672
+GO:0008479: [MF] queuine tRNA-ribosyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.0316	1.57836	2.19519	2.15738	2.01841	1.60763
+GO:0008479: [MF] queuine tRNA-ribosyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.247999	0.158737	0.153407	0.26335	0.0738116	0.12748
+GO:0008483: [MF] transaminase activity	285.136	1640.97	1492.57	906.253	962.564	1009.74
+GO:0008483: [MF] transaminase activity|g__Clostridium.s__Clostridium_thermocellum	34.6064	1503.8	1284.56	797.63	836.735	918.54
+GO:0008483: [MF] transaminase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	249.643	136.399	206.923	106.815	124.342	88.9495
+GO:0008483: [MF] transaminase activity|g__Escherichia.s__Escherichia_coli	0.369106	0	0.207895	0	0	0
+GO:0008483: [MF] transaminase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.517312	0.776229	0.879484	1.80773	1.4873	2.24962
+GO:0008484: [MF] sulfuric ester hydrolase activity	2.43826	21.2246	15.2274	44.8457	44.6346	62.7284
+GO:0008484: [MF] sulfuric ester hydrolase activity|g__Clostridium.s__Clostridium_thermocellum	1.70218	21.2246	14.8931	44.8457	44.6346	62.6851
+GO:0008484: [MF] sulfuric ester hydrolase activity|g__Escherichia.s__Escherichia_coli	0.736097	0	0.334238	0	0	0.0433018
+GO:0008495: [MF] protoheme IX farnesyltransferase activity	0.0657425	0	0.122238	0	0	0
+GO:0008495: [MF] protoheme IX farnesyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0657425	0	0.122238	0	0	0
+GO:0008519: [MF] ammonium transmembrane transporter activity	0.11158	0.342864	0.248536	0.228308	0.199298	0.239211
+GO:0008519: [MF] ammonium transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.11158	0.342864	0.248536	0.228308	0.199298	0.239211
+GO:0008531: [MF] riboflavin kinase activity	13.6867	25.3447	21.3303	52.5744	46.0075	49.6577
+GO:0008531: [MF] riboflavin kinase activity|g__Clostridium.s__Clostridium_thermocellum	2.18476	13.2453	14.3414	40.3507	33.9304	35.5191
+GO:0008531: [MF] riboflavin kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.502	12.0994	6.78476	11.8856	12.0771	13.8432
+GO:0008531: [MF] riboflavin kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.204106	0.338159	0	0.295319
+GO:0008534: [MF] oxidized purine nucleobase lesion DNA N-glycosylase activity	0.769102	8.53306	5.56125	17.9834	10.9944	24.9227
+GO:0008534: [MF] oxidized purine nucleobase lesion DNA N-glycosylase activity|g__Clostridium.s__Clostridium_thermocellum	0.658737	8.53306	5.56125	17.9834	10.9944	24.9227
+GO:0008534: [MF] oxidized purine nucleobase lesion DNA N-glycosylase activity|g__Escherichia.s__Escherichia_coli	0.110365	0	0	0	0	0
+GO:0008551: [MF] cadmium-exporting ATPase activity	3.865	1.36716	1.79235	2.1443	2.67512	1.34029
+GO:0008551: [MF] cadmium-exporting ATPase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.8413	1.36716	1.77033	2.1443	2.67512	1.34029
+GO:0008551: [MF] cadmium-exporting ATPase activity|g__Escherichia.s__Escherichia_coli	0.0237208	0	0.0220119	0	0	0
+GO:0008556: [MF] potassium-transporting ATPase activity	0	0	0.835325	0	0	0.0340529
+GO:0008556: [MF] potassium-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0	0	0.835325	0	0	0.0340529
+GO:0008559: [MF] xenobiotic-transporting ATPase activity	0.090168	0	0	0	0	0.0396151
+GO:0008559: [MF] xenobiotic-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0.090168	0	0	0	0	0.0396151
+GO:0008565: [MF] protein transporter activity	15.6629	29.5112	29.6107	136.419	165.284	154.762
+GO:0008565: [MF] protein transporter activity|g__Clostridium.s__Clostridium_thermocellum	2.81725	12.3044	8.49569	126.483	156.54	148.163
+GO:0008565: [MF] protein transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	12.0461	16.6253	20.4181	8.68141	8.19072	6.27339
+GO:0008565: [MF] protein transporter activity|g__Escherichia.s__Escherichia_coli	0.39132	0	0.265406	0	0	0.0639663
+GO:0008565: [MF] protein transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.408308	0.58146	0.431532	1.25395	0.553511	0.26201
+GO:0008609: [MF] alkylglycerone-phosphate synthase activity	0.0372581	0	0	0	0	0.0495755
+GO:0008609: [MF] alkylglycerone-phosphate synthase activity|g__Escherichia.s__Escherichia_coli	0.0372581	0	0	0	0	0.0495755
+GO:0008610: [BP] lipid biosynthetic process	0.0372581	0	0.150204	0	0	0.0495755
+GO:0008610: [BP] lipid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0372581	0	0.150204	0	0	0.0495755
+GO:0008612: [BP] peptidyl-lysine modification to peptidyl-hypusine	0.125603	0	0	0.28919	0	0.0417172
+GO:0008612: [BP] peptidyl-lysine modification to peptidyl-hypusine|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.125603	0	0	0.28919	0	0.0417172
+GO:0008615: [BP] pyridoxine biosynthetic process	8.77289	50.3188	40.9226	93.9444	92.0585	79.4775
+GO:0008615: [BP] pyridoxine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	4.64329	43.1918	35.0846	91.5843	88.7933	75.3085
+GO:0008615: [BP] pyridoxine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.07375	7.12706	5.74208	2.3601	3.26514	4.11351
+GO:0008615: [BP] pyridoxine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.055875	0	0.0959863	0	0	0.0555582
+GO:0008616: [BP] queuosine biosynthetic process	12.6311	68.8992	51.1221	195.021	183.918	171.177
+GO:0008616: [BP] queuosine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	7.43787	63.0593	46.9281	191.288	179.866	167.202
+GO:0008616: [BP] queuosine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.62479	5.68111	3.72944	3.46988	3.9781	3.72444
+GO:0008616: [BP] queuosine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.3204	0	0.311279	0	0	0.12389
+GO:0008616: [BP] queuosine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.247999	0.158737	0.153407	0.26335	0.0738116	0.12748
+GO:0008641: [MF] small protein activating enzyme activity	44.388	109.636	91.2569	183.048	180.022	164.215
+GO:0008641: [MF] small protein activating enzyme activity|g__Clostridium.s__Clostridium_thermocellum	1.55531	48.6527	40.5622	116.804	106.304	101.53
+GO:0008641: [MF] small protein activating enzyme activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	42.592	60.7525	50.0251	65.998	73.718	62.6854
+GO:0008641: [MF] small protein activating enzyme activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.240634	0.231034	0.669649	0.246239	0	0
+GO:0008643: [BP] carbohydrate transport	308.243	390.624	355.021	1092.54	787.93	857.69
+GO:0008643: [BP] carbohydrate transport|g__Clostridium.s__Clostridium_thermocellum	59.5931	306.415	198.873	1042.01	736.089	800.478
+GO:0008643: [BP] carbohydrate transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	247.088	84.209	155.228	50.5251	51.841	56.4278
+GO:0008643: [BP] carbohydrate transport|g__Escherichia.s__Escherichia_coli	1.56265	0	0.920305	0	0	0.784186
+GO:0008649: [MF] rRNA methyltransferase activity	3.10856	19.5737	15.6598	64.815	59.9783	50.433
+GO:0008649: [MF] rRNA methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.07106	19.5737	15.6598	64.815	59.9783	50.433
+GO:0008649: [MF] rRNA methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0375012	0	0	0	0	0
+GO:0008650: [MF] rRNA (uridine-2'-O-)-methyltransferase activity	0.099914	0	0.561123	0.307047	0	0.0665534
+GO:0008650: [MF] rRNA (uridine-2'-O-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.375871	0	0	0
+GO:0008650: [MF] rRNA (uridine-2'-O-)-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.099914	0	0.185252	0.307047	0	0.0665534
+GO:0008652: [BP] cellular amino acid biosynthetic process	2.1888	11.7328	6.25914	43.8577	36.175	34.6783
+GO:0008652: [BP] cellular amino acid biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.1678	11.7328	6.25914	43.8577	36.175	34.6783
+GO:0008652: [BP] cellular amino acid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0209987	0	0	0	0	0
+GO:0008653: [BP] lipopolysaccharide metabolic process	0.304749	0	0	0	0	0
+GO:0008653: [BP] lipopolysaccharide metabolic process|g__Escherichia.s__Escherichia_coli	0.304749	0	0	0	0	0
+GO:0008654: [BP] phospholipid biosynthetic process	382.157	334.272	234.653	652.571	632.041	534.501
+GO:0008654: [BP] phospholipid biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	23.5476	153.037	92.8648	476.971	429.473	359.52
+GO:0008654: [BP] phospholipid biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	355.944	176.926	137.19	170.544	199.138	168.935
+GO:0008654: [BP] phospholipid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.368887	0	0.399642	0	0	0
+GO:0008654: [BP] phospholipid biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.29671	4.30961	4.19859	5.05565	3.42999	6.04643
+GO:0008657: [MF] DNA topoisomerase (ATP-hydrolyzing) inhibitor activity	0.150029	0	0	0	0	0.673716
+GO:0008657: [MF] DNA topoisomerase (ATP-hydrolyzing) inhibitor activity|g__Escherichia.s__Escherichia_coli	0.150029	0	0	0	0	0.673716
+GO:0008658: [MF] penicillin binding	24.5186	39.5217	33.0026	83.765	77.9732	80.7581
+GO:0008658: [MF] penicillin binding|g__Clostridium.s__Clostridium_thermocellum	5.79754	27.9027	26.0004	75.947	69.6038	70.5358
+GO:0008658: [MF] penicillin binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.5565	11.6189	6.88066	7.818	8.36936	10.2223
+GO:0008658: [MF] penicillin binding|g__Escherichia.s__Escherichia_coli	0.164563	0	0.121562	0	0	0
+GO:0008661: [MF] 1-deoxy-D-xylulose-5-phosphate synthase activity	69.9209	96.8244	69.5775	191.566	183.238	149.722
+GO:0008661: [MF] 1-deoxy-D-xylulose-5-phosphate synthase activity|g__Clostridium.s__Clostridium_thermocellum	11.4118	55.3911	37.2861	156.799	140.842	119.082
+GO:0008661: [MF] 1-deoxy-D-xylulose-5-phosphate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	58.509	41.4332	32.2915	34.7667	42.3967	30.6407
+GO:0008662: [MF] 1-phosphofructokinase activity	58.606	34.7227	47.5948	14.0036	17.6034	15.7465
+GO:0008662: [MF] 1-phosphofructokinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	58.606	34.7227	47.5948	14.0036	17.6034	15.7465
+GO:0008663: [MF] 2',3'-cyclic-nucleotide 2'-phosphodiesterase activity	2.36858	2.4759	1.26117	1.97859	2.67567	2.66498
+GO:0008663: [MF] 2',3'-cyclic-nucleotide 2'-phosphodiesterase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.36858	2.4759	1.09947	1.97859	2.67567	2.66498
+GO:0008663: [MF] 2',3'-cyclic-nucleotide 2'-phosphodiesterase activity|g__Escherichia.s__Escherichia_coli	0	0	0.161661	0	0	0
+GO:0008664: [MF] 2'-5'-RNA ligase activity	12.351	21.541	20.1844	35.4765	30.2323	39.7342
+GO:0008664: [MF] 2'-5'-RNA ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.05304	14.8595	15.0335	28.6236	25.8995	31.0351
+GO:0008664: [MF] 2'-5'-RNA ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.57913	6.22052	4.92814	6.42321	4.33271	8.69916
+GO:0008664: [MF] 2'-5'-RNA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.718792	0.460995	0.222735	0.429706	0	0
+GO:0008667: [MF] 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase activity	0.0814186	0	0	0	0	0
+GO:0008667: [MF] 2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0814186	0	0	0	0	0
+GO:0008670: [MF] 2,4-dienoyl-CoA reductase (NADPH) activity	0.039008	0	0.144836	0	0	0
+GO:0008670: [MF] 2,4-dienoyl-CoA reductase (NADPH) activity|g__Escherichia.s__Escherichia_coli	0.039008	0	0.144836	0	0	0
+GO:0008671: [MF] 2-dehydro-3-deoxygalactonokinase activity	0.112528	0	0	0	0	0
+GO:0008671: [MF] 2-dehydro-3-deoxygalactonokinase activity|g__Escherichia.s__Escherichia_coli	0.112528	0	0	0	0	0
+GO:0008672: [MF] 2-dehydro-3-deoxyglucarate aldolase activity	0.0695339	0	0	0	0	0
+GO:0008672: [MF] 2-dehydro-3-deoxyglucarate aldolase activity|g__Escherichia.s__Escherichia_coli	0.0695339	0	0	0	0	0
+GO:0008673: [MF] 2-dehydro-3-deoxygluconokinase activity	0.0623156	0	0.567393	0	0	0
+GO:0008673: [MF] 2-dehydro-3-deoxygluconokinase activity|g__Escherichia.s__Escherichia_coli	0.0623156	0	0.567393	0	0	0
+GO:0008674: [MF] 2-dehydro-3-deoxy-6-phosphogalactonate aldolase activity	0.103876	0	0	0	0	0
+GO:0008674: [MF] 2-dehydro-3-deoxy-6-phosphogalactonate aldolase activity|g__Escherichia.s__Escherichia_coli	0.103876	0	0	0	0	0
+GO:0008675: [MF] 2-dehydro-3-deoxy-phosphogluconate aldolase activity	0	0	0.183357	0	0	0
+GO:0008675: [MF] 2-dehydro-3-deoxy-phosphogluconate aldolase activity|g__Escherichia.s__Escherichia_coli	0	0	0.183357	0	0	0
+GO:0008676: [MF] 3-deoxy-8-phosphooctulonate synthase activity	0	0	0.0639608	0	0	0
+GO:0008676: [MF] 3-deoxy-8-phosphooctulonate synthase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0639608	0	0	0
+GO:0008677: [MF] 2-dehydropantoate 2-reductase activity	0.103171	0	0	0	0	0
+GO:0008677: [MF] 2-dehydropantoate 2-reductase activity|g__Escherichia.s__Escherichia_coli	0.103171	0	0	0	0	0
+GO:0008678: [MF] 2-deoxy-D-gluconate 3-dehydrogenase activity	1.43953	0	0	0	0	0
+GO:0008678: [MF] 2-deoxy-D-gluconate 3-dehydrogenase activity|g__Escherichia.s__Escherichia_coli	1.43953	0	0	0	0	0
+GO:0008679: [MF] 2-hydroxy-3-oxopropionate reductase activity	0.0661313	0	0	0	0	0
+GO:0008679: [MF] 2-hydroxy-3-oxopropionate reductase activity|g__Escherichia.s__Escherichia_coli	0.0661313	0	0	0	0	0
+GO:0008684: [MF] 2-oxopent-4-enoate hydratase activity	0	0	0.205008	0	0	0
+GO:0008684: [MF] 2-oxopent-4-enoate hydratase activity|g__Escherichia.s__Escherichia_coli	0	0	0.205008	0	0	0
+GO:0008685: [MF] 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase activity	21.76	21.9113	19.3042	21.3913	29.527	21.6888
+GO:0008685: [MF] 2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.76	21.9113	19.3042	21.3913	29.527	21.6888
+GO:0008686: [MF] 3,4-dihydroxy-2-butanone-4-phosphate synthase activity	2.6036	14.6606	10.3732	36.4527	30.9156	27.0565
+GO:0008686: [MF] 3,4-dihydroxy-2-butanone-4-phosphate synthase activity|g__Clostridium.s__Clostridium_thermocellum	2.5136	14.1421	9.7049	36.0382	30.5943	26.5774
+GO:0008686: [MF] 3,4-dihydroxy-2-butanone-4-phosphate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0900222	0.51845	0.668251	0.41451	0.321312	0.479101
+GO:0008691: [MF] 3-hydroxybutyryl-CoA dehydrogenase activity	0.0760717	0	0	0	0	0
+GO:0008691: [MF] 3-hydroxybutyryl-CoA dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0760717	0	0	0	0	0
+GO:0008692: [MF] 3-hydroxybutyryl-CoA epimerase activity	0.0966572	0	0	0	0	0.0158461
+GO:0008692: [MF] 3-hydroxybutyryl-CoA epimerase activity|g__Escherichia.s__Escherichia_coli	0.0966572	0	0	0	0	0.0158461
+GO:0008694: [MF] 3-octaprenyl-4-hydroxybenzoate carboxy-lyase activity	0.0361644	0	0	0	0	0.0481203
+GO:0008694: [MF] 3-octaprenyl-4-hydroxybenzoate carboxy-lyase activity|g__Escherichia.s__Escherichia_coli	0.0361644	0	0	0	0	0.0481203
+GO:0008695: [MF] 3-phenylpropionate dioxygenase activity	0.172632	0	0.0765455	0	0	0
+GO:0008695: [MF] 3-phenylpropionate dioxygenase activity|g__Escherichia.s__Escherichia_coli	0.172632	0	0.0765455	0	0	0
+GO:0008697: [MF] 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase activity	0	0	0.0656748	0	0	0
+GO:0008697: [MF] 4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0656748	0	0	0
+GO:0008700: [MF] 4-hydroxy-2-oxoglutarate aldolase activity	0	0	0.183357	0	0	0
+GO:0008700: [MF] 4-hydroxy-2-oxoglutarate aldolase activity|g__Escherichia.s__Escherichia_coli	0	0	0.183357	0	0	0
+GO:0008703: [MF] 5-amino-6-(5-phosphoribosylamino)uracil reductase activity	0.0509413	0	0	0	0	0
+GO:0008703: [MF] 5-amino-6-(5-phosphoribosylamino)uracil reductase activity|g__Escherichia.s__Escherichia_coli	0.0509413	0	0	0	0	0
+GO:0008704: [MF] 5-carboxymethyl-2-hydroxymuconate delta-isomerase activity	37.2074	46.3509	67.3938	29.4897	30.3195	28.1634
+GO:0008704: [MF] 5-carboxymethyl-2-hydroxymuconate delta-isomerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	37.2074	46.3509	67.3938	29.4897	30.3195	28.1634
+GO:0008705: [MF] methionine synthase activity	1.26418	9.14238	5.56969	33.1248	26.7983	35.167
+GO:0008705: [MF] methionine synthase activity|g__Clostridium.s__Clostridium_thermocellum	1.02847	9.14238	5.55692	33.1248	26.5505	35.1121
+GO:0008705: [MF] methionine synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.221945	0	0	0	0.24776	0
+GO:0008705: [MF] methionine synthase activity|g__Escherichia.s__Escherichia_coli	0.0137561	0	0.0127651	0	0	0.0549114
+GO:0008706: [MF] 6-phospho-beta-glucosidase activity	0.239638	0	0	0	0	0
+GO:0008706: [MF] 6-phospho-beta-glucosidase activity|g__Escherichia.s__Escherichia_coli	0.239638	0	0	0	0	0
+GO:0008709: [MF] cholate 7-alpha-dehydrogenase activity	0.157247	0	0	0	0	0
+GO:0008709: [MF] cholate 7-alpha-dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.157247	0	0	0	0	0
+GO:0008710: [MF] 8-amino-7-oxononanoate synthase activity	134.433	99.9964	165.645	101.869	110.552	60.6461
+GO:0008710: [MF] 8-amino-7-oxononanoate synthase activity|g__Clostridium.s__Clostridium_thermocellum	0	1.28413	0.221743	0.73342	1.19331	1.39811
+GO:0008710: [MF] 8-amino-7-oxononanoate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	134.433	98.7123	165.423	101.135	109.359	59.248
+GO:0008712: [MF] ADP-glyceromanno-heptose 6-epimerase activity	0.124194	0	0	0	0	0
+GO:0008712: [MF] ADP-glyceromanno-heptose 6-epimerase activity|g__Escherichia.s__Escherichia_coli	0.124194	0	0	0	0	0
+GO:0008713: [MF] ADP-heptose-lipopolysaccharide heptosyltransferase activity	0.319452	0	0.0976553	0	0	0.0721157
+GO:0008713: [MF] ADP-heptose-lipopolysaccharide heptosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.319452	0	0.0976553	0	0	0.0721157
+GO:0008716: [MF] D-alanine-D-alanine ligase activity	21.7048	34.4742	40.9874	59.0546	61.3106	72.9592
+GO:0008716: [MF] D-alanine-D-alanine ligase activity|g__Clostridium.s__Clostridium_thermocellum	5.92112	26.9703	36.235	49.0845	53.315	63.7877
+GO:0008716: [MF] D-alanine-D-alanine ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.6178	7.50381	4.59841	9.97003	7.99564	9.1715
+GO:0008716: [MF] D-alanine-D-alanine ligase activity|g__Escherichia.s__Escherichia_coli	0.165875	0	0.153948	0	0	0
+GO:0008720: [MF] D-lactate dehydrogenase activity	0.0311578	0	0	0	0	0
+GO:0008720: [MF] D-lactate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0311578	0	0	0	0	0
+GO:0008721: [MF] D-serine ammonia-lyase activity	13.8998	8.65483	7.6177	10.4077	13.1879	9.88361
+GO:0008721: [MF] D-serine ammonia-lyase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.8998	8.65483	7.6177	10.4077	13.1879	9.88361
+GO:0008725: [MF] DNA-3-methyladenine glycosylase activity	0.234826	0	0.324811	0	0	0
+GO:0008725: [MF] DNA-3-methyladenine glycosylase activity|g__Escherichia.s__Escherichia_coli	0.234826	0	0.324811	0	0	0
+GO:0008728: [MF] GTP diphosphokinase activity	11.2513	7.58619	5.60298	8.45164	9.38304	7.76994
+GO:0008728: [MF] GTP diphosphokinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.1728	7.58619	5.60298	8.45164	9.38304	7.76994
+GO:0008728: [MF] GTP diphosphokinase activity|g__Escherichia.s__Escherichia_coli	0.0785264	0	0	0	0	0
+GO:0008730: [MF] L(+)-tartrate dehydratase activity	0.0637981	0	0	0.0714767	0.186906	0.177767
+GO:0008730: [MF] L(+)-tartrate dehydratase activity|g__Escherichia.s__Escherichia_coli	0.0637981	0	0	0	0	0.0848249
+GO:0008730: [MF] L(+)-tartrate dehydratase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0.0714767	0.186906	0.092942
+GO:0008734: [MF] L-aspartate oxidase activity	2.06198	11.9143	6.784	25.377	25.8602	20.0365
+GO:0008734: [MF] L-aspartate oxidase activity|g__Clostridium.s__Clostridium_thermocellum	2.029	11.9143	6.784	25.377	25.8602	20.0365
+GO:0008734: [MF] L-aspartate oxidase activity|g__Escherichia.s__Escherichia_coli	0.0330049	0	0	0	0	0
+GO:0008736: [MF] L-fucose isomerase activity	0.014947	0	0.0554808	0	0	0
+GO:0008736: [MF] L-fucose isomerase activity|g__Escherichia.s__Escherichia_coli	0.014947	0	0.0554808	0	0	0
+GO:0008740: [MF] L-rhamnose isomerase activity	0.0437716	0	0	0	0	0
+GO:0008740: [MF] L-rhamnose isomerase activity|g__Escherichia.s__Escherichia_coli	0.0437716	0	0	0	0	0
+GO:0008742: [MF] L-ribulose-phosphate 4-epimerase activity	6.26478	1.75824	3.5795	2.61482	2.92358	3.20734
+GO:0008742: [MF] L-ribulose-phosphate 4-epimerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.26478	1.75824	3.5795	2.61482	2.92358	3.20734
+GO:0008743: [MF] L-threonine 3-dehydrogenase activity	1.41977	14.1858	11.4034	21.2411	23.4366	38.7121
+GO:0008743: [MF] L-threonine 3-dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	1.04194	14.1858	11.3134	21.2411	23.4366	38.7121
+GO:0008743: [MF] L-threonine 3-dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.377831	0	0.0900323	0	0	0
+GO:0008744: [MF] L-xylulokinase activity	0.0359457	0	0.267842	0	0	0
+GO:0008744: [MF] L-xylulokinase activity|g__Escherichia.s__Escherichia_coli	0.0359457	0	0.267842	0	0	0
+GO:0008745: [MF] N-acetylmuramoyl-L-alanine amidase activity	18.2657	36.1215	29.4947	133.626	124.848	128.1
+GO:0008745: [MF] N-acetylmuramoyl-L-alanine amidase activity|g__Clostridium.s__Clostridium_thermocellum	7.10339	23.5058	19.0309	126.018	116.203	118.523
+GO:0008745: [MF] N-acetylmuramoyl-L-alanine amidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.0948	12.6157	10.4638	7.60829	8.64425	9.36065
+GO:0008745: [MF] N-acetylmuramoyl-L-alanine amidase activity|g__Escherichia.s__Escherichia_coli	0.0675167	0	0	0	0	0.21583
+GO:0008747: [MF] N-acetylneuraminate lyase activity	0.130659	0	0	0	0	0.0434635
+GO:0008747: [MF] N-acetylneuraminate lyase activity|g__Escherichia.s__Escherichia_coli	0.130659	0	0	0	0	0.0434635
+GO:0008748: [MF] N-ethylmaleimide reductase activity	0.165389	0	0	0	0	0
+GO:0008748: [MF] N-ethylmaleimide reductase activity|g__Escherichia.s__Escherichia_coli	0.165389	0	0	0	0	0
+GO:0008750: [MF] NAD(P)+ transhydrogenase (AB-specific) activity	0.0392267	0	0	0	0	0.0260975
+GO:0008750: [MF] NAD(P)+ transhydrogenase (AB-specific) activity|g__Escherichia.s__Escherichia_coli	0.0392267	0	0	0	0	0.0260975
+GO:0008752: [MF] FMN reductase activity	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0008752: [MF] FMN reductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0008756: [MF] o-succinylbenzoate-CoA ligase activity	0	0	0.114796	0	0	0
+GO:0008756: [MF] o-succinylbenzoate-CoA ligase activity|g__Escherichia.s__Escherichia_coli	0	0	0.114796	0	0	0
+GO:0008757: [MF] S-adenosylmethionine-dependent methyltransferase activity	2.08456	10.6931	9.83756	42.5034	41.2786	45.9139
+GO:0008757: [MF] S-adenosylmethionine-dependent methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.90585	10.6931	9.83756	42.5034	41.2786	45.8459
+GO:0008757: [MF] S-adenosylmethionine-dependent methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.178708	0	0	0	0	0.0680087
+GO:0008760: [MF] UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity	38.5198	118.21	85.9788	228.754	204.022	229.143
+GO:0008760: [MF] UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	15.7121	94.3411	68.7886	207.11	180.461	207.703
+GO:0008760: [MF] UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.7477	23.8692	17.1089	21.6449	23.5611	21.4403
+GO:0008760: [MF] UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0600067	0	0.0812816	0	0	0
+GO:0008761: [MF] UDP-N-acetylglucosamine 2-epimerase activity	41.9718	61.1861	61.2957	87.8383	94.632	92.6222
+GO:0008761: [MF] UDP-N-acetylglucosamine 2-epimerase activity|g__Clostridium.s__Clostridium_thermocellum	2.92271	22.322	22.6089	55.7991	61.8888	59.941
+GO:0008761: [MF] UDP-N-acetylglucosamine 2-epimerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	38.8843	38.8641	37.9197	31.6798	32.5771	32.4612
+GO:0008761: [MF] UDP-N-acetylglucosamine 2-epimerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.16483	0	0.767079	0.359498	0.166049	0.219937
+GO:0008762: [MF] UDP-N-acetylmuramate dehydrogenase activity	14.6646	61.1795	36.3056	71.2015	78.7381	76.3167
+GO:0008762: [MF] UDP-N-acetylmuramate dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	2.82282	15.6682	16.9749	45.2639	42.9255	46.6343
+GO:0008762: [MF] UDP-N-acetylmuramate dehydrogenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.8142	45.5113	19.1255	25.9375	35.8126	29.5353
+GO:0008762: [MF] UDP-N-acetylmuramate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0276094	0	0.205279	0	0	0.147174
+GO:0008763: [MF] UDP-N-acetylmuramate-L-alanine ligase activity	6.90332	7.10517	3.98627	11.2904	10.8987	10.4893
+GO:0008763: [MF] UDP-N-acetylmuramate-L-alanine ligase activity|g__Clostridium.s__Clostridium_thermocellum	0.443573	2.03716	1.14417	4.28102	4.49404	5.82362
+GO:0008763: [MF] UDP-N-acetylmuramate-L-alanine ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.38647	5.06801	2.84211	7.00932	6.40468	4.66566
+GO:0008763: [MF] UDP-N-acetylmuramate-L-alanine ligase activity|g__Escherichia.s__Escherichia_coli	0.0732767	0	0	0	0	0
+GO:0008764: [MF] UDP-N-acetylmuramoylalanine-D-glutamate ligase activity	70.7605	58.8999	41.878	59.0159	61.0479	68.3933
+GO:0008764: [MF] UDP-N-acetylmuramoylalanine-D-glutamate ligase activity|g__Clostridium.s__Clostridium_thermocellum	1.67047	7.83337	6.48665	14.8667	16.8925	28.5573
+GO:0008764: [MF] UDP-N-acetylmuramoylalanine-D-glutamate ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	69.0901	51.0666	35.3913	44.1491	44.1554	39.7252
+GO:0008764: [MF] UDP-N-acetylmuramoylalanine-D-glutamate ligase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.110825
+GO:0008765: [MF] UDP-N-acetylmuramoylalanyl-D-glutamate-2,6-diaminopimelate ligase activity	11.8484	6.35919	3.91428	6.04182	7.49536	6.00591
+GO:0008765: [MF] UDP-N-acetylmuramoylalanyl-D-glutamate-2,6-diaminopimelate ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.8484	6.35919	3.91428	6.04182	7.49536	6.00591
+GO:0008766: [MF] UDP-N-acetylmuramoylalanyl-D-glutamyl-2,6-diaminopimelate-D-alanyl-D-alanine ligase activity	96.3152	104.362	111.272	118.325	117.007	103.742
+GO:0008766: [MF] UDP-N-acetylmuramoylalanyl-D-glutamyl-2,6-diaminopimelate-D-alanyl-D-alanine ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.66061	18.9106	21.8839	51.6569	46.4233	52.6138
+GO:0008766: [MF] UDP-N-acetylmuramoylalanyl-D-glutamyl-2,6-diaminopimelate-D-alanyl-D-alanine ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	93.6144	85.4518	89.3883	66.6686	70.5838	51.1285
+GO:0008766: [MF] UDP-N-acetylmuramoylalanyl-D-glutamyl-2,6-diaminopimelate-D-alanyl-D-alanine ligase activity|g__Escherichia.s__Escherichia_coli	0.0401989	0	0	0	0	0
+GO:0008767: [MF] UDP-galactopyranose mutase activity	15.2063	28.828	19.0439	28.3034	39.0528	28.5971
+GO:0008767: [MF] UDP-galactopyranose mutase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1574	28.828	18.8548	28.2784	39.0091	28.4669
+GO:0008767: [MF] UDP-galactopyranose mutase activity|g__Escherichia.s__Escherichia_coli	0	0	0.189131	0	0	0
+GO:0008767: [MF] UDP-galactopyranose mutase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0489241	0	0	0.0250442	0.0437097	0.130196
+GO:0008768: [MF] UDP-sugar diphosphatase activity	0.0161622	0	0	0	0	0
+GO:0008768: [MF] UDP-sugar diphosphatase activity|g__Escherichia.s__Escherichia_coli	0.0161622	0	0	0	0	0
+GO:0008771: [MF] [citrate (pro-3S)-lyase] ligase activity	0.080252	0	0.0994144	0	0	0
+GO:0008771: [MF] [citrate (pro-3S)-lyase] ligase activity|g__Escherichia.s__Escherichia_coli	0.080252	0	0.0994144	0	0	0
+GO:0008772: [MF] [isocitrate dehydrogenase (NADP+)] kinase activity	0.0919179	0	0.056834	0	0	0.0409087
+GO:0008772: [MF] [isocitrate dehydrogenase (NADP+)] kinase activity|g__Escherichia.s__Escherichia_coli	0.0919179	0	0.056834	0	0	0.0409087
+GO:0008773: [MF] [protein-PII] uridylyltransferase activity	0.0576492	0	0	0	0	0
+GO:0008773: [MF] [protein-PII] uridylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0576492	0	0	0	0	0
+GO:0008774: [MF] acetaldehyde dehydrogenase (acetylating) activity	0.677937	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0008774: [MF] acetaldehyde dehydrogenase (acetylating) activity|g__Clostridium.s__Clostridium_thermocellum	0.658664	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0008774: [MF] acetaldehyde dehydrogenase (acetylating) activity|g__Escherichia.s__Escherichia_coli	0.0192731	0	0	0	0	0
+GO:0008775: [MF] acetate CoA-transferase activity	0.0336125	0	0.211098	0	0	0.24694
+GO:0008775: [MF] acetate CoA-transferase activity|g__Escherichia.s__Escherichia_coli	0.0336125	0	0.211098	0	0	0.24694
+GO:0008776: [MF] acetate kinase activity	37.1161	74.8308	75.5669	124.392	124.077	86.9996
+GO:0008776: [MF] acetate kinase activity|g__Clostridium.s__Clostridium_thermocellum	4.97497	31.7717	26.5377	74.1942	75.7388	54.5204
+GO:0008776: [MF] acetate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.0488	43.0591	49.0291	50.1978	48.3386	32.4178
+GO:0008776: [MF] acetate kinase activity|g__Escherichia.s__Escherichia_coli	0.0923068	0	0	0	0	0.0613792
+GO:0008777: [MF] acetylornithine deacetylase activity	0.0727663	0	0	0	0	0
+GO:0008777: [MF] acetylornithine deacetylase activity|g__Escherichia.s__Escherichia_coli	0.0727663	0	0	0	0	0
+GO:0008779: [MF] acyl-[acyl-carrier-protein]-phospholipid O-acyltransferase activity	0.0121034	0	0	0	0	0
+GO:0008779: [MF] acyl-[acyl-carrier-protein]-phospholipid O-acyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0121034	0	0	0	0	0
+GO:0008783: [MF] agmatinase activity	1.92333	13.7975	13.3354	36.6205	39.4291	38.0181
+GO:0008783: [MF] agmatinase activity|g__Clostridium.s__Clostridium_thermocellum	1.78679	13.4693	13.2085	36.5505	39.1243	37.5637
+GO:0008783: [MF] agmatinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.13654	0.328209	0.126884	0.0699597	0.304774	0.454394
+GO:0008784: [MF] alanine racemase activity	5.94139	12.431	8.13114	28.4637	26.1066	25.8735
+GO:0008784: [MF] alanine racemase activity|g__Clostridium.s__Clostridium_thermocellum	0.852732	8.32088	5.31565	23.5014	22.1396	20.8272
+GO:0008784: [MF] alanine racemase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.03638	4.11012	2.81549	4.96229	3.96708	5.04632
+GO:0008784: [MF] alanine racemase activity|g__Escherichia.s__Escherichia_coli	0.052278	0	0	0	0	0
+GO:0008785: [MF] alkyl hydroperoxide reductase activity	16.7778	159.381	159.194	520.725	417.94	348.992
+GO:0008785: [MF] alkyl hydroperoxide reductase activity|g__Clostridium.s__Clostridium_thermocellum	16.7778	159.381	159.13	520.725	417.94	348.992
+GO:0008785: [MF] alkyl hydroperoxide reductase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0636902	0	0	0
+GO:0008786: [MF] allose 6-phosphate isomerase activity	0	0	0.300724	0	0	0
+GO:0008786: [MF] allose 6-phosphate isomerase activity|g__Escherichia.s__Escherichia_coli	0	0	0.300724	0	0	0
+GO:0008787: [MF] allose kinase activity	0	0	0.404198	0	0	0
+GO:0008787: [MF] allose kinase activity|g__Escherichia.s__Escherichia_coli	0	0	0.404198	0	0	0
+GO:0008791: [MF] arginine N-succinyltransferase activity	0.0549272	0	0	0	0	0
+GO:0008791: [MF] arginine N-succinyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0549272	0	0	0	0	0
+GO:0008792: [MF] arginine decarboxylase activity	31.2184	65.9514	56.9077	81.5658	79.3391	88.8675
+GO:0008792: [MF] arginine decarboxylase activity|g__Clostridium.s__Clostridium_thermocellum	2.07724	22.2313	19.2719	50.6028	48.4844	63.904
+GO:0008792: [MF] arginine decarboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.0916	43.415	37.4389	30.963	30.8548	24.9635
+GO:0008792: [MF] arginine decarboxylase activity|g__Escherichia.s__Escherichia_coli	0.0495317	0	0.0493915	0	0	0
+GO:0008792: [MF] arginine decarboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.305059	0.147408	0	0	0
+GO:0008793: [MF] aromatic-amino-acid:2-oxoglutarate aminotransferase activity	0.0698499	0	0	0	0	0
+GO:0008793: [MF] aromatic-amino-acid:2-oxoglutarate aminotransferase activity|g__Escherichia.s__Escherichia_coli	0.0698499	0	0	0	0	0
+GO:0008794: [MF] arsenate reductase (glutaredoxin) activity	0.231472	0	0	0	0	0
+GO:0008794: [MF] arsenate reductase (glutaredoxin) activity|g__Escherichia.s__Escherichia_coli	0.231472	0	0	0	0	0
+GO:0008795: [MF] NAD+ synthase activity	8.39707	9.14985	7.37322	7.16919	8.61994	11.3556
+GO:0008795: [MF] NAD+ synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.32506	8.8734	6.57136	6.87448	8.45912	10.685
+GO:0008795: [MF] NAD+ synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0720129	0.276494	0.801901	0.294711	0.160819	0.670579
+GO:0008798: [MF] beta-aspartyl-peptidase activity	0.0596421	0.136474	0.275104	1.1145	0.99395	1.70167
+GO:0008798: [MF] beta-aspartyl-peptidase activity|g__Clostridium.s__Clostridium_thermocellum	0	0.136474	0.219803	1.1145	0.99395	1.70167
+GO:0008798: [MF] beta-aspartyl-peptidase activity|g__Escherichia.s__Escherichia_coli	0.0596421	0	0.0552553	0	0	0
+GO:0008800: [MF] beta-lactamase activity	211864	95932	117416	37667.8	49698.2	24928.3
+GO:0008800: [MF] beta-lactamase activity|g__Clostridium.s__Clostridium_thermocellum	133936	95932	83193.2	37667.8	49698.2	17083.2
+GO:0008800: [MF] beta-lactamase activity|g__Escherichia.s__Escherichia_coli	77927.8	0	34222.8	0	0	7845.05
+GO:0008801: [MF] beta-phosphoglucomutase activity	0.0476602	0	0	0	0	0
+GO:0008801: [MF] beta-phosphoglucomutase activity|g__Escherichia.s__Escherichia_coli	0.0476602	0	0	0	0	0
+GO:0008802: [MF] betaine-aldehyde dehydrogenase activity	0.0319598	0	0.162338	0	0	0
+GO:0008802: [MF] betaine-aldehyde dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0319598	0	0.162338	0	0	0
+GO:0008803: [MF] bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity	0.0695339	0	0	0	0	0
+GO:0008803: [MF] bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity|g__Escherichia.s__Escherichia_coli	0.0695339	0	0	0	0	0
+GO:0008804: [MF] carbamate kinase activity	82.2665	17.393	23.6271	27.2268	30.7455	22.1183
+GO:0008804: [MF] carbamate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	82.2044	17.393	23.6271	27.2268	30.7455	22.1183
+GO:0008804: [MF] carbamate kinase activity|g__Escherichia.s__Escherichia_coli	0.0620482	0	0	0	0	0
+GO:0008806: [MF] carboxymethylenebutenolidase activity	0.0732524	0	0	0	0	0
+GO:0008806: [MF] carboxymethylenebutenolidase activity|g__Escherichia.s__Escherichia_coli	0.0732524	0	0	0	0	0
+GO:0008808: [MF] cardiolipin synthase activity	0.17618	3.14249	2.99236	4.88365	5.64617	5.86957
+GO:0008808: [MF] cardiolipin synthase activity|g__Clostridium.s__Clostridium_thermocellum	0.139359	3.14249	2.90972	4.88365	5.64617	5.83995
+GO:0008808: [MF] cardiolipin synthase activity|g__Escherichia.s__Escherichia_coli	0.0368206	0	0.0826348	0	0	0.0296224
+GO:0008810: [MF] cellulase activity	277.944	290.699	258.98	1025.09	852.867	885.348
+GO:0008810: [MF] cellulase activity|g__Clostridium.s__Clostridium_thermocellum	277.868	290.699	258.98	1025.09	852.867	885.348
+GO:0008810: [MF] cellulase activity|g__Escherichia.s__Escherichia_coli	0.0761932	0	0	0	0	0
+GO:0008812: [MF] choline dehydrogenase activity	0.0319598	0	0.088634	0	0	0
+GO:0008812: [MF] choline dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0319598	0	0.088634	0	0	0
+GO:0008814: [MF] citrate CoA-transferase activity	0.0351437	0	0	0	0	0
+GO:0008814: [MF] citrate CoA-transferase activity|g__Escherichia.s__Escherichia_coli	0.0351437	0	0	0	0	0
+GO:0008815: [MF] citrate (pro-3S)-lyase activity	0.0351437	0	0	0	0	0
+GO:0008815: [MF] citrate (pro-3S)-lyase activity|g__Escherichia.s__Escherichia_coli	0.0351437	0	0	0	0	0
+GO:0008817: [MF] cob(I)yrinic acid a,c-diamide adenosyltransferase activity	21.7937	49.801	29.3342	103.208	97.7671	103.929
+GO:0008817: [MF] cob(I)yrinic acid a,c-diamide adenosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.65144	22.8684	15.9601	71.1048	63.2645	77.3703
+GO:0008817: [MF] cob(I)yrinic acid a,c-diamide adenosyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	19.8117	26.9325	13.3741	32.1034	34.5025	26.5592
+GO:0008817: [MF] cob(I)yrinic acid a,c-diamide adenosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.330535	0	0	0	0	0
+GO:0008818: [MF] cobalamin 5'-phosphate synthase activity	0.529245	6.25324	4.22822	14.6174	14.1724	18.2461
+GO:0008818: [MF] cobalamin 5'-phosphate synthase activity|g__Clostridium.s__Clostridium_thermocellum	0.529245	6.25324	3.85109	14.4517	14.1	18.0306
+GO:0008818: [MF] cobalamin 5'-phosphate synthase activity|g__Escherichia.s__Escherichia_coli	0	0	0.151602	0	0	0
+GO:0008818: [MF] cobalamin 5'-phosphate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.225532	0.165809	0.0723358	0.215506
+GO:0008821: [MF] crossover junction endodeoxyribonuclease activity	115.788	250.461	244.29	111.608	116.409	99.5046
+GO:0008821: [MF] crossover junction endodeoxyribonuclease activity|g__Clostridium.s__Clostridium_thermocellum	0.500809	2.89171	0.791977	5.86776	6.65663	10.6703
+GO:0008821: [MF] crossover junction endodeoxyribonuclease activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	115.224	247.569	243.498	105.74	109.677	88.587
+GO:0008821: [MF] crossover junction endodeoxyribonuclease activity|g__Escherichia.s__Escherichia_coli	0.0633364	0	0	0	0	0
+GO:0008821: [MF] crossover junction endodeoxyribonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0	0.0750921	0.247328
+GO:0008825: [MF] cyclopropane-fatty-acyl-phospholipid synthase activity	0	0	0.0903029	0	0	0
+GO:0008825: [MF] cyclopropane-fatty-acyl-phospholipid synthase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0903029	0	0	0
+GO:0008827: [MF] cytochrome o ubiquinol oxidase activity	0.104532	0	0	0	0	0
+GO:0008827: [MF] cytochrome o ubiquinol oxidase activity|g__Escherichia.s__Escherichia_coli	0.104532	0	0	0	0	0
+GO:0008829: [MF] dCTP deaminase activity	16.3852	34.0035	23.718	47.8695	57.1222	56.6387
+GO:0008829: [MF] dCTP deaminase activity|g__Clostridium.s__Clostridium_thermocellum	2.44795	10.3579	10.2479	25.2983	25.9347	35.8891
+GO:0008829: [MF] dCTP deaminase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.83	23.6456	13.4701	22.3517	31.1397	20.7496
+GO:0008829: [MF] dCTP deaminase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.107302	0	0	0.219603	0.04792	0
+GO:0008830: [MF] dTDP-4-dehydrorhamnose 3,5-epimerase activity	2.59613	17.5311	19.6226	47.297	40.3979	54.3972
+GO:0008830: [MF] dTDP-4-dehydrorhamnose 3,5-epimerase activity|g__Clostridium.s__Clostridium_thermocellum	2.41757	17.5311	19.2926	47.297	40.3979	54.0843
+GO:0008830: [MF] dTDP-4-dehydrorhamnose 3,5-epimerase activity|g__Escherichia.s__Escherichia_coli	0.118993	0	0	0	0	0
+GO:0008830: [MF] dTDP-4-dehydrorhamnose 3,5-epimerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0595692	0	0.330043	0	0	0.312879
+GO:0008831: [MF] dTDP-4-dehydrorhamnose reductase activity	0.0700929	0	0	0.14355	0.187904	0.139995
+GO:0008831: [MF] dTDP-4-dehydrorhamnose reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0700929	0	0	0.14355	0.187904	0.139995
+GO:0008832: [MF] dGTPase activity	1.32146	7.17098	4.90211	16.84	15.7692	21.3615
+GO:0008832: [MF] dGTPase activity|g__Clostridium.s__Clostridium_thermocellum	1.23528	7.17098	4.74217	16.84	15.7692	21.3615
+GO:0008832: [MF] dGTPase activity|g__Escherichia.s__Escherichia_coli	0.0861822	0	0.159947	0	0	0
+GO:0008833: [MF] deoxyribonuclease IV (phage-T4-induced) activity	2.4279	2.54521	2.80124	1.05492	2.42825	2.98876
+GO:0008833: [MF] deoxyribonuclease IV (phage-T4-induced) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.4279	2.54521	2.80124	1.05492	2.42825	2.98876
+GO:0008834: [MF] di-trans,poly-cis-decaprenylcistransferase activity	0.0797416	0	0	0	0	0
+GO:0008834: [MF] di-trans,poly-cis-decaprenylcistransferase activity|g__Escherichia.s__Escherichia_coli	0.0797416	0	0	0	0	0
+GO:0008835: [MF] diaminohydroxyphosphoribosylaminopyrimidine deaminase activity	0.0509413	0	0	0	0	0
+GO:0008835: [MF] diaminohydroxyphosphoribosylaminopyrimidine deaminase activity|g__Escherichia.s__Escherichia_coli	0.0509413	0	0	0	0	0
+GO:0008836: [MF] diaminopimelate decarboxylase activity	0.525356	12.879	11.1718	52.9782	52.4902	70.1337
+GO:0008836: [MF] diaminopimelate decarboxylase activity|g__Clostridium.s__Clostridium_thermocellum	0.417568	12.3454	10.6147	52.5189	52.3375	69.821
+GO:0008836: [MF] diaminopimelate decarboxylase activity|g__Escherichia.s__Escherichia_coli	0.0436744	0	0.0810561	0	0	0
+GO:0008836: [MF] diaminopimelate decarboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0641141	0.533619	0.476052	0.459326	0.152658	0.312749
+GO:0008837: [MF] diaminopimelate epimerase activity	0.867412	24.0936	32.8304	40.3203	43.4051	78.7259
+GO:0008837: [MF] diaminopimelate epimerase activity|g__Clostridium.s__Clostridium_thermocellum	0.631128	23.7695	32.1361	39.4224	43.0437	78.4114
+GO:0008837: [MF] diaminopimelate epimerase activity|g__Escherichia.s__Escherichia_coli	0	0	0.13365	0	0	0
+GO:0008837: [MF] diaminopimelate epimerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.236284	0.324102	0.560717	0.897886	0.361419	0.314399
+GO:0008838: [MF] diaminopropionate ammonia-lyase activity	0	0	0.0918816	0	0	0
+GO:0008838: [MF] diaminopropionate ammonia-lyase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0918816	0	0	0
+GO:0008839: [MF] 4-hydroxy-tetrahydrodipicolinate reductase	4.81184	10.8331	9.76259	23.6066	26.7306	35.357
+GO:0008839: [MF] 4-hydroxy-tetrahydrodipicolinate reductase|g__Clostridium.s__Clostridium_thermocellum	4.06544	9.76006	8.49578	22.5395	26.214	33.86
+GO:0008839: [MF] 4-hydroxy-tetrahydrodipicolinate reductase|g__Escherichia.s__Escherichia_coli	0.103973	0	0.0439787	0	0	0
+GO:0008839: [MF] 4-hydroxy-tetrahydrodipicolinate reductase|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.642405	1.07298	1.22283	1.0671	0.516638	1.49693
+GO:0008840: [MF] 4-hydroxy-tetrahydrodipicolinate synthase	24.8116	37.2906	60.714	40.7138	43.0469	39.4255
+GO:0008840: [MF] 4-hydroxy-tetrahydrodipicolinate synthase|g__Clostridium.s__Clostridium_thermocellum	1.79903	4.86288	6.05792	20.2576	20.4718	16.4978
+GO:0008840: [MF] 4-hydroxy-tetrahydrodipicolinate synthase|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.6663	32.0953	53.8209	19.8541	22.3277	22.2371
+GO:0008840: [MF] 4-hydroxy-tetrahydrodipicolinate synthase|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.346211	0.332316	0.835099	0.602106	0.247326	0.690662
+GO:0008847: [MF] Enterobacter ribonuclease activity	0.0369908	0	0	0	0	0
+GO:0008847: [MF] Enterobacter ribonuclease activity|g__Escherichia.s__Escherichia_coli	0.0369908	0	0	0	0	0
+GO:0008849: [MF] enterochelin esterase activity	0	0	0	0	0	0.0307219
+GO:0008849: [MF] enterochelin esterase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0307219
+GO:0008852: [MF] exodeoxyribonuclease I activity	0	0	0.0705914	0	0	0
+GO:0008852: [MF] exodeoxyribonuclease I activity|g__Escherichia.s__Escherichia_coli	0	0	0.0705914	0	0	0
+GO:0008853: [MF] exodeoxyribonuclease III activity	2.92161	32.4019	21.4675	69.038	56.7264	97.0661
+GO:0008853: [MF] exodeoxyribonuclease III activity|g__Clostridium.s__Clostridium_thermocellum	2.72687	31.9533	20.168	68.6812	56.3785	96.8593
+GO:0008853: [MF] exodeoxyribonuclease III activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.194748	0.448673	1.29956	0.356762	0.347919	0.206807
+GO:0008854: [MF] exodeoxyribonuclease V activity	1.96909	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0008854: [MF] exodeoxyribonuclease V activity|g__Clostridium.s__Clostridium_thermocellum	1.90991	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0008854: [MF] exodeoxyribonuclease V activity|g__Escherichia.s__Escherichia_coli	0.0591804	0	0	0	0	0
+GO:0008855: [MF] exodeoxyribonuclease VII activity	9.96534	32.9928	26.8289	117.871	107.577	100.856
+GO:0008855: [MF] exodeoxyribonuclease VII activity|g__Clostridium.s__Clostridium_thermocellum	9.96534	32.9928	26.8289	117.871	107.577	100.856
+GO:0008859: [MF] exoribonuclease II activity	4.57448	15.0492	17.6433	32.604	34.212	38.5598
+GO:0008859: [MF] exoribonuclease II activity|g__Clostridium.s__Clostridium_thermocellum	4.55329	15.0492	17.6433	32.604	34.212	38.5598
+GO:0008859: [MF] exoribonuclease II activity|g__Escherichia.s__Escherichia_coli	0.0211931	0	0	0	0	0
+GO:0008860: [MF] ferredoxin-NAD+ reductase activity	0.716775	18.2606	26.7851	56.2473	59.6931	111.807
+GO:0008860: [MF] ferredoxin-NAD+ reductase activity|g__Clostridium.s__Clostridium_thermocellum	0.693711	18.2606	26.7851	56.2473	59.6931	111.807
+GO:0008860: [MF] ferredoxin-NAD+ reductase activity|g__Escherichia.s__Escherichia_coli	0.0230889	0	0	0	0	0
+GO:0008861: [MF] formate C-acetyltransferase activity	18.8015	60.7435	55.2215	127.824	108.416	124.248
+GO:0008861: [MF] formate C-acetyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	6.52107	50.7032	43.4059	122.485	102.544	118.133
+GO:0008861: [MF] formate C-acetyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	12.2128	10.0403	11.7339	5.33922	5.87136	5.90738
+GO:0008861: [MF] formate C-acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0675653	0	0.0817327	0	0	0.206969
+GO:0008863: [MF] formate dehydrogenase (NAD+) activity	0.173677	0	0.302754	0.0992815	0	0.0263239
+GO:0008863: [MF] formate dehydrogenase (NAD+) activity|g__Escherichia.s__Escherichia_coli	0.173677	0	0.122734	0	0	0.0263239
+GO:0008863: [MF] formate dehydrogenase (NAD+) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.180019	0.0992815	0	0
+GO:0008866: [MF] fructuronate reductase activity	0.0554375	0	0	0	0	0
+GO:0008866: [MF] fructuronate reductase activity|g__Escherichia.s__Escherichia_coli	0.0554375	0	0	0	0	0
+GO:0008867: [MF] galactarate dehydratase activity	0.0335639	0	0	0	0	0
+GO:0008867: [MF] galactarate dehydratase activity|g__Escherichia.s__Escherichia_coli	0.0335639	0	0	0	0	0
+GO:0008868: [MF] galactitol-1-phosphate 5-dehydrogenase activity	0	0	0	0	0	0.07577
+GO:0008868: [MF] galactitol-1-phosphate 5-dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.07577
+GO:0008872: [MF] glucarate dehydratase activity	0.0507469	0	0	0	0	0
+GO:0008872: [MF] glucarate dehydratase activity|g__Escherichia.s__Escherichia_coli	0.0507469	0	0	0	0	0
+GO:0008878: [MF] glucose-1-phosphate adenylyltransferase activity	57.1605	41.963	36.8359	82.3904	87.5629	79.4275
+GO:0008878: [MF] glucose-1-phosphate adenylyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.41814	12.5801	8.53354	55.3722	59.9012	52.6519
+GO:0008878: [MF] glucose-1-phosphate adenylyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	55.6787	29.383	28.2237	27.0182	27.6617	26.7756
+GO:0008878: [MF] glucose-1-phosphate adenylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0636037	0	0.0787106	0	0	0
+GO:0008879: [MF] glucose-1-phosphate thymidylyltransferase activity	3.5585	2.06363	5.23707	0.824146	1.58891	2.01888
+GO:0008879: [MF] glucose-1-phosphate thymidylyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.26015	1.99964	4.92832	0.722029	1.58891	1.92271
+GO:0008879: [MF] glucose-1-phosphate thymidylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.231618	0	0.12314	0	0	0.0961435
+GO:0008879: [MF] glucose-1-phosphate thymidylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0667146	0.0640362	0.185613	0.102117	0	0
+GO:0008880: [MF] glucuronate isomerase activity	0.057309	0	0.0705914	0	0	0
+GO:0008880: [MF] glucuronate isomerase activity|g__Escherichia.s__Escherichia_coli	0.057309	0	0.0705914	0	0	0
+GO:0008881: [MF] glutamate racemase activity	5.79817	25.3437	28.2647	44.3002	51.8337	50.065
+GO:0008881: [MF] glutamate racemase activity|g__Clostridium.s__Clostridium_thermocellum	5.7221	25.3437	28.2647	44.3002	51.8337	49.9638
+GO:0008881: [MF] glutamate racemase activity|g__Escherichia.s__Escherichia_coli	0.0760717	0	0	0	0	0.101221
+GO:0008883: [MF] glutamyl-tRNA reductase activity	0.37873	6.39639	6.80087	12.4758	8.07752	6.09792
+GO:0008883: [MF] glutamyl-tRNA reductase activity|g__Clostridium.s__Clostridium_thermocellum	0.0574548	5.29461	5.06386	11.608	7.87258	5.57901
+GO:0008883: [MF] glutamyl-tRNA reductase activity|g__Escherichia.s__Escherichia_coli	0	0	0.162654	0	0	0
+GO:0008883: [MF] glutamyl-tRNA reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.321275	1.10178	1.5743	0.867768	0.204941	0.518942
+GO:0008884: [MF] glutathionylspermidine amidase activity	0.0852829	0	0	0	0	0
+GO:0008884: [MF] glutathionylspermidine amidase activity|g__Escherichia.s__Escherichia_coli	0.0852829	0	0	0	0	0
+GO:0008885: [MF] glutathionylspermidine synthase activity	0.0852829	0	0	0	0	0
+GO:0008885: [MF] glutathionylspermidine synthase activity|g__Escherichia.s__Escherichia_coli	0.0852829	0	0	0	0	0
+GO:0008887: [MF] glycerate kinase activity	42.9862	9.93042	11.9993	14.1016	15.5978	11.5215
+GO:0008887: [MF] glycerate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	42.8886	9.93042	11.9993	14.1016	15.5978	11.3916
+GO:0008887: [MF] glycerate kinase activity|g__Escherichia.s__Escherichia_coli	0.0976051	0	0	0	0	0.129873
+GO:0008888: [MF] glycerol dehydrogenase [NAD+] activity	0.0508684	0	0	0	0	0
+GO:0008888: [MF] glycerol dehydrogenase [NAD+] activity|g__Escherichia.s__Escherichia_coli	0.0508684	0	0	0	0	0
+GO:0008889: [MF] glycerophosphodiester phosphodiesterase activity	44.9419	25.4133	31.2513	18.283	20.8246	13.5499
+GO:0008889: [MF] glycerophosphodiester phosphodiesterase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	44.9157	25.4133	31.2513	18.283	20.8246	13.5499
+GO:0008889: [MF] glycerophosphodiester phosphodiesterase activity|g__Escherichia.s__Escherichia_coli	0.0262241	0	0	0	0	0
+GO:0008890: [MF] glycine C-acetyltransferase activity	134.503	98.7123	165.423	101.135	109.359	59.248
+GO:0008890: [MF] glycine C-acetyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	134.433	98.7123	165.423	101.135	109.359	59.248
+GO:0008890: [MF] glycine C-acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0696311	0	0	0	0	0
+GO:0008891: [MF] glycolate oxidase activity	0.0359943	0	0.0668025	0	0	0
+GO:0008891: [MF] glycolate oxidase activity|g__Escherichia.s__Escherichia_coli	0.0359943	0	0.0668025	0	0	0
+GO:0008894: [MF] guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity	0.254877	0	0.0675693	0	0	0.0484437
+GO:0008894: [MF] guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity|g__Escherichia.s__Escherichia_coli	0.254877	0	0.0675693	0	0	0.0484437
+GO:0008897: [MF] holo-[acyl-carrier-protein] synthase activity	11.3564	37.0844	35.5736	66.3844	61.5334	76.6083
+GO:0008897: [MF] holo-[acyl-carrier-protein] synthase activity|g__Clostridium.s__Clostridium_thermocellum	3.1134	23.8982	26.3249	55.7143	50.028	67.7148
+GO:0008897: [MF] holo-[acyl-carrier-protein] synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	7.96412	13.1862	9.17571	10.6701	11.5054	8.74583
+GO:0008897: [MF] holo-[acyl-carrier-protein] synthase activity|g__Escherichia.s__Escherichia_coli	0.278913	0	0.0729821	0	0	0.147659
+GO:0008898: [MF] S-adenosylmethionine-homocysteine S-methyltransferase activity	0.0137561	0	0.0127651	0	0	0.0549114
+GO:0008898: [MF] S-adenosylmethionine-homocysteine S-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0137561	0	0.0127651	0	0	0.0549114
+GO:0008899: [MF] homoserine O-succinyltransferase activity	1.9575	18.6499	14.6035	39.4573	34.2343	40.4424
+GO:0008899: [MF] homoserine O-succinyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.80171	18.6499	14.2566	39.4573	34.2343	40.4424
+GO:0008899: [MF] homoserine O-succinyltransferase activity|g__Escherichia.s__Escherichia_coli	0.155789	0	0.346913	0	0	0
+GO:0008901: [MF] ferredoxin hydrogenase activity	88.6372	126.184	111.258	342.032	345.473	294.15
+GO:0008901: [MF] ferredoxin hydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	7.39113	47.3819	28.6591	262.74	233.096	198.697
+GO:0008901: [MF] ferredoxin hydrogenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	72.8251	71.6263	56.2895	66.987	100.712	65.7144
+GO:0008901: [MF] ferredoxin hydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0312793	0	0.0465498	0	0	0
+GO:0008901: [MF] ferredoxin hydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	8.38981	7.17588	26.2628	12.3054	11.6651	29.7389
+GO:0008908: [MF] isochorismatase activity	0	0	0.127425	0	0	0
+GO:0008908: [MF] isochorismatase activity|g__Escherichia.s__Escherichia_coli	0	0	0.127425	0	0	0
+GO:0008909: [MF] isochorismate synthase activity	0.0236965	0	0	0	0	0
+GO:0008909: [MF] isochorismate synthase activity|g__Escherichia.s__Escherichia_coli	0.0236965	0	0	0	0	0
+GO:0008911: [MF] lactaldehyde dehydrogenase activity	0.0389594	0	0.0740646	0	0	0
+GO:0008911: [MF] lactaldehyde dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0389594	0	0	0	0	0
+GO:0008911: [MF] lactaldehyde dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.0740646	0	0	0
+GO:0008914: [MF] leucyltransferase activity	0.791899	2.19613	0.980296	6.0269	4.87048	7.72586
+GO:0008914: [MF] leucyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.704623	2.19613	0.980296	6.0269	4.87048	7.72586
+GO:0008914: [MF] leucyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0872759	0	0	0	0	0
+GO:0008917: [MF] lipopolysaccharide N-acetylglucosaminyltransferase activity	0.157831	0	0.0976553	0	0	0
+GO:0008917: [MF] lipopolysaccharide N-acetylglucosaminyltransferase activity|g__Escherichia.s__Escherichia_coli	0.157831	0	0.0976553	0	0	0
+GO:0008918: [MF] lipopolysaccharide 3-alpha-galactosyltransferase activity	0.671715	0	0.259948	0	0	0.372512
+GO:0008918: [MF] lipopolysaccharide 3-alpha-galactosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.671715	0	0.259948	0	0	0.372512
+GO:0008919: [MF] lipopolysaccharide glucosyltransferase I activity	0.591877	0	0.208121	0	0	0.22385
+GO:0008919: [MF] lipopolysaccharide glucosyltransferase I activity|g__Escherichia.s__Escherichia_coli	0.591877	0	0.208121	0	0	0.22385
+GO:0008921: [MF] lipopolysaccharide-1,6-galactosyltransferase activity	0.365509	0	0.407987	0	0	0.181033
+GO:0008921: [MF] lipopolysaccharide-1,6-galactosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.365509	0	0.407987	0	0	0.181033
+GO:0008922: [MF] long-chain fatty acid [acyl-carrier-protein] ligase activity	0.0121034	0	0	0	0	0
+GO:0008922: [MF] long-chain fatty acid [acyl-carrier-protein] ligase activity|g__Escherichia.s__Escherichia_coli	0.0121034	0	0	0	0	0
+GO:0008923: [MF] lysine decarboxylase activity	0.864252	7.43865	3.59976	26.3429	23.4271	26.2391
+GO:0008923: [MF] lysine decarboxylase activity|g__Clostridium.s__Clostridium_thermocellum	0.815595	7.43865	3.57716	26.3429	23.4271	26.2391
+GO:0008923: [MF] lysine decarboxylase activity|g__Escherichia.s__Escherichia_coli	0.0486567	0	0.0225983	0	0	0
+GO:0008925: [MF] maltose O-acetyltransferase activity	0.120913	0	0	0	0	0
+GO:0008925: [MF] maltose O-acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0.120913	0	0	0	0	0
+GO:0008926: [MF] mannitol-1-phosphate 5-dehydrogenase activity	0.0243284	0	0.225757	0	0	0
+GO:0008926: [MF] mannitol-1-phosphate 5-dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0243284	0	0.225757	0	0	0
+GO:0008929: [MF] methylglyoxal synthase activity	23.3534	76.7908	74.5292	232.855	205.703	207.253
+GO:0008929: [MF] methylglyoxal synthase activity|g__Clostridium.s__Clostridium_thermocellum	14.5058	68.6207	67.2482	226.88	198.339	202.822
+GO:0008929: [MF] methylglyoxal synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.8476	8.17008	7.28098	5.97475	7.36417	4.43159
+GO:0008932: [MF] lytic endotransglycosylase activity	0.0509413	0	0	0	0	0
+GO:0008932: [MF] lytic endotransglycosylase activity|g__Escherichia.s__Escherichia_coli	0.0509413	0	0	0	0	0
+GO:0008933: [MF] lytic transglycosylase activity	3.6939	22.2586	12.6333	61.629	55.6229	68.0379
+GO:0008933: [MF] lytic transglycosylase activity|g__Clostridium.s__Clostridium_thermocellum	3.37987	22.2586	12.6333	61.629	55.6229	67.9723
+GO:0008933: [MF] lytic transglycosylase activity|g__Escherichia.s__Escherichia_coli	0.314033	0	0	0	0	0.0656156
+GO:0008934: [MF] inositol monophosphate 1-phosphatase activity	37.4463	42.6245	34.9784	32.6609	40.6059	39.8263
+GO:0008934: [MF] inositol monophosphate 1-phosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	37.3761	42.5571	34.4422	32.5891	40.4493	39.8263
+GO:0008934: [MF] inositol monophosphate 1-phosphatase activity|g__Escherichia.s__Escherichia_coli	0	0	0.27587	0	0	0
+GO:0008934: [MF] inositol monophosphate 1-phosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0701415	0.06735	0.260354	0.0717752	0.156587	0
+GO:0008939: [MF] nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity	0.612098	3.85622	2.08639	5.89497	5.93523	6.95066
+GO:0008939: [MF] nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.42921	3.60526	1.94088	5.81473	5.79509	6.63769
+GO:0008939: [MF] nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.052278	0	0.0484893	0	0	0
+GO:0008939: [MF] nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.13061	0.250917	0.0970238	0.080231	0.140114	0.312943
+GO:0008940: [MF] nitrate reductase activity	0.176593	0	0	0	0	0
+GO:0008940: [MF] nitrate reductase activity|g__Escherichia.s__Escherichia_coli	0.176593	0	0	0	0	0
+GO:0008941: [MF] nitric oxide dioxygenase activity	0.0466881	0	0	0	0	0
+GO:0008941: [MF] nitric oxide dioxygenase activity|g__Escherichia.s__Escherichia_coli	0.0466881	0	0	0	0	0
+GO:0008942: [MF] nitrite reductase [NAD(P)H] activity	0.0812241	0	0	0	0	0
+GO:0008942: [MF] nitrite reductase [NAD(P)H] activity|g__Escherichia.s__Escherichia_coli	0.0812241	0	0	0	0	0
+GO:0008948: [MF] oxaloacetate decarboxylase activity	89.2005	91.9808	86.0155	151.96	150.417	136.593
+GO:0008948: [MF] oxaloacetate decarboxylase activity|g__Clostridium.s__Clostridium_thermocellum	8.12293	37.4354	30.9941	110.292	106.89	100.995
+GO:0008948: [MF] oxaloacetate decarboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	80.9923	54.3957	54.9056	41.5088	43.4297	35.3704
+GO:0008948: [MF] oxaloacetate decarboxylase activity|g__Escherichia.s__Escherichia_coli	0.0541008	0	0	0	0	0
+GO:0008948: [MF] oxaloacetate decarboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0312307	0.149776	0.115788	0.159741	0.0975763	0.228442
+GO:0008949: [MF] oxalyl-CoA decarboxylase activity	0	0	0	0	0	0.0418465
+GO:0008949: [MF] oxalyl-CoA decarboxylase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0418465
+GO:0008955: [MF] peptidoglycan glycosyltransferase activity	1.29329	6.72394	4.69255	17.615	16.7616	17.2018
+GO:0008955: [MF] peptidoglycan glycosyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.22279	6.72394	4.65502	17.615	16.7616	17.2018
+GO:0008955: [MF] peptidoglycan glycosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0705061	0	0.0375285	0	0	0
+GO:0008959: [MF] phosphate acetyltransferase activity	3.84906	26.167	24.122	49.8	56.3004	73.964
+GO:0008959: [MF] phosphate acetyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.82636	26.167	24.122	49.8	56.3004	73.964
+GO:0008959: [MF] phosphate acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0227	0	0	0	0	0
+GO:0008960: [MF] phosphatidylglycerol-membrane-oligosaccharide glycerophosphotransferase activity	0.0907756	0	0	0	0	0
+GO:0008960: [MF] phosphatidylglycerol-membrane-oligosaccharide glycerophosphotransferase activity|g__Escherichia.s__Escherichia_coli	0.0907756	0	0	0	0	0
+GO:0008961: [MF] phosphatidylglycerol-prolipoprotein diacylglyceryl transferase activity	48.0236	70.3409	80.3992	44.6553	44.9929	49.183
+GO:0008961: [MF] phosphatidylglycerol-prolipoprotein diacylglyceryl transferase activity|g__Clostridium.s__Clostridium_thermocellum	1.97208	5.6224	2.38586	18.0107	13.9535	12.5643
+GO:0008961: [MF] phosphatidylglycerol-prolipoprotein diacylglyceryl transferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	45.9846	64.7185	78.0134	26.6446	31.0394	36.6187
+GO:0008961: [MF] phosphatidylglycerol-prolipoprotein diacylglyceryl transferase activity|g__Escherichia.s__Escherichia_coli	0.0669577	0	0	0	0	0
+GO:0008962: [MF] phosphatidylglycerophosphatase activity	0.359773	0.138901	0.580113	0.147927	0.0322939	0.175277
+GO:0008962: [MF] phosphatidylglycerophosphatase activity|g__Escherichia.s__Escherichia_coli	0	0	0.244476	0	0	0.175277
+GO:0008962: [MF] phosphatidylglycerophosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.359773	0.138901	0.335591	0.147927	0.0322939	0
+GO:0008963: [MF] phospho-N-acetylmuramoyl-pentapeptide-transferase activity	131.557	113.922	110.665	196.914	188.244	186.001
+GO:0008963: [MF] phospho-N-acetylmuramoyl-pentapeptide-transferase activity|g__Clostridium.s__Clostridium_thermocellum	8.31155	50.4013	54.5091	143.257	142.31	148.974
+GO:0008963: [MF] phospho-N-acetylmuramoyl-pentapeptide-transferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	123.001	63.0804	56.0024	53.3677	45.8565	36.7708
+GO:0008963: [MF] phospho-N-acetylmuramoyl-pentapeptide-transferase activity|g__Escherichia.s__Escherichia_coli	0.0765578	0	0.0472715	0	0	0
+GO:0008963: [MF] phospho-N-acetylmuramoyl-pentapeptide-transferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.16816	0.439805	0.10618	0.28924	0.0766981	0.257062
+GO:0008964: [MF] phosphoenolpyruvate carboxylase activity	0.0536877	0.262166	0	0.262877	0.15294	0.185011
+GO:0008964: [MF] phosphoenolpyruvate carboxylase activity|g__Escherichia.s__Escherichia_coli	0.0194432	0	0	0	0	0.025483
+GO:0008964: [MF] phosphoenolpyruvate carboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0342444	0.262166	0	0.262877	0.15294	0.159528
+GO:0008965: [MF] phosphoenolpyruvate-protein phosphotransferase activity	11.9199	14.503	13.3166	20.8846	25.1986	16.0476
+GO:0008965: [MF] phosphoenolpyruvate-protein phosphotransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.6681	14.503	13.2736	20.8846	25.1986	16.0168
+GO:0008965: [MF] phosphoenolpyruvate-protein phosphotransferase activity|g__Escherichia.s__Escherichia_coli	0.251839	0	0.0430315	0	0	0.0308513
+GO:0008966: [MF] phosphoglucosamine mutase activity	5.36276	24.3727	15.3275	76.9179	63.1667	59.5564
+GO:0008966: [MF] phosphoglucosamine mutase activity|g__Clostridium.s__Clostridium_thermocellum	5.04163	23.9885	14.9549	76.3643	62.9168	59.3693
+GO:0008966: [MF] phosphoglucosamine mutase activity|g__Escherichia.s__Escherichia_coli	0.0409037	0	0	0	0	0.0543617
+GO:0008966: [MF] phosphoglucosamine mutase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.280226	0.384217	0.372578	0.553659	0.249866	0.132719
+GO:0008967: [MF] phosphoglycolate phosphatase activity	1.10472	12.5617	8.67494	34.2202	34.1733	43.222
+GO:0008967: [MF] phosphoglycolate phosphatase activity|g__Clostridium.s__Clostridium_thermocellum	0.916311	12.1999	8.4127	33.9792	34.1312	43.0966
+GO:0008967: [MF] phosphoglycolate phosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.188405	0.361814	0.262248	0.240991	0.0420603	0.125346
+GO:0008972: [MF] phosphomethylpyrimidine kinase activity	0	0.451147	0.147408	0.243752	0.0708166	0.105683
+GO:0008972: [MF] phosphomethylpyrimidine kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0	0.146088	0	0	0	0
+GO:0008972: [MF] phosphomethylpyrimidine kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.305059	0.147408	0.243752	0.0708166	0.105683
+GO:0008973: [MF] phosphopentomutase activity	15.6617	14.8909	14.3173	23.2114	28.232	22.4618
+GO:0008973: [MF] phosphopentomutase activity|g__Clostridium.s__Clostridium_thermocellum	0.81263	4.4486	5.05268	10.4408	12.9069	10.716
+GO:0008973: [MF] phosphopentomutase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.6687	10.4423	9.26466	12.7706	15.3251	11.6857
+GO:0008973: [MF] phosphopentomutase activity|g__Escherichia.s__Escherichia_coli	0.180458	0	0	0	0	0.060215
+GO:0008977: [MF] prephenate dehydrogenase activity	3.62641	16.9319	12.9249	61.6974	63.1192	58.5705
+GO:0008977: [MF] prephenate dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	3.38371	16.3874	12.5114	61.2005	62.8299	58.0045
+GO:0008977: [MF] prephenate dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.2427	0.544541	0.41349	0.496905	0.289343	0.565963
+GO:0008979: [MF] prophage integrase activity	0.0479276	0	0	0	0	0
+GO:0008979: [MF] prophage integrase activity|g__Escherichia.s__Escherichia_coli	0.0479276	0	0	0	0	0
+GO:0008980: [MF] propionate kinase activity	0.0457159	0	0	0	0	0
+GO:0008980: [MF] propionate kinase activity|g__Escherichia.s__Escherichia_coli	0.0457159	0	0	0	0	0
+GO:0008982: [MF] protein-N(PI)-phosphohistidine-sugar phosphotransferase activity	1257.46	552.953	733.664	428.284	475.558	379.171
+GO:0008982: [MF] protein-N(PI)-phosphohistidine-sugar phosphotransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1256.29	552.953	731.412	428.284	475.558	378.832
+GO:0008982: [MF] protein-N(PI)-phosphohistidine-sugar phosphotransferase activity|g__Escherichia.s__Escherichia_coli	1.17274	0	2.2513	0	0	0.339235
+GO:0008983: [MF] protein-glutamate O-methyltransferase activity	1.39005	3.99773	4.45073	48.722	37.7532	26.3392
+GO:0008983: [MF] protein-glutamate O-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.35053	3.84595	4.45073	48.6816	37.6826	26.3392
+GO:0008983: [MF] protein-glutamate O-methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0395184	0.151783	0	0.0403642	0.0705779	0
+GO:0008984: [MF] protein-glutamate methylesterase activity	20.1425	29.1477	37.5445	97.2133	98.8375	97.557
+GO:0008984: [MF] protein-glutamate methylesterase activity|g__Clostridium.s__Clostridium_thermocellum	3.25315	9.02579	9.47242	86.7788	82.4587	83.4675
+GO:0008984: [MF] protein-glutamate methylesterase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.8894	20.1219	28.0721	10.4345	16.3788	14.0895
+GO:0008986: [MF] pyruvate, water dikinase activity	0.607431	0.574832	0.355077	0.495985	0.352955	0.322516
+GO:0008986: [MF] pyruvate, water dikinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.607431	0.574832	0.355077	0.495985	0.352955	0.322516
+GO:0008987: [MF] quinolinate synthetase A activity	3.84342	39.5666	33.242	88.7446	86.3151	79.0776
+GO:0008987: [MF] quinolinate synthetase A activity|g__Clostridium.s__Clostridium_thermocellum	3.74812	39.4446	33.242	88.3542	86.2584	79.0776
+GO:0008987: [MF] quinolinate synthetase A activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0953205	0.122005	0	0.390386	0.0567314	0
+GO:0008989: [MF] rRNA (guanine-N1-)-methyltransferase activity	0.151123	0	0	0	0	0
+GO:0008989: [MF] rRNA (guanine-N1-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.151123	0	0	0	0	0
+GO:0008993: [MF] rhamnulokinase activity	0.0552431	0	0	0	0	0
+GO:0008993: [MF] rhamnulokinase activity|g__Escherichia.s__Escherichia_coli	0.0552431	0	0	0	0	0
+GO:0008998: [MF] ribonucleoside-triphosphate reductase activity	0.137926	0.213999	0.268834	0.0912236	0.059683	0.121465
+GO:0008998: [MF] ribonucleoside-triphosphate reductase activity|g__Escherichia.s__Escherichia_coli	0.0487782	0	0	0	0	0.0325329
+GO:0008998: [MF] ribonucleoside-triphosphate reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0891473	0.213999	0.268834	0.0912236	0.059683	0.0889643
+GO:0008999: [MF] ribosomal-protein-alanine N-acetyltransferase activity	7.87636	3.88773	3.60458	1.22769	3.346	1.58729
+GO:0008999: [MF] ribosomal-protein-alanine N-acetyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	7.87636	3.88773	3.60458	1.22769	3.346	1.58729
+GO:0009001: [MF] serine O-acetyltransferase activity	1.70935	12.2732	6.72188	25.6384	18.8175	41.6856
+GO:0009001: [MF] serine O-acetyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.70935	12.2732	6.72188	25.6384	18.8175	41.6856
+GO:0009002: [MF] serine-type D-Ala-D-Ala carboxypeptidase activity	11.5977	41.1042	43.4606	77.3469	76.4782	95.1614
+GO:0009002: [MF] serine-type D-Ala-D-Ala carboxypeptidase activity|g__Clostridium.s__Clostridium_thermocellum	11.4678	41.1042	43.0798	77.3469	76.4782	95.1614
+GO:0009002: [MF] serine-type D-Ala-D-Ala carboxypeptidase activity|g__Escherichia.s__Escherichia_coli	0.129832	0	0.380833	0	0	0
+GO:0009007: [MF] site-specific DNA-methyltransferase (adenine-specific) activity	2.28859	23.5113	20.5403	37.9433	34.5571	34.3512
+GO:0009007: [MF] site-specific DNA-methyltransferase (adenine-specific) activity|g__Clostridium.s__Clostridium_thermocellum	1.16504	22.054	19.0003	37.3825	34.1225	33.9458
+GO:0009007: [MF] site-specific DNA-methyltransferase (adenine-specific) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.791777	1.45729	1.46866	0.560821	0.434579	0.4054
+GO:0009007: [MF] site-specific DNA-methyltransferase (adenine-specific) activity|g__Escherichia.s__Escherichia_coli	0.331775	0	0.071268	0	0	0
+GO:0009010: [MF] sorbitol-6-phosphate 2-dehydrogenase activity	0.0770925	0	0	0	0	0
+GO:0009010: [MF] sorbitol-6-phosphate 2-dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0770925	0	0	0	0	0
+GO:0009011: [MF] starch synthase activity	28.4469	41.8189	33.0288	199.654	191.763	161.329
+GO:0009011: [MF] starch synthase activity|g__Clostridium.s__Clostridium_thermocellum	3.25983	22.9129	16.1641	176.137	163.855	141.991
+GO:0009011: [MF] starch synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	25.1303	18.9059	16.8647	23.5169	27.9081	19.338
+GO:0009011: [MF] starch synthase activity|g__Escherichia.s__Escherichia_coli	0.0567743	0	0	0	0	0
+GO:0009013: [MF] succinate-semialdehyde dehydrogenase [NAD(P)+] activity	0.0781861	0	0	0	0	0
+GO:0009013: [MF] succinate-semialdehyde dehydrogenase [NAD(P)+] activity|g__Escherichia.s__Escherichia_coli	0.0781861	0	0	0	0	0
+GO:0009014: [MF] succinyl-diaminopimelate desuccinylase activity	0.0496046	0	0	0	0	0
+GO:0009014: [MF] succinyl-diaminopimelate desuccinylase activity|g__Escherichia.s__Escherichia_coli	0.0496046	0	0	0	0	0
+GO:0009017: [MF] succinylglutamate desuccinylase activity	0.118701	0	0	0	0	0
+GO:0009017: [MF] succinylglutamate desuccinylase activity|g__Escherichia.s__Escherichia_coli	0.118701	0	0	0	0	0
+GO:0009018: [MF] sucrose phosphorylase activity	0	0	0.165946	0	0	0
+GO:0009018: [MF] sucrose phosphorylase activity|g__Escherichia.s__Escherichia_coli	0	0	0.165946	0	0	0
+GO:0009022: [MF] tRNA nucleotidyltransferase activity	3.27018	22.0906	19.5707	49.8565	44.7456	41.7264
+GO:0009022: [MF] tRNA nucleotidyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.09874	22.0906	19.5707	49.8565	44.7456	41.7264
+GO:0009022: [MF] tRNA nucleotidyltransferase activity|g__Escherichia.s__Escherichia_coli	0.171465	0	0	0	0	0
+GO:0009024: [MF] tagatose-6-phosphate kinase activity	134.941	134.531	133.368	207.117	206.169	216.128
+GO:0009024: [MF] tagatose-6-phosphate kinase activity|g__Clostridium.s__Clostridium_thermocellum	9.86686	28.7165	21.6438	133.033	107.045	143.081
+GO:0009024: [MF] tagatose-6-phosphate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	125.074	105.814	111.725	74.0842	99.1241	73.0471
+GO:0009025: [MF] tagatose-bisphosphate aldolase activity	0.103414	0	0	0	0	0
+GO:0009025: [MF] tagatose-bisphosphate aldolase activity|g__Escherichia.s__Escherichia_coli	0.103414	0	0	0	0	0
+GO:0009026: [MF] tagaturonate reductase activity	0.037331	0	0	0	0	0.0489934
+GO:0009026: [MF] tagaturonate reductase activity|g__Escherichia.s__Escherichia_coli	0.037331	0	0	0	0	0.0489934
+GO:0009027: [MF] tartrate dehydrogenase activity	0	0	0.0963923	0	0	0
+GO:0009027: [MF] tartrate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0963923	0	0	0
+GO:0009028: [MF] tartronate-semialdehyde synthase activity	0.0297725	0	0.225667	0	0	0.0197914
+GO:0009028: [MF] tartronate-semialdehyde synthase activity|g__Escherichia.s__Escherichia_coli	0.0297725	0	0.225667	0	0	0.0197914
+GO:0009030: [MF] thiamine-phosphate kinase activity	0.732208	0.75966	1.07344	1.04805	0.508174	0.872342
+GO:0009030: [MF] thiamine-phosphate kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.732208	0.75966	1.07344	1.04805	0.508174	0.872342
+GO:0009032: [MF] thymidine phosphorylase activity	0.0414384	0	0	0	0	0
+GO:0009032: [MF] thymidine phosphorylase activity|g__Escherichia.s__Escherichia_coli	0.0414384	0	0	0	0	0
+GO:0009033: [MF] trimethylamine-N-oxide reductase activity	0.023818	0	0	0	0	0
+GO:0009033: [MF] trimethylamine-N-oxide reductase activity|g__Escherichia.s__Escherichia_coli	0.023818	0	0	0	0	0
+GO:0009034: [MF] tryptophanase activity	8.04622	2.92195	5.98882	0.332439	0.870287	2.26893
+GO:0009034: [MF] tryptophanase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	7.95642	2.92195	5.68913	0.332439	0.870287	2.26893
+GO:0009034: [MF] tryptophanase activity|g__Escherichia.s__Escherichia_coli	0.0897792	0	0.299687	0	0	0
+GO:0009035: [MF] Type I site-specific deoxyribonuclease activity	0.0504309	0.145202	0.0935957	0.0687908	0.0825362	0.0671032
+GO:0009035: [MF] Type I site-specific deoxyribonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0504309	0.145202	0.0935957	0.0687908	0.0825362	0.0671032
+GO:0009036: [MF] Type II site-specific deoxyribonuclease activity	0	0	0.0195762	0	0	0
+GO:0009036: [MF] Type II site-specific deoxyribonuclease activity|g__Escherichia.s__Escherichia_coli	0	0	0.0195762	0	0	0
+GO:0009037: [MF] tyrosine-based site-specific recombinase activity	20.305	35.3561	37.0454	66.3327	67.0833	100.221
+GO:0009037: [MF] tyrosine-based site-specific recombinase activity|g__Clostridium.s__Clostridium_thermocellum	2.79817	18.9956	17.6943	53.5995	57.7881	90.0056
+GO:0009037: [MF] tyrosine-based site-specific recombinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.2546	16.0043	18.9494	12.4801	8.90857	9.72214
+GO:0009037: [MF] tyrosine-based site-specific recombinase activity|g__Escherichia.s__Escherichia_coli	0.128568	0	0	0	0	0
+GO:0009037: [MF] tyrosine-based site-specific recombinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.123683	0.356213	0.401717	0.253103	0.386681	0.493718
+GO:0009039: [MF] urease activity	0.0309634	0.628694	1.87584	1.02724	1.13578	2.2221
+GO:0009039: [MF] urease activity|g__Clostridium.s__Clostridium_thermocellum	0.0309634	0.628694	1.87584	1.02724	1.13578	2.2221
+GO:0009045: [MF] xylose isomerase activity	0	0	0.0769063	0	0	0
+GO:0009045: [MF] xylose isomerase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0769063	0	0	0
+GO:0009052: [BP] pentose-phosphate shunt, non-oxidative branch	0.610882	1.3183	1.11259	1.49649	0.69458	0.912054
+GO:0009052: [BP] pentose-phosphate shunt, non-oxidative branch|g__Escherichia.s__Escherichia_coli	0.24479	0	0.0933701	0	0	0
+GO:0009052: [BP] pentose-phosphate shunt, non-oxidative branch|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.366068	1.3183	1.01918	1.49649	0.69458	0.912054
+GO:0009055: [MF] electron carrier activity	6265.93	17087.6	14039.6	11709.4	10529.7	14837.9
+GO:0009055: [MF] electron carrier activity|g__Clostridium.s__Clostridium_thermocellum	155.433	2025.06	1177.37	6036.32	4225.39	7111.34
+GO:0009055: [MF] electron carrier activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6105.26	15041.1	12849.1	5663.86	6300.71	7716.41
+GO:0009055: [MF] electron carrier activity|g__Escherichia.s__Escherichia_coli	1.71973	0	2.40106	0	0	0.239211
+GO:0009055: [MF] electron carrier activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.52377	21.4136	10.7144	9.17578	3.57768	9.9522
+GO:0009056: [BP] catabolic process	0.0648918	0	0.0618859	0	0	0
+GO:0009056: [BP] catabolic process|g__Escherichia.s__Escherichia_coli	0.0648918	0	0.0618859	0	0	0
+GO:0009058: [BP] biosynthetic process	196.086	1582.63	1415.08	855.682	911.302	991.898
+GO:0009058: [BP] biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	31.9919	1512.4	1300.19	810.889	863.893	937.324
+GO:0009058: [BP] biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	161.844	67.3117	111.497	41.4137	45.1148	49.2434
+GO:0009058: [BP] biosynthetic process|g__Escherichia.s__Escherichia_coli	0.196571	0	0.340192	0	0	0.0869269
+GO:0009058: [BP] biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.05381	2.9143	3.05997	3.37973	2.29367	5.24294
+GO:0009059: [BP] macromolecule biosynthetic process	0.0777973	0.0373389	0.0360851	0.37815	0.277906	0.129388
+GO:0009059: [BP] macromolecule biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.0777973	0.0373389	0.0360851	0.37815	0.277906	0.129388
+GO:0009060: [BP] aerobic respiration	0.19696	0	0	0	0	0.106654
+GO:0009060: [BP] aerobic respiration|g__Escherichia.s__Escherichia_coli	0.19696	0	0	0	0	0.106654
+GO:0009061: [BP] anaerobic respiration	0.288319	0	0.605102	0	0	0.0680087
+GO:0009061: [BP] anaerobic respiration|g__Escherichia.s__Escherichia_coli	0.288319	0	0.605102	0	0	0.0680087
+GO:0009063: [BP] cellular amino acid catabolic process	0.139554	0	0.0742451	0	0	0
+GO:0009063: [BP] cellular amino acid catabolic process|g__Escherichia.s__Escherichia_coli	0.139554	0	0.0742451	0	0	0
+GO:0009073: [BP] aromatic amino acid family biosynthetic process	35.5897	200.985	147.988	522.027	401.689	615.165
+GO:0009073: [BP] aromatic amino acid family biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	33.1477	195.447	144.814	520.522	400.363	612.79
+GO:0009073: [BP] aromatic amino acid family biosynthetic process|g__Escherichia.s__Escherichia_coli	0.543123	0	0.0854314	0	0	0
+GO:0009073: [BP] aromatic amino acid family biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.89888	5.53782	3.08843	1.50516	1.32659	2.37442
+GO:0009082: [BP] branched-chain amino acid biosynthetic process	5.75651	34.0291	23.5696	99.5964	78.3471	48.7481
+GO:0009082: [BP] branched-chain amino acid biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	5.75651	34.0291	23.5696	99.5964	78.3471	48.7481
+GO:0009086: [BP] methionine biosynthetic process	18.0869	54.278	42.5231	131.408	144.169	159.092
+GO:0009086: [BP] methionine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	6.93494	45.9129	36.2113	124.122	135.236	151.264
+GO:0009086: [BP] methionine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.4237	7.6758	5.06856	6.69897	8.77134	7.19531
+GO:0009086: [BP] methionine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.273737	0	0.490126	0	0	0.0708545
+GO:0009086: [BP] methionine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.45451	0.689369	0.753186	0.587432	0.161122	0.562341
+GO:0009088: [BP] threonine biosynthetic process	6.8588	38.222	33.2371	122.977	130.335	124.927
+GO:0009088: [BP] threonine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	5.74762	35.8923	30.8092	120.435	128.656	122.88
+GO:0009088: [BP] threonine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.274417	0.316447	0.10176	0.224826	0.637198	0.219193
+GO:0009088: [BP] threonine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0847725	0	0.15476	0	0	0
+GO:0009088: [BP] threonine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.752016	2.01327	2.17133	2.31757	1.04152	1.82708
+GO:0009089: [BP] lysine biosynthetic process via diaminopimelate	15.0902	91.9391	92.5956	263.937	268.052	323.746
+GO:0009089: [BP] lysine biosynthetic process via diaminopimelate|g__Clostridium.s__Clostridium_thermocellum	12.8175	88.7074	87.6977	259.318	265.568	319.566
+GO:0009089: [BP] lysine biosynthetic process via diaminopimelate|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.314908	0.47201	0.327066	0.26626	0.890384	0.353917
+GO:0009089: [BP] lysine biosynthetic process via diaminopimelate|g__Escherichia.s__Escherichia_coli	0.310703	0	0.298198	0	0	0.0822378
+GO:0009089: [BP] lysine biosynthetic process via diaminopimelate|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.64706	2.75967	4.2727	4.35302	1.59384	3.74378
+GO:0009090: [BP] homoserine biosynthetic process	0.0825366	0	0.0395132	0	0	0
+GO:0009090: [BP] homoserine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0825366	0	0.0395132	0	0	0
+GO:0009094: [BP] L-phenylalanine biosynthetic process	3.19992	34.7949	21.2976	91.1197	79.4176	122.027
+GO:0009094: [BP] L-phenylalanine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.97178	34.7949	21.2976	90.9433	79.4176	122.027
+GO:0009094: [BP] L-phenylalanine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.14196	0	0	0	0	0
+GO:0009094: [BP] L-phenylalanine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0861822	0	0	0.176379	0	0
+GO:0009097: [BP] isoleucine biosynthetic process	23.0182	166.779	110.218	484.051	445.67	384.469
+GO:0009097: [BP] isoleucine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	21.536	164.346	107.335	479.914	443.671	381.841
+GO:0009097: [BP] isoleucine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.274417	0.316447	0.10176	0.224826	0.637198	0.219193
+GO:0009097: [BP] isoleucine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.219757	0	0.115427	0	0	0.0414585
+GO:0009097: [BP] isoleucine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.988008	2.11641	2.6657	3.91177	1.36168	2.36717
+GO:0009098: [BP] leucine biosynthetic process	17.2373	116.824	78.8826	337.757	263.043	200.66
+GO:0009098: [BP] leucine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	16.6799	114.54	77.5037	335.963	262.374	199.657
+GO:0009098: [BP] leucine biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0.115427	0	0	0.0414585
+GO:0009098: [BP] leucine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.557462	2.28337	1.26343	1.79316	0.668537	0.961662
+GO:0009099: [BP] valine biosynthetic process	17.8295	144.548	89.1323	418.86	368.973	308.808
+GO:0009099: [BP] valine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	17.2058	142.842	87.5369	416.188	367.883	307.213
+GO:0009099: [BP] valine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.219757	0	0.115427	0	0	0.0414585
+GO:0009099: [BP] valine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.403982	1.70643	1.47989	2.6718	1.09014	1.55311
+GO:0009102: [BP] biotin biosynthetic process	134.938	100.825	166.632	103.774	113.073	64.0356
+GO:0009102: [BP] biotin biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.202428	2.11296	0.97538	2.63837	3.71452	4.66925
+GO:0009102: [BP] biotin biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	134.433	98.7123	165.423	101.135	109.359	59.248
+GO:0009102: [BP] biotin biosynthetic process|g__Escherichia.s__Escherichia_coli	0.302124	0	0.233516	0	0	0.11836
+GO:0009103: [BP] lipopolysaccharide biosynthetic process	28.9008	95.5152	80.0123	224.725	237.16	270.926
+GO:0009103: [BP] lipopolysaccharide biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	10.1563	81.3977	65.9993	190.168	201.5	250.541
+GO:0009103: [BP] lipopolysaccharide biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.0894	14.1176	12.1005	34.4997	35.4584	19.8786
+GO:0009103: [BP] lipopolysaccharide biosynthetic process|g__Escherichia.s__Escherichia_coli	1.57053	0	1.7029	0	0	0.431368
+GO:0009103: [BP] lipopolysaccharide biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0845295	0	0.209564	0.0577733	0.20162	0.0749939
+GO:0009107: [BP] lipoate biosynthetic process	0.341083	0	0	0	0	0
+GO:0009107: [BP] lipoate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.341083	0	0	0	0	0
+GO:0009108: [BP] coenzyme biosynthetic process	0.771678	0.763254	0.841504	1.98225	0.998638	1.40351
+GO:0009108: [BP] coenzyme biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.771678	0.763254	0.841504	1.98225	0.998638	1.40351
+GO:0009113: [BP] purine nucleobase biosynthetic process	4.34897	6.08064	4.69372	57.9527	46.1025	36.3772
+GO:0009113: [BP] purine nucleobase biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	3.5272	5.59043	3.38983	57.058	45.3974	35.3047
+GO:0009113: [BP] purine nucleobase biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.387868	0.299551	0.499508	0.272179	0.405172	0.441555
+GO:0009113: [BP] purine nucleobase biosynthetic process|g__Escherichia.s__Escherichia_coli	0.220292	0	0	0	0	0
+GO:0009113: [BP] purine nucleobase biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.213633	0.190708	0.804382	0.622524	0.299956	0.630899
+GO:0009114: [BP] hypoxanthine catabolic process	0.0226271	0	0	0	0	0.060215
+GO:0009114: [BP] hypoxanthine catabolic process|g__Escherichia.s__Escherichia_coli	0.0226271	0	0	0	0	0.060215
+GO:0009115: [BP] xanthine catabolic process	0.0258109	0	0	0	0	0.0119007
+GO:0009115: [BP] xanthine catabolic process|g__Escherichia.s__Escherichia_coli	0.0258109	0	0	0	0	0.0119007
+GO:0009116: [BP] nucleoside metabolic process	183.283	173.096	166.842	282.605	293.903	312.419
+GO:0009116: [BP] nucleoside metabolic process|g__Clostridium.s__Clostridium_thermocellum	8.27283	59.0624	42.3816	175.58	174.184	202.063
+GO:0009116: [BP] nucleoside metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	174.28	112.929	122.558	104.879	119.324	108.393
+GO:0009116: [BP] nucleoside metabolic process|g__Escherichia.s__Escherichia_coli	0.0710651	0	0	0	0	0
+GO:0009116: [BP] nucleoside metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.659466	1.10458	1.90245	2.14612	0.396208	1.96278
+GO:0009117: [BP] nucleotide metabolic process	0.530436	0.20471	0	0.656919	0.523974	0.141838
+GO:0009117: [BP] nucleotide metabolic process|g__Escherichia.s__Escherichia_coli	0.208966	0	0	0	0	0
+GO:0009117: [BP] nucleotide metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.321445	0.20471	0	0.656919	0.523974	0.141838
+GO:0009143: [BP] nucleoside triphosphate catabolic process	44.6282	107.691	98.1461	119.472	133.484	132.151
+GO:0009143: [BP] nucleoside triphosphate catabolic process|g__Clostridium.s__Clostridium_thermocellum	4.42378	27.4467	20.7349	59.5457	61.5965	71.5612
+GO:0009143: [BP] nucleoside triphosphate catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.9694	79.6803	76.3232	58.9659	71.4159	58.7156
+GO:0009143: [BP] nucleoside triphosphate catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.235117	0.564237	1.08797	0.960733	0.471539	1.87452
+GO:0009152: [BP] purine ribonucleotide biosynthetic process	2.56609	19.096	13.0901	53.6147	49.7911	53.0492
+GO:0009152: [BP] purine ribonucleotide biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.56609	19.096	13.0901	53.6147	49.7911	53.0492
+GO:0009156: [BP] ribonucleoside monophosphate biosynthetic process	25.8198	63.8724	47.9149	154.152	158.062	149.163
+GO:0009156: [BP] ribonucleoside monophosphate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	7.68042	47.456	38.0977	129.847	130.084	128.96
+GO:0009156: [BP] ribonucleoside monophosphate biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.0708	16.0209	9.62597	23.7424	27.9475	19.6547
+GO:0009156: [BP] ribonucleoside monophosphate biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0685617	0.395372	0.191116	0.56194	0.0306445	0.548177
+GO:0009163: [BP] nucleoside biosynthetic process	0.481488	3.60526	1.98942	5.81473	5.79509	6.63769
+GO:0009163: [BP] nucleoside biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.42921	3.60526	1.94088	5.81473	5.79509	6.63769
+GO:0009163: [BP] nucleoside biosynthetic process|g__Escherichia.s__Escherichia_coli	0.052278	0	0.0484893	0	0	0
+GO:0009165: [BP] nucleotide biosynthetic process	30.487	98.6307	69.8079	249.977	256.024	218.589
+GO:0009165: [BP] nucleotide biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	12.3477	82.2144	59.9908	225.673	228.045	198.386
+GO:0009165: [BP] nucleotide biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.0708	16.0209	9.62597	23.7424	27.9475	19.6547
+GO:0009165: [BP] nucleotide biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0685617	0.395372	0.191116	0.56194	0.0306445	0.548177
+GO:0009166: [BP] nucleotide catabolic process	311.175	63.4439	114.527	50.8058	59.364	47.2532
+GO:0009166: [BP] nucleotide catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	311.041	63.3319	114.365	50.766	59.364	46.9924
+GO:0009166: [BP] nucleotide catabolic process|g__Escherichia.s__Escherichia_coli	0.0953934	0	0.161661	0	0	0.105683
+GO:0009166: [BP] nucleotide catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0388622	0.111877	0	0.0397673	0	0.155097
+GO:0009168: [BP] purine ribonucleoside monophosphate biosynthetic process	0.028533	0	0	0	0	0
+GO:0009168: [BP] purine ribonucleoside monophosphate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.028533	0	0	0	0	0
+GO:0009186: [BP] deoxyribonucleoside diphosphate metabolic process	0.0600067	0	0.0919719	0	0	0.0329857
+GO:0009186: [BP] deoxyribonucleoside diphosphate metabolic process|g__Escherichia.s__Escherichia_coli	0.0600067	0	0.0919719	0	0	0.0329857
+GO:0009220: [BP] pyrimidine ribonucleotide biosynthetic process	16.3852	34.0035	23.718	47.8695	57.1222	56.6387
+GO:0009220: [BP] pyrimidine ribonucleotide biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.44795	10.3579	10.2479	25.2983	25.9347	35.8891
+GO:0009220: [BP] pyrimidine ribonucleotide biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.83	23.6456	13.4701	22.3517	31.1397	20.7496
+GO:0009220: [BP] pyrimidine ribonucleotide biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.107302	0	0	0.219603	0.04792	0
+GO:0009225: [BP] nucleotide-sugar metabolic process	0	0	0.0963923	0.118854	0.285068	0.146398
+GO:0009225: [BP] nucleotide-sugar metabolic process|g__Clostridium.s__Clostridium_thermocellum	0	0	0	0.118854	0.285068	0.0772576
+GO:0009225: [BP] nucleotide-sugar metabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.0963923	0	0	0.0691405
+GO:0009228: [BP] thiamine biosynthetic process	65.9311	94.8326	96.9011	131.087	138.557	118.584
+GO:0009228: [BP] thiamine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	6.01661	51.0999	62.497	93.3511	94.9705	85.8493
+GO:0009228: [BP] thiamine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	58.6956	41.7458	32.4765	34.8417	42.3967	30.9067
+GO:0009228: [BP] thiamine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.100108	0	0.0458281	0	0	0
+GO:0009228: [BP] thiamine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.11872	1.98694	1.88175	2.89438	1.18973	1.82805
+GO:0009229: [BP] thiamine diphosphate biosynthetic process	9.66674	36.1095	57.0916	49.4567	51.4559	44.7386
+GO:0009229: [BP] thiamine diphosphate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	3.19829	31.4616	52.9087	44.9853	47.9843	41.0127
+GO:0009229: [BP] thiamine diphosphate biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.71622	3.38575	2.93453	2.60064	2.69027	2.62158
+GO:0009229: [BP] thiamine diphosphate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.100108	0	0.0458281	0	0	0
+GO:0009229: [BP] thiamine diphosphate biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.652126	1.2621	1.20249	1.87076	0.781305	1.10428
+GO:0009231: [BP] riboflavin biosynthetic process	26.8644	123.185	75.1188	335.946	260.087	235.304
+GO:0009231: [BP] riboflavin biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	13.9733	108.373	64.8526	319.996	247.155	217.613
+GO:0009231: [BP] riboflavin biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.502	12.0994	6.78476	11.8856	12.0771	13.8432
+GO:0009231: [BP] riboflavin biosynthetic process|g__Escherichia.s__Escherichia_coli	0.165851	0	0.131891	0	0	0
+GO:0009231: [BP] riboflavin biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.22342	2.71318	3.34955	4.06472	0.854639	3.84729
+GO:0009234: [BP] menaquinone biosynthetic process	0	0	0.114796	0	0	0.106654
+GO:0009234: [BP] menaquinone biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0.114796	0	0	0.106654
+GO:0009236: [BP] cobalamin biosynthetic process	27.5091	102.578	67.0977	217.498	202.722	242.371
+GO:0009236: [BP] cobalamin biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	5.23905	72.1388	49.4712	181.5	165.378	210.436
+GO:0009236: [BP] cobalamin biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	19.8117	26.9325	13.3741	32.1034	34.5025	26.5592
+GO:0009236: [BP] cobalamin biosynthetic process|g__Escherichia.s__Escherichia_coli	0.429914	0	0.287553	0	0	0
+GO:0009236: [BP] cobalamin biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.02844	3.50664	3.96489	3.89456	2.84171	5.37637
+GO:0009239: [BP] enterobactin biosynthetic process	0.256505	0	0.463062	0	0	0
+GO:0009239: [BP] enterobactin biosynthetic process|g__Escherichia.s__Escherichia_coli	0.256505	0	0.463062	0	0	0
+GO:0009242: [BP] colanic acid biosynthetic process	0.504479	0	0	0	0	0
+GO:0009242: [BP] colanic acid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.504479	0	0	0	0	0
+GO:0009243: [BP] O antigen biosynthetic process	3.95779	2.06363	5.67248	0.881919	1.79053	2.06684
+GO:0009243: [BP] O antigen biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.26015	1.99964	4.92832	0.722029	1.58891	1.92271
+GO:0009243: [BP] O antigen biosynthetic process|g__Escherichia.s__Escherichia_coli	0.546404	0	0.349033	0	0	0.0691405
+GO:0009243: [BP] O antigen biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.151244	0.0640362	0.395177	0.15989	0.20162	0.0749939
+GO:0009244: [BP] lipopolysaccharide core region biosynthetic process	3.56912	0	2.71062	0	0	0.606904
+GO:0009244: [BP] lipopolysaccharide core region biosynthetic process|g__Escherichia.s__Escherichia_coli	3.56912	0	2.71062	0	0	0.606904
+GO:0009245: [BP] lipid A biosynthetic process	25.8731	67.5963	52.2234	183.861	175.804	176.931
+GO:0009245: [BP] lipid A biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	8.27278	53.4787	39.6463	149.361	140.346	156.965
+GO:0009245: [BP] lipid A biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.0894	14.1176	12.1005	34.4997	35.4584	19.8786
+GO:0009245: [BP] lipid A biosynthetic process|g__Escherichia.s__Escherichia_coli	0.51092	0	0.476594	0	0	0.0872827
+GO:0009246: [BP] enterobacterial common antigen biosynthetic process	5.64991	40.0277	33.9237	99.5594	100.778	85.05
+GO:0009246: [BP] enterobacterial common antigen biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	4.60829	38.8424	31.8566	98.9275	100.38	84.5695
+GO:0009246: [BP] enterobacterial common antigen biosynthetic process|g__Escherichia.s__Escherichia_coli	0.630083	0	0.729189	0	0	0.069561
+GO:0009246: [BP] enterobacterial common antigen biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.411541	1.18523	1.3379	0.63185	0.398466	0.410963
+GO:0009247: [BP] glycolipid biosynthetic process	2.04611	24.743	19.4994	37.4554	36.2616	38.6475
+GO:0009247: [BP] glycolipid biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.04611	24.743	19.4994	37.4554	36.2616	38.6475
+GO:0009249: [BP] protein lipoylation	81.2114	113.076	116.419	75.2676	82.2268	88.1895
+GO:0009249: [BP] protein lipoylation|g__Clostridium.s__Clostridium_thermocellum	1.97208	5.6224	2.38586	18.0107	13.9535	12.5643
+GO:0009249: [BP] protein lipoylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	79.0831	107.454	114.033	57.2569	68.2734	75.6252
+GO:0009249: [BP] protein lipoylation|g__Escherichia.s__Escherichia_coli	0.156275	0	0	0	0	0
+GO:0009250: [BP] glucan biosynthetic process	0.282267	0	0.209203	0	0	0.0477969
+GO:0009250: [BP] glucan biosynthetic process|g__Escherichia.s__Escherichia_coli	0.282267	0	0.209203	0	0	0.0477969
+GO:0009252: [BP] peptidoglycan biosynthetic process	313.314	544.981	462.181	950.371	897.884	904.166
+GO:0009252: [BP] peptidoglycan biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	51.5267	297.611	267.757	727.587	659.583	717.691
+GO:0009252: [BP] peptidoglycan biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	260.398	247.371	193.464	222.784	238.3	185.998
+GO:0009252: [BP] peptidoglycan biosynthetic process|g__Escherichia.s__Escherichia_coli	1.38905	0	0.960495	0	0	0.476222
+GO:0009253: [BP] peptidoglycan catabolic process	18.411	36.1215	29.4947	133.626	124.848	128.196
+GO:0009253: [BP] peptidoglycan catabolic process|g__Clostridium.s__Clostridium_thermocellum	7.10339	23.5058	19.0309	126.018	116.203	118.523
+GO:0009253: [BP] peptidoglycan catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.0948	12.6157	10.4638	7.60829	8.64425	9.36065
+GO:0009253: [BP] peptidoglycan catabolic process|g__Escherichia.s__Escherichia_coli	0.212782	0	0	0	0	0.312523
+GO:0009254: [BP] peptidoglycan turnover	31.1563	42.0167	22.6178	35.7245	44.298	40.5486
+GO:0009254: [BP] peptidoglycan turnover|g__Clostridium.s__Clostridium_thermocellum	1.35245	3.64138	2.19357	9.87297	8.4925	11.1669
+GO:0009254: [BP] peptidoglycan turnover|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.3339	38.3753	20.3505	25.8515	35.8054	29.1819
+GO:0009254: [BP] peptidoglycan turnover|g__Escherichia.s__Escherichia_coli	0.46987	0	0.0737038	0	0	0.199693
+GO:0009263: [BP] deoxyribonucleotide biosynthetic process	0.0600067	0	0	0	0	0
+GO:0009263: [BP] deoxyribonucleotide biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0600067	0	0	0	0	0
+GO:0009264: [BP] deoxyribonucleotide catabolic process	37.2626	51.6837	37.4594	96.9333	82.2193	100.315
+GO:0009264: [BP] deoxyribonucleotide catabolic process|g__Clostridium.s__Clostridium_thermocellum	2.90613	26.5489	20.1626	70.8073	50.647	71.5258
+GO:0009264: [BP] deoxyribonucleotide catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	33.9091	24.7874	17.0391	25.9841	31.4897	28.5441
+GO:0009264: [BP] deoxyribonucleotide catabolic process|g__Escherichia.s__Escherichia_coli	0.0771654	0	0	0	0	0.060215
+GO:0009264: [BP] deoxyribonucleotide catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.370175	0.347438	0.257738	0.142033	0.0826881	0.18514
+GO:0009266: [BP] response to temperature stimulus	0.280031	0	0.374338	0	0	0.123535
+GO:0009266: [BP] response to temperature stimulus|g__Escherichia.s__Escherichia_coli	0.280031	0	0.374338	0	0	0.123535
+GO:0009267: [BP] cellular response to starvation	2264.11	440.619	906.906	318.673	321.72	232.771
+GO:0009267: [BP] cellular response to starvation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2264.11	440.619	906.906	318.673	321.72	232.447
+GO:0009267: [BP] cellular response to starvation|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.324003
+GO:0009268: [BP] response to pH	0.613604	0	1.6706	0	0	0.175277
+GO:0009268: [BP] response to pH|g__Escherichia.s__Escherichia_coli	0.613604	0	1.6706	0	0	0.175277
+GO:0009271: [BP] phage shock	0.0802034	0	0	0	0	0
+GO:0009271: [BP] phage shock|g__Escherichia.s__Escherichia_coli	0.0802034	0	0	0	0	0
+GO:0009273: [BP] peptidoglycan-based cell wall biogenesis	0.10949	0	0	0	0	0
+GO:0009273: [BP] peptidoglycan-based cell wall biogenesis|g__Escherichia.s__Escherichia_coli	0.10949	0	0	0	0	0
+GO:0009274: [CC] peptidoglycan-based cell wall	0.167771	0	0	0	0	0
+GO:0009274: [CC] peptidoglycan-based cell wall|g__Escherichia.s__Escherichia_coli	0.167771	0	0	0	0	0
+GO:0009276: [CC] Gram-negative-bacterium-type cell wall	0.978773	0	0.191792	0	0	0.0680087
+GO:0009276: [CC] Gram-negative-bacterium-type cell wall|g__Escherichia.s__Escherichia_coli	0.978773	0	0.191792	0	0	0.0680087
+GO:0009279: [CC] cell outer membrane	5.46914	0	2.40678	0	0	1.44283
+GO:0009279: [CC] cell outer membrane|g__Escherichia.s__Escherichia_coli	5.46914	0	2.40678	0	0	1.44283
+GO:0009288: [CC] bacterial-type flagellum	16.0704	51.1587	33.1363	604.27	549.851	382.215
+GO:0009288: [CC] bacterial-type flagellum|g__Clostridium.s__Clostridium_thermocellum	16.0009	51.1587	32.7496	604.27	549.851	382.215
+GO:0009288: [CC] bacterial-type flagellum|g__Escherichia.s__Escherichia_coli	0.069461	0	0.386697	0	0	0
+GO:0009289: [CC] pilus	2.24594	0	1.43393	0	0	0.800776
+GO:0009289: [CC] pilus|g__Escherichia.s__Escherichia_coli	2.24594	0	1.43393	0	0	0.800776
+GO:0009290: [BP] DNA import into cell involved in transformation	0.201602	0	0.187552	0	0	0
+GO:0009290: [BP] DNA import into cell involved in transformation|g__Escherichia.s__Escherichia_coli	0.201602	0	0.187552	0	0	0
+GO:0009294: [BP] DNA mediated transformation	2.56493	11.4758	10.3167	22.3573	23.3387	24.0672
+GO:0009294: [BP] DNA mediated transformation|g__Clostridium.s__Clostridium_thermocellum	0.857374	9.97961	8.14846	21.3218	22.7481	23.4977
+GO:0009294: [BP] DNA mediated transformation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.5961	1.49617	2.16822	1.03557	0.590536	0.569488
+GO:0009294: [BP] DNA mediated transformation|g__Escherichia.s__Escherichia_coli	0.111434	0	0	0	0	0
+GO:0009295: [CC] nucleoid	191.033	450.559	471.869	457.694	412.788	520.699
+GO:0009295: [CC] nucleoid|g__Clostridium.s__Clostridium_thermocellum	17.9821	123.153	128.716	348.827	277.539	376.416
+GO:0009295: [CC] nucleoid|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	172.779	327.406	343.153	108.867	135.249	144.283
+GO:0009295: [CC] nucleoid|g__Escherichia.s__Escherichia_coli	0.271695	0	0	0	0	0
+GO:0009297: [BP] pilus assembly	0.242579	0	0.136672	0	0	0.267701
+GO:0009297: [BP] pilus assembly|g__Escherichia.s__Escherichia_coli	0.242579	0	0.136672	0	0	0.267701
+GO:0009298: [BP] GDP-mannose biosynthetic process	0.03981	0	0	0	0	0
+GO:0009298: [BP] GDP-mannose biosynthetic process|g__Escherichia.s__Escherichia_coli	0.03981	0	0	0	0	0
+GO:0009305: [BP] protein biotinylation	0.178999	0	0	0	0	0
+GO:0009305: [BP] protein biotinylation|g__Escherichia.s__Escherichia_coli	0.178999	0	0	0	0	0
+GO:0009306: [BP] protein secretion	877.244	1017.66	891.253	2367.59	2080.77	2454.75
+GO:0009306: [BP] protein secretion|g__Clostridium.s__Clostridium_thermocellum	116.884	557.649	443.588	1997.09	1670.65	2125.64
+GO:0009306: [BP] protein secretion|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	759.094	460.013	447.271	370.495	410.122	328.987
+GO:0009306: [BP] protein secretion|g__Escherichia.s__Escherichia_coli	1.266	0	0.393824	0	0	0.117681
+GO:0009307: [BP] DNA restriction-modification system	0.0504309	2.26862	0.822244	0.43274	0.435274	0.803427
+GO:0009307: [BP] DNA restriction-modification system|g__Escherichia.s__Escherichia_coli	0	0	0.14213	0	0	0
+GO:0009307: [BP] DNA restriction-modification system|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0504309	2.26862	0.680068	0.43274	0.435274	0.803427
+GO:0009308: [BP] amine metabolic process	0.0686346	0	0	0	0	0
+GO:0009308: [BP] amine metabolic process|g__Escherichia.s__Escherichia_coli	0.0686346	0	0	0	0	0
+GO:0009317: [CC] acetyl-CoA carboxylase complex	42.557	46.0647	28.8267	99.6685	85.102	56.8781
+GO:0009317: [CC] acetyl-CoA carboxylase complex|g__Clostridium.s__Clostridium_thermocellum	2.82617	21.9157	7.62902	73.9833	56.342	36.5976
+GO:0009317: [CC] acetyl-CoA carboxylase complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.7308	24.1489	20.9167	25.6852	28.76	20.2805
+GO:0009317: [CC] acetyl-CoA carboxylase complex|g__Escherichia.s__Escherichia_coli	0	0	0.281058	0	0	0
+GO:0009318: [CC] exodeoxyribonuclease VII complex	9.96534	32.9928	26.8289	117.871	107.577	100.856
+GO:0009318: [CC] exodeoxyribonuclease VII complex|g__Clostridium.s__Clostridium_thermocellum	9.96534	32.9928	26.8289	117.871	107.577	100.856
+GO:0009325: [CC] nitrate reductase complex	0.155813	0	0	0	0	0
+GO:0009325: [CC] nitrate reductase complex|g__Escherichia.s__Escherichia_coli	0.155813	0	0	0	0	0
+GO:0009326: [CC] formate dehydrogenase complex	0.0500177	0	0	0	0	0
+GO:0009326: [CC] formate dehydrogenase complex|g__Escherichia.s__Escherichia_coli	0.0500177	0	0	0	0	0
+GO:0009330: [CC] DNA topoisomerase complex (ATP-hydrolyzing)	0.0836546	0	0	0	0	0
+GO:0009330: [CC] DNA topoisomerase complex (ATP-hydrolyzing)|g__Escherichia.s__Escherichia_coli	0.0836546	0	0	0	0	0
+GO:0009331: [CC] glycerol-3-phosphate dehydrogenase complex	1.88631	8.36484	5.78024	33.8568	32.5297	24.5134
+GO:0009331: [CC] glycerol-3-phosphate dehydrogenase complex|g__Clostridium.s__Clostridium_thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0009331: [CC] glycerol-3-phosphate dehydrogenase complex|g__Escherichia.s__Escherichia_coli	0.0716727	0	0.0664868	0	0	0
+GO:0009331: [CC] glycerol-3-phosphate dehydrogenase complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0009337: [CC] sulfite reductase complex (NADPH)	0.0311092	0	0	0	0	0
+GO:0009337: [CC] sulfite reductase complex (NADPH)|g__Escherichia.s__Escherichia_coli	0.0311092	0	0	0	0	0
+GO:0009338: [CC] exodeoxyribonuclease V complex	1.96909	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0009338: [CC] exodeoxyribonuclease V complex|g__Clostridium.s__Clostridium_thermocellum	1.90991	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0009338: [CC] exodeoxyribonuclease V complex|g__Escherichia.s__Escherichia_coli	0.0591804	0	0	0	0	0
+GO:0009339: [CC] glycolate oxidase complex	0.0359943	0	0.0668025	0	0	0
+GO:0009339: [CC] glycolate oxidase complex|g__Escherichia.s__Escherichia_coli	0.0359943	0	0.0668025	0	0	0
+GO:0009341: [CC] beta-galactosidase complex	3.47913	0	2.55708	0	0	0.766335
+GO:0009341: [CC] beta-galactosidase complex|g__Escherichia.s__Escherichia_coli	3.47913	0	2.55708	0	0	0.766335
+GO:0009344: [CC] nitrite reductase complex [NAD(P)H]	0.0812241	0	0	0	0	0
+GO:0009344: [CC] nitrite reductase complex [NAD(P)H]|g__Escherichia.s__Escherichia_coli	0.0812241	0	0	0	0	0
+GO:0009346: [CC] citrate lyase complex	0.0351437	0	0	0	0	0
+GO:0009346: [CC] citrate lyase complex|g__Escherichia.s__Escherichia_coli	0.0351437	0	0	0	0	0
+GO:0009349: [CC] riboflavin synthase complex	8.56327	69.1468	35.2618	220.82	159.123	139.863
+GO:0009349: [CC] riboflavin synthase complex|g__Clostridium.s__Clostridium_thermocellum	7.9335	68.0065	34.1373	218.064	158.846	137.481
+GO:0009349: [CC] riboflavin synthase complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.629767	1.14024	1.12446	2.75558	0.277797	2.38192
+GO:0009360: [CC] DNA polymerase III complex	127.931	107.727	129.876	145.211	147.526	151.389
+GO:0009360: [CC] DNA polymerase III complex|g__Clostridium.s__Clostridium_thermocellum	5.53391	39.8918	31.0526	108.458	101.59	115.309
+GO:0009360: [CC] DNA polymerase III complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	122.332	67.8355	98.823	36.7533	45.9367	36.0604
+GO:0009360: [CC] DNA polymerase III complex|g__Escherichia.s__Escherichia_coli	0.0656939	0	0	0	0	0.0194033
+GO:0009366: [CC] enterobactin synthetase complex	0.0487053	0	0	0	0	0
+GO:0009366: [CC] enterobactin synthetase complex|g__Escherichia.s__Escherichia_coli	0.0487053	0	0	0	0	0
+GO:0009372: [BP] quorum sensing	14.0495	61.0926	57.6394	116.659	97.5631	177.173
+GO:0009372: [BP] quorum sensing|g__Clostridium.s__Clostridium_thermocellum	13.8842	61.0926	57.1465	116.659	97.5631	177.173
+GO:0009372: [BP] quorum sensing|g__Escherichia.s__Escherichia_coli	0.16534	0	0.492967	0	0	0
+GO:0009375: [CC] ferredoxin hydrogenase complex	0	0	0.0465498	0	0	0
+GO:0009375: [CC] ferredoxin hydrogenase complex|g__Escherichia.s__Escherichia_coli	0	0	0.0465498	0	0	0
+GO:0009376: [CC] HslUV protease complex	0	0	0	0	0	0.139381
+GO:0009376: [CC] HslUV protease complex|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.139381
+GO:0009378: [MF] four-way junction helicase activity	23.5227	47.2441	33.9917	62.3641	65.5055	53.3793
+GO:0009378: [MF] four-way junction helicase activity|g__Clostridium.s__Clostridium_thermocellum	1.22587	14.6422	11.6968	34.7141	38.6659	39.8676
+GO:0009378: [MF] four-way junction helicase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.1839	32.6019	22.1902	27.65	26.8396	13.5117
+GO:0009378: [MF] four-way junction helicase activity|g__Escherichia.s__Escherichia_coli	0.112917	0	0.104737	0	0	0
+GO:0009379: [CC] Holliday junction helicase complex	0.476554	7.116	3.77414	12.1877	14.22	14.7908
+GO:0009379: [CC] Holliday junction helicase complex|g__Clostridium.s__Clostridium_thermocellum	0.476554	7.116	3.72745	12.1877	14.22	14.7908
+GO:0009379: [CC] Holliday junction helicase complex|g__Escherichia.s__Escherichia_coli	0	0	0.0466851	0	0	0
+GO:0009380: [CC] excinuclease repair complex	12.4897	25.9542	21.4811	53.2218	48.0955	42.4082
+GO:0009380: [CC] excinuclease repair complex|g__Clostridium.s__Clostridium_thermocellum	3.16524	16.7649	16.0058	41.0102	39.0695	35.9362
+GO:0009380: [CC] excinuclease repair complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.12982	9.10126	5.41858	12.1334	8.93049	6.24823
+GO:0009380: [CC] excinuclease repair complex|g__Escherichia.s__Escherichia_coli	0.0727177	0	0	0	0	0
+GO:0009380: [CC] excinuclease repair complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.121933	0.0880731	0.0567438	0.0781917	0.0955579	0.223688
+GO:0009381: [MF] excinuclease ABC activity	33.0723	48.8858	41.4473	86.4396	83.328	76.1268
+GO:0009381: [MF] excinuclease ABC activity|g__Clostridium.s__Clostridium_thermocellum	9.64752	26.388	25.182	61.711	59.6319	57.0161
+GO:0009381: [MF] excinuclease ABC activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	23.0826	22.3576	15.9566	24.5116	23.5278	18.7787
+GO:0009381: [MF] excinuclease ABC activity|g__Escherichia.s__Escherichia_coli	0.111604	0	0	0	0	0
+GO:0009381: [MF] excinuclease ABC activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.230475	0.140161	0.308573	0.217042	0.168263	0.332023
+GO:0009389: [MF] dimethyl sulfoxide reductase activity	0.102199	0	0.252686	0	0	0
+GO:0009389: [MF] dimethyl sulfoxide reductase activity|g__Escherichia.s__Escherichia_coli	0.102199	0	0.252686	0	0	0
+GO:0009390: [CC] dimethyl sulfoxide reductase complex	0.102199	0	0.252686	0	0	0
+GO:0009390: [CC] dimethyl sulfoxide reductase complex|g__Escherichia.s__Escherichia_coli	0.102199	0	0.252686	0	0	0
+GO:0009395: [BP] phospholipid catabolic process	0	0	0.244476	0	0	0.175277
+GO:0009395: [BP] phospholipid catabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.244476	0	0	0.175277
+GO:0009396: [BP] folic acid-containing compound biosynthetic process	148.827	112.433	131.847	193.273	199.963	205.659
+GO:0009396: [BP] folic acid-containing compound biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	10.5117	54.8254	42.4318	143.959	133.887	149.189
+GO:0009396: [BP] folic acid-containing compound biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	138.25	57.6078	89.4148	49.3146	66.0765	56.4692
+GO:0009396: [BP] folic acid-containing compound biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0648918	0	0	0	0	0
+GO:0009398: [BP] FMN biosynthetic process	13.6867	25.3447	21.3303	52.5744	46.0075	49.6577
+GO:0009398: [BP] FMN biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.18476	13.2453	14.3414	40.3507	33.9304	35.5191
+GO:0009398: [BP] FMN biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.502	12.0994	6.78476	11.8856	12.0771	13.8432
+GO:0009398: [BP] FMN biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.204106	0.338159	0	0.295319
+GO:0009399: [BP] nitrogen fixation	91.3997	67.8835	95.5277	38.4175	43.3311	42.1805
+GO:0009399: [BP] nitrogen fixation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	89.8945	66.5803	94.2909	35.8416	41.9936	38.8995
+GO:0009399: [BP] nitrogen fixation|g__Escherichia.s__Escherichia_coli	0.316439	0	0.0358144	0	0	0
+GO:0009399: [BP] nitrogen fixation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.18881	1.30317	1.201	2.57595	1.33749	3.28104
+GO:0009401: [BP] phosphoenolpyruvate-dependent sugar phosphotransferase system	1543.52	667.246	893.312	537.755	597.365	457.14
+GO:0009401: [BP] phosphoenolpyruvate-dependent sugar phosphotransferase system|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1540.98	667.246	890.113	537.755	597.365	456.607
+GO:0009401: [BP] phosphoenolpyruvate-dependent sugar phosphotransferase system|g__Escherichia.s__Escherichia_coli	2.54014	0	3.19935	0	0	0.533462
+GO:0009403: [BP] toxin biosynthetic process	4.60246	18.8217	6.64475	57.9102	57.4213	67.5969
+GO:0009403: [BP] toxin biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	4.60246	18.8217	6.64475	57.9102	57.4213	67.5969
+GO:0009405: [BP] pathogenesis	31.1835	141.85	162.353	252.317	242.793	327.371
+GO:0009405: [BP] pathogenesis|g__Clostridium.s__Clostridium_thermocellum	29.8344	141.85	161.68	252.317	242.793	327.098
+GO:0009405: [BP] pathogenesis|g__Escherichia.s__Escherichia_coli	1.34907	0	0.67231	0	0	0.273199
+GO:0009407: [BP] toxin catabolic process	0.050601	0	0	0	0	0
+GO:0009407: [BP] toxin catabolic process|g__Escherichia.s__Escherichia_coli	0.050601	0	0	0	0	0
+GO:0009408: [BP] response to heat	109.566	50.9682	73.9788	56.7669	69.8771	78.3284
+GO:0009408: [BP] response to heat|g__Clostridium.s__Clostridium_thermocellum	2.69197	26.4416	31.0869	38.6303	41.4569	45.3407
+GO:0009408: [BP] response to heat|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	106.328	24.3363	42.4334	17.9339	28.2875	32.3251
+GO:0009408: [BP] response to heat|g__Escherichia.s__Escherichia_coli	0.496532	0	0	0	0	0.267022
+GO:0009408: [BP] response to heat|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.049556	0.190288	0.458416	0.202692	0.13267	0.395472
+GO:0009411: [BP] response to UV	0.208553	0.972351	0.331306	3.19807	3.98802	2.7902
+GO:0009411: [BP] response to UV|g__Clostridium.s__Clostridium_thermocellum	0.208553	0.972351	0.331306	3.19807	3.98802	2.61492
+GO:0009411: [BP] response to UV|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.175277
+GO:0009420: [CC] bacterial-type flagellum filament	16.9365	21.3488	15.1814	445.114	462.779	404.046
+GO:0009420: [CC] bacterial-type flagellum filament|g__Clostridium.s__Clostridium_thermocellum	16.8375	21.3488	15.1814	445.114	462.779	404.046
+GO:0009420: [CC] bacterial-type flagellum filament|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0268317	0	0	0	0	0
+GO:0009420: [CC] bacterial-type flagellum filament|g__Escherichia.s__Escherichia_coli	0.072183	0	0	0	0	0
+GO:0009423: [BP] chorismate biosynthetic process	31.1311	166.488	114.531	470.438	356.115	559.058
+GO:0009423: [BP] chorismate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	28.9614	161.878	112.064	469.11	355.165	557.325
+GO:0009423: [BP] chorismate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.543123	0	0	0	0	0
+GO:0009423: [BP] chorismate biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.6265	4.61047	2.46768	1.32797	0.950349	1.73249
+GO:0009424: [CC] bacterial-type flagellum hook	13.1365	19.1832	9.79475	251.092	204.427	153.96
+GO:0009424: [CC] bacterial-type flagellum hook|g__Clostridium.s__Clostridium_thermocellum	13.0641	19.1832	9.79475	251.092	204.427	153.894
+GO:0009424: [CC] bacterial-type flagellum hook|g__Escherichia.s__Escherichia_coli	0.0724504	0	0	0	0	0.066133
+GO:0009425: [CC] bacterial-type flagellum basal body	24.9658	90.9361	74.8747	539.808	499.09	468.873
+GO:0009425: [CC] bacterial-type flagellum basal body|g__Clostridium.s__Clostridium_thermocellum	24.8061	90.9361	74.8219	539.808	499.09	468.873
+GO:0009425: [CC] bacterial-type flagellum basal body|g__Escherichia.s__Escherichia_coli	0.159751	0	0.0527744	0	0	0
+GO:0009426: [CC] bacterial-type flagellum basal body, distal rod	3.46897	8.59644	5.9576	123.501	145.291	93.4911
+GO:0009426: [CC] bacterial-type flagellum basal body, distal rod|g__Clostridium.s__Clostridium_thermocellum	3.46897	8.59644	5.9576	123.501	145.291	93.4911
+GO:0009431: [CC] bacterial-type flagellum basal body, MS ring	3.23701	10.5021	9.25059	75.4887	70.405	58.8586
+GO:0009431: [CC] bacterial-type flagellum basal body, MS ring|g__Clostridium.s__Clostridium_thermocellum	3.23701	10.5021	9.25059	75.4887	70.405	58.8157
+GO:0009431: [CC] bacterial-type flagellum basal body, MS ring|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.042849
+GO:0009432: [BP] SOS response	145.116	306.417	292.759	418.886	430.115	413.781
+GO:0009432: [BP] SOS response|g__Clostridium.s__Clostridium_thermocellum	26.7801	153.199	114.421	313.661	317.219	320.542
+GO:0009432: [BP] SOS response|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	116.093	153.077	177.261	105.008	112.728	92.5415
+GO:0009432: [BP] SOS response|g__Escherichia.s__Escherichia_coli	2.01267	0	0.768973	0	0	0.36585
+GO:0009432: [BP] SOS response|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.230475	0.140161	0.308573	0.217042	0.168263	0.332023
+GO:0009435: [BP] NAD biosynthetic process	212.175	215.108	224.553	298.56	304.754	270.644
+GO:0009435: [BP] NAD biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	12.187	89.5575	75.878	198.921	190.362	190.331
+GO:0009435: [BP] NAD biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	199.535	124.645	146.6	98.1614	113.467	78.0325
+GO:0009435: [BP] NAD biosynthetic process|g__Escherichia.s__Escherichia_coli	0.144488	0	0	0	0	0.0614116
+GO:0009435: [BP] NAD biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.308224	0.904721	2.07534	1.47793	0.924696	2.21819
+GO:0009436: [BP] glyoxylate catabolic process	0.0297725	0	0.225667	0	0	0.0197914
+GO:0009436: [BP] glyoxylate catabolic process|g__Escherichia.s__Escherichia_coli	0.0297725	0	0.225667	0	0	0.0197914
+GO:0009437: [BP] carnitine metabolic process	0.988494	0	0.590893	0	0	0.130229
+GO:0009437: [BP] carnitine metabolic process|g__Escherichia.s__Escherichia_coli	0.988494	0	0.590893	0	0	0.130229
+GO:0009438: [BP] methylglyoxal metabolic process	0	0	0.0997753	0	0	0.170588
+GO:0009438: [BP] methylglyoxal metabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.0997753	0	0	0.170588
+GO:0009443: [BP] pyridoxal 5'-phosphate salvage	0.0681243	0	0	0	0	0
+GO:0009443: [BP] pyridoxal 5'-phosphate salvage|g__Escherichia.s__Escherichia_coli	0.0681243	0	0	0	0	0
+GO:0009446: [BP] putrescine biosynthetic process	0.0266129	0	0.0493915	0	0	0
+GO:0009446: [BP] putrescine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0266129	0	0.0493915	0	0	0
+GO:0009447: [BP] putrescine catabolic process	0.0785507	0	0	0	0	0.0828522
+GO:0009447: [BP] putrescine catabolic process|g__Escherichia.s__Escherichia_coli	0.0785507	0	0	0	0	0.0828522
+GO:0009450: [BP] gamma-aminobutyric acid catabolic process	0.0998654	0	0.079748	0	0	0
+GO:0009450: [BP] gamma-aminobutyric acid catabolic process|g__Escherichia.s__Escherichia_coli	0.0998654	0	0.079748	0	0	0
+GO:0009451: [BP] RNA modification	16.4155	32.9565	25.4608	66.354	59.0348	65.1518
+GO:0009451: [BP] RNA modification|g__Clostridium.s__Clostridium_thermocellum	2.68205	21.4866	17.6564	50.7099	42.5184	45.7352
+GO:0009451: [BP] RNA modification|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.5997	11.3454	7.56375	15.5999	16.5164	19.1874
+GO:0009451: [BP] RNA modification|g__Escherichia.s__Escherichia_coli	0.133697	0	0	0	0	0
+GO:0009451: [BP] RNA modification|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.124479	0.240552	0.0442191	0	0.229186
+GO:0009507: [CC] chloroplast	299.921	420.079	369.48	499.85	567.394	440.655
+GO:0009507: [CC] chloroplast|g__Clostridium.s__Clostridium_thermocellum	7.90402	83.7543	85.2497	187.811	181.278	162.75
+GO:0009507: [CC] chloroplast|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	290.952	335.305	283.367	311.326	385.524	276.226
+GO:0009507: [CC] chloroplast|g__Escherichia.s__Escherichia_coli	0.0687319	0	0	0	0	0
+GO:0009507: [CC] chloroplast|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.996102	1.02038	0.8632	0.713151	0.591752	1.67855
+GO:0009570: [CC] chloroplast stroma	144.377	235.731	233.405	315.267	335.29	264.287
+GO:0009570: [CC] chloroplast stroma|g__Clostridium.s__Clostridium_thermocellum	7.90402	83.7543	85.2497	187.811	181.278	162.75
+GO:0009570: [CC] chloroplast stroma|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	136.473	151.977	148.155	127.456	154.011	101.537
+GO:0009605: [BP] response to external stimulus	0.270674	0	0	0	0	0.126833
+GO:0009605: [BP] response to external stimulus|g__Escherichia.s__Escherichia_coli	0.270674	0	0	0	0	0.126833
+GO:0009607: [BP] response to biotic stimulus	0.114108	0	0	0	0	0
+GO:0009607: [BP] response to biotic stimulus|g__Escherichia.s__Escherichia_coli	0.114108	0	0	0	0	0
+GO:0009617: [BP] response to bacterium	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0009617: [BP] response to bacterium|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0009636: [BP] response to toxic substance	5102.53	13939.3	11938.1	4792.25	5139.37	6668.11
+GO:0009636: [BP] response to toxic substance|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5102.29	13939.3	11938.1	4792.25	5139.37	6668.11
+GO:0009636: [BP] response to toxic substance|g__Escherichia.s__Escherichia_coli	0.231861	0	0	0	0	0
+GO:0009637: [BP] response to blue light	0.0457645	0	0	0	0	0.0304632
+GO:0009637: [BP] response to blue light|g__Escherichia.s__Escherichia_coli	0.0457645	0	0	0	0	0.0304632
+GO:0009654: [CC] photosystem II oxygen evolving complex	2.33001	5.41601	4.73693	13.0948	11.2543	11.3446
+GO:0009654: [CC] photosystem II oxygen evolving complex|g__Clostridium.s__Clostridium_thermocellum	2.33001	5.41601	4.73693	13.0948	11.2543	11.3446
+GO:0009658: [BP] chloroplast organization	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009658: [BP] chloroplast organization|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009678: [MF] hydrogen-translocating pyrophosphatase activity	329.96	76.3616	128.399	27.1477	34.4745	46.8286
+GO:0009678: [MF] hydrogen-translocating pyrophosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	329.96	76.3616	128.399	27.1477	34.4745	46.8286
+GO:0009735: [BP] response to cytokinin	54.7538	136.348	154.791	135.119	153.925	144.864
+GO:0009735: [BP] response to cytokinin|g__Clostridium.s__Clostridium_thermocellum	4.49499	69.5112	74.5146	100.37	105.77	104.092
+GO:0009735: [BP] response to cytokinin|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	50.2588	66.8372	80.2765	34.749	48.1546	40.7722
+GO:0009758: [BP] carbohydrate utilization	0.0941296	0	0	0	0	0
+GO:0009758: [BP] carbohydrate utilization|g__Escherichia.s__Escherichia_coli	0.0941296	0	0	0	0	0
+GO:0009791: [BP] post-embryonic development	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009791: [BP] post-embryonic development|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009845: [BP] seed germination	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009845: [BP] seed germination|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009847: [BP] spore germination	0.720567	4.40828	4.72669	11.3903	13.797	20.0624
+GO:0009847: [BP] spore germination|g__Clostridium.s__Clostridium_thermocellum	0.720567	4.40828	4.72669	11.3903	13.797	20.0624
+GO:0009882: [MF] blue light photoreceptor activity	0.0457645	0	0	0	0	0.0304632
+GO:0009882: [MF] blue light photoreceptor activity|g__Escherichia.s__Escherichia_coli	0.0457645	0	0	0	0	0.0304632
+GO:0009898: [CC] cytoplasmic side of plasma membrane	0.210716	0	0	0	0	0
+GO:0009898: [CC] cytoplasmic side of plasma membrane|g__Escherichia.s__Escherichia_coli	0.210716	0	0	0	0	0
+GO:0009927: [MF] histidine phosphotransfer kinase activity	0.0862308	0	0.0824995	0	0	0.0390654
+GO:0009927: [MF] histidine phosphotransfer kinase activity|g__Escherichia.s__Escherichia_coli	0.0862308	0	0.0824995	0	0	0.0390654
+GO:0009941: [CC] chloroplast envelope	87.7859	172.911	186.288	179.154	200.663	179.722
+GO:0009941: [CC] chloroplast envelope|g__Clostridium.s__Clostridium_thermocellum	4.73064	75.6834	80.7572	113.918	116.371	115.324
+GO:0009941: [CC] chloroplast envelope|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	83.0553	97.2275	105.531	65.2357	84.292	64.3987
+GO:0009970: [BP] cellular response to sulfate starvation	0	0	0.111097	0	0	0
+GO:0009970: [BP] cellular response to sulfate starvation|g__Escherichia.s__Escherichia_coli	0	0	0.111097	0	0	0
+GO:0009982: [MF] pseudouridine synthase activity	70.3399	130.899	109.994	224.307	223.807	282.881
+GO:0009982: [MF] pseudouridine synthase activity|g__Clostridium.s__Clostridium_thermocellum	20.2392	92.4515	82.796	183.884	183.662	250.521
+GO:0009982: [MF] pseudouridine synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	49.0558	37.5712	26.2759	39.8535	39.3993	31.4734
+GO:0009982: [MF] pseudouridine synthase activity|g__Escherichia.s__Escherichia_coli	0.292475	0	0	0	0	0
+GO:0009982: [MF] pseudouridine synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.752551	0.87625	0.922425	0.569526	0.745864	0.887056
+GO:0009986: [CC] cell surface	54.1572	241.425	188.154	646.092	727.644	909.247
+GO:0009986: [CC] cell surface|g__Clostridium.s__Clostridium_thermocellum	8.18495	196.918	143.247	582.015	661.154	876.096
+GO:0009986: [CC] cell surface|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	45.8416	44.4224	44.6618	63.8743	66.3513	33.0344
+GO:0009986: [CC] cell surface|g__Escherichia.s__Escherichia_coli	0.0423134	0	0	0	0	0
+GO:0009986: [CC] cell surface|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0882966	0.0847593	0.245785	0.20289	0.137987	0.117487
+GO:0009992: [BP] cellular water homeostasis	0.0545626	0	0	0	0	0.0773546
+GO:0009992: [BP] cellular water homeostasis|g__Escherichia.s__Escherichia_coli	0.0545626	0	0	0	0	0.0773546
+GO:0010033: [BP] response to organic substance	0.098796	0	0.0815072	0	0	0
+GO:0010033: [BP] response to organic substance|g__Escherichia.s__Escherichia_coli	0.098796	0	0.0815072	0	0	0
+GO:0010038: [BP] response to metal ion	0	0	0	0.444106	0	0
+GO:0010038: [BP] response to metal ion|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0.444106	0	0
+GO:0010041: [BP] response to iron(III) ion	0	0	0.287237	0	0	0.103032
+GO:0010041: [BP] response to iron(III) ion|g__Escherichia.s__Escherichia_coli	0	0	0.287237	0	0	0.103032
+GO:0010043: [BP] response to zinc ion	0.151682	0	0	0	0	0
+GO:0010043: [BP] response to zinc ion|g__Escherichia.s__Escherichia_coli	0.151682	0	0	0	0	0
+GO:0010045: [BP] response to nickel cation	0.535151	0.341931	0.68724	0.364397	1.03378	0.533074
+GO:0010045: [BP] response to nickel cation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.535151	0.341931	0.68724	0.364397	1.03378	0.533074
+GO:0010124: [BP] phenylacetate catabolic process	7.54172	28.8002	27.2003	80.5649	75.2042	66.3658
+GO:0010124: [BP] phenylacetate catabolic process|g__Clostridium.s__Clostridium_thermocellum	7.04363	28.6383	26.3849	80.0477	75.0165	65.8896
+GO:0010124: [BP] phenylacetate catabolic process|g__Escherichia.s__Escherichia_coli	0.203546	0	0.112495	0	0	0
+GO:0010124: [BP] phenylacetate catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.294541	0.161957	0.702937	0.517149	0.187709	0.47619
+GO:0010133: [BP] proline catabolic process to glutamate	8.85997	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0010133: [BP] proline catabolic process to glutamate|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.8536	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0010133: [BP] proline catabolic process to glutamate|g__Escherichia.s__Escherichia_coli	0.00636766	0	0	0	0	0
+GO:0010181: [MF] FMN binding	79.7964	351.531	281.643	831.394	763.525	871.377
+GO:0010181: [MF] FMN binding|g__Clostridium.s__Clostridium_thermocellum	32.9676	282.972	230.348	778.784	706.429	824.017
+GO:0010181: [MF] FMN binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	44.39	64.6538	47.2545	48.6192	55.3004	43.0751
+GO:0010181: [MF] FMN binding|g__Escherichia.s__Escherichia_coli	0.890768	0	1.2766	0	0	0.109014
+GO:0010181: [MF] FMN binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.54802	3.90453	2.76394	3.99064	1.79507	4.1756
+GO:0010188: [BP] response to microbial phytotoxin	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0010188: [BP] response to microbial phytotoxin|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0010212: [BP] response to ionizing radiation	0.0778216	0	0	0	0	0.0845339
+GO:0010212: [BP] response to ionizing radiation|g__Escherichia.s__Escherichia_coli	0.0778216	0	0	0	0	0.0845339
+GO:0010285: [MF] L,L-diaminopimelate aminotransferase activity	0.157101	6.67792	14.7784	14.832	20.9314	21.7579
+GO:0010285: [MF] L,L-diaminopimelate aminotransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.112212	6.54863	14.2787	14.7861	20.8913	21.728
+GO:0010285: [MF] L,L-diaminopimelate aminotransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0448896	0.129286	0.499643	0.0459351	0.0400853	0.0298488
+GO:0010312: [BP] detoxification of zinc ion	0.0237208	0	0.0220119	0	0	0
+GO:0010312: [BP] detoxification of zinc ion|g__Escherichia.s__Escherichia_coli	0.0237208	0	0.0220119	0	0	0
+GO:0010340: [MF] carboxyl-O-methyltransferase activity	0	0.465523	0.128508	0.212515	0.618316	0.2764
+GO:0010340: [MF] carboxyl-O-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0	0.465523	0.128508	0.212515	0.618316	0.2764
+GO:0010438: [BP] cellular response to sulfur starvation	0.0481949	0	0.0452868	0	0	0.0217641
+GO:0010438: [BP] cellular response to sulfur starvation|g__Escherichia.s__Escherichia_coli	0.0481949	0	0.0452868	0	0	0.0217641
+GO:0010468: [BP] regulation of gene expression	0.0281198	0	0	0	0	0
+GO:0010468: [BP] regulation of gene expression|g__Escherichia.s__Escherichia_coli	0.0281198	0	0	0	0	0
+GO:0010498: [BP] proteasomal protein catabolic process	1.61894	3.5695	1.70137	1.70878	0.959095	2.58087
+GO:0010498: [BP] proteasomal protein catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.61894	3.5695	1.70137	1.70878	0.959095	2.58087
+GO:0010501: [BP] RNA secondary structure unwinding	0.0880779	0	0.0645923	0	0	0.0529711
+GO:0010501: [BP] RNA secondary structure unwinding|g__Escherichia.s__Escherichia_coli	0.0880779	0	0.0645923	0	0	0.0529711
+GO:0010608: [BP] posttranscriptional regulation of gene expression	0.108493	0	0	0	0	0
+GO:0010608: [BP] posttranscriptional regulation of gene expression|g__Escherichia.s__Escherichia_coli	0.108493	0	0	0	0	0
+GO:0010628: [BP] positive regulation of gene expression	0.0309148	0	0	0	0	0.0822378
+GO:0010628: [BP] positive regulation of gene expression|g__Escherichia.s__Escherichia_coli	0.0309148	0	0	0	0	0.0822378
+GO:0010629: [BP] negative regulation of gene expression	0	0	0	0	0	0.112378
+GO:0010629: [BP] negative regulation of gene expression|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.112378
+GO:0010795: [BP] regulation of ubiquinone biosynthetic process	0.130416	0	0.0604876	0	0	0
+GO:0010795: [BP] regulation of ubiquinone biosynthetic process|g__Escherichia.s__Escherichia_coli	0.130416	0	0.0604876	0	0	0
+GO:0010967: [BP] regulation of polyamine biosynthetic process	0.0983099	0	0.072937	0	0	0
+GO:0010967: [BP] regulation of polyamine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0983099	0	0.072937	0	0	0
+GO:0010974: [BP] negative regulation of barrier septum assembly	0.108615	0	0	0	0	0.144684
+GO:0010974: [BP] negative regulation of barrier septum assembly|g__Escherichia.s__Escherichia_coli	0.108615	0	0	0	0	0.144684
+GO:0012506: [CC] vesicle membrane	2.23775	1.35064	2.42668	3.10404	1.50156	4.04039
+GO:0012506: [CC] vesicle membrane|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.23775	1.35064	2.42668	3.10404	1.50156	4.04039
+GO:0015020: [MF] glucuronosyltransferase activity	0.0280226	0	0	0	0	0
+GO:0015020: [MF] glucuronosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0280226	0	0	0	0	0
+GO:0015031: [BP] protein transport	13.7671	74.1518	52.2411	164.606	155.869	146.374
+GO:0015031: [BP] protein transport|g__Clostridium.s__Clostridium_thermocellum	5.68761	59.1771	35.7814	143.815	136.364	129.333
+GO:0015031: [BP] protein transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	7.12833	14.9748	13.5304	19.2067	19.5046	16.6573
+GO:0015031: [BP] protein transport|g__Escherichia.s__Escherichia_coli	0.951139	0	2.04494	0	0	0.382925
+GO:0015031: [BP] protein transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.884445	1.58485	0	0
+GO:0015035: [MF] protein disulfide oxidoreductase activity	145.999	885.684	795.836	1827.91	1439.39	2201.69
+GO:0015035: [MF] protein disulfide oxidoreductase activity|g__Clostridium.s__Clostridium_thermocellum	69.7436	705.845	554.929	1695.74	1289.88	2098.5
+GO:0015035: [MF] protein disulfide oxidoreductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	74.529	175.079	237.509	129.362	148.538	101.234
+GO:0015035: [MF] protein disulfide oxidoreductase activity|g__Escherichia.s__Escherichia_coli	0.710675	0	0.532526	0	0	0
+GO:0015035: [MF] protein disulfide oxidoreductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.01528	4.75987	2.86529	2.80575	0.970207	1.94706
+GO:0015036: [MF] disulfide oxidoreductase activity	0.101688	0	0	0	0	0
+GO:0015036: [MF] disulfide oxidoreductase activity|g__Escherichia.s__Escherichia_coli	0.101688	0	0	0	0	0
+GO:0015074: [BP] DNA integration	27.3991	127.474	85.9255	151.825	123.73	127.694
+GO:0015074: [BP] DNA integration|g__Clostridium.s__Clostridium_thermocellum	15.0104	115.421	74.3284	140.258	108.481	112.067
+GO:0015074: [BP] DNA integration|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.85029	12.0532	10.9526	11.5675	15.2489	15.3099
+GO:0015074: [BP] DNA integration|g__Escherichia.s__Escherichia_coli	2.53836	0	0.64448	0	0	0.316759
+GO:0015075: [MF] ion transmembrane transporter activity	70.5704	19.0135	31.7417	17.3804	35.2874	19.128
+GO:0015075: [MF] ion transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	70.4932	19.0135	31.7417	17.3804	35.2874	19.0254
+GO:0015075: [MF] ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0771654	0	0	0	0	0.102676
+GO:0015078: [MF] hydrogen ion transmembrane transporter activity	246.541	810.498	544.595	1167.5	1155.27	996.899
+GO:0015078: [MF] hydrogen ion transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	44.9564	683.11	435.448	1010.09	966.511	862.389
+GO:0015078: [MF] hydrogen ion transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	201.028	127.136	107.719	156.35	188.081	133.627
+GO:0015078: [MF] hydrogen ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0	0	0.501177	0	0	0
+GO:0015078: [MF] hydrogen ion transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.557049	0.252084	0.9268	1.05191	0.681059	0.882949
+GO:0015079: [MF] potassium ion transmembrane transporter activity	0.40753	0.73609	0.355799	0.343382	0.256746	0.876125
+GO:0015079: [MF] potassium ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.311481	0	0.0892204	0	0	0.109694
+GO:0015079: [MF] potassium ion transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0960739	0.73609	0.266533	0.343382	0.256746	0.766432
+GO:0015081: [MF] sodium ion transmembrane transporter activity	60.2483	44.5481	43.3408	46.845	57.0023	66.4675
+GO:0015081: [MF] sodium ion transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	2.38104	17.75	13.8523	29.105	39.5093	53.9613
+GO:0015081: [MF] sodium ion transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	57.6596	26.7981	29.3111	17.74	17.493	12.5063
+GO:0015081: [MF] sodium ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.207557	0	0.177403	0	0	0
+GO:0015087: [MF] cobalt ion transmembrane transporter activity	1.96107	1.08189	1.39771	1.00187	0.476835	1.53742
+GO:0015087: [MF] cobalt ion transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.24621	1.08189	1.3757	1.00187	0.476835	0.789716
+GO:0015087: [MF] cobalt ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.714855	0	0.0220119	0	0	0
+GO:0015087: [MF] cobalt ion transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0	0	0.747707
+GO:0015091: [MF] ferric iron transmembrane transporter activity	0.0223597	0	0	0	0	0
+GO:0015091: [MF] ferric iron transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0223597	0	0	0	0	0
+GO:0015093: [MF] ferrous iron transmembrane transporter activity	6.34015	8.23393	6.00289	4.17142	3.75402	2.55047
+GO:0015093: [MF] ferrous iron transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	0	0	0	0.0248701	0.0976414	0.048476
+GO:0015093: [MF] ferrous iron transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.08462	5.46879	4.18758	3.62868	3.38264	2.09136
+GO:0015093: [MF] ferrous iron transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.135349	0	0	0	0	0
+GO:0015093: [MF] ferrous iron transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.120184	2.76513	1.81531	0.517871	0.273739	0.410607
+GO:0015094: [MF] lead ion transmembrane transporter activity	0.0237208	0	0.0220119	0	0	0
+GO:0015094: [MF] lead ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0237208	0	0.0220119	0	0	0
+GO:0015095: [MF] magnesium ion transmembrane transporter activity	3.45443	8.08905	6.66595	21.5822	20.5815	22.4521
+GO:0015095: [MF] magnesium ion transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	1.51708	7.00716	5.29025	20.5804	20.1047	21.6624
+GO:0015095: [MF] magnesium ion transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.24621	1.08189	1.3757	1.00187	0.476835	0.789716
+GO:0015095: [MF] magnesium ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.691134	0	0	0	0	0
+GO:0015098: [MF] molybdate ion transmembrane transporter activity	0.436355	0.566151	0	1.2966	0.352889	0.449155
+GO:0015098: [MF] molybdate ion transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.436355	0.566151	0	1.2966	0.352889	0.449155
+GO:0015099: [MF] nickel cation transmembrane transporter activity	0.120232	0	0.0220119	0	0	0.0478292
+GO:0015099: [MF] nickel cation transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.120232	0	0.0220119	0	0	0.0478292
+GO:0015103: [MF] inorganic anion transmembrane transporter activity	0.44909	5.70109	5.86013	1.55391	2.56268	2.3099
+GO:0015103: [MF] inorganic anion transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	0.241364	5.40574	5.57221	1.34403	2.56268	2.1735
+GO:0015103: [MF] inorganic anion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.207727	0	0.192785	0	0	0
+GO:0015103: [MF] inorganic anion transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.295351	0.0951744	0.209879	0	0.136405
+GO:0015105: [MF] arsenite transmembrane transporter activity	0	0	0.0395583	0	0	0.185755
+GO:0015105: [MF] arsenite transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0	0	0.0395583	0	0	0.185755
+GO:0015109: [MF] chromate transmembrane transporter activity	0.238277	0.228794	0.110556	0.121913	0.212775	0
+GO:0015109: [MF] chromate transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.238277	0.228794	0.110556	0.121913	0.212775	0
+GO:0015112: [MF] nitrate transmembrane transporter activity	0.15331	0	0	0	0	0
+GO:0015112: [MF] nitrate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.15331	0	0	0	0	0
+GO:0015113: [MF] nitrite transmembrane transporter activity	0.15331	0	0	0	0	0
+GO:0015113: [MF] nitrite transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.15331	0	0	0	0	0
+GO:0015116: [MF] sulfate transmembrane transporter activity	0	0	0	0.0751824	0	0
+GO:0015116: [MF] sulfate transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0.0751824	0	0
+GO:0015128: [MF] gluconate transmembrane transporter activity	210.961	295.704	262.895	84.4667	105.365	123.21
+GO:0015128: [MF] gluconate transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	210.675	295.704	262.819	84.4667	105.365	123.045
+GO:0015128: [MF] gluconate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.285791	0	0.0761395	0	0	0.164637
+GO:0015129: [MF] lactate transmembrane transporter activity	0.161403	0	0.119757	0	0	0
+GO:0015129: [MF] lactate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.161403	0	0.119757	0	0	0
+GO:0015143: [MF] urate transmembrane transporter activity	0.0374282	0	0.0694638	0	0	0
+GO:0015143: [MF] urate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0374282	0	0.0694638	0	0	0
+GO:0015144: [MF] carbohydrate transmembrane transporter activity	0.525138	0	0.245965	0	0	0.178543
+GO:0015144: [MF] carbohydrate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.525138	0	0.245965	0	0	0.178543
+GO:0015145: [MF] monosaccharide transmembrane transporter activity	13.8332	15.9374	18.7236	2.48895	4.0153	5.54124
+GO:0015145: [MF] monosaccharide transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.4668	15.9374	18.6096	2.48895	4.0153	5.36667
+GO:0015145: [MF] monosaccharide transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.366432	0	0.113984	0	0	0.174565
+GO:0015153: [MF] rhamnose transmembrane transporter activity	0.0960253	0	0.119351	0	0	0
+GO:0015153: [MF] rhamnose transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0960253	0	0.119351	0	0	0
+GO:0015159: [MF] polysaccharide transmembrane transporter activity	0.147258	0	0.186966	0	0	0
+GO:0015159: [MF] polysaccharide transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.147258	0	0.186966	0	0	0
+GO:0015169: [MF] glycerol-3-phosphate transmembrane transporter activity	0.0724747	0	0	0	0	0
+GO:0015169: [MF] glycerol-3-phosphate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0724747	0	0	0	0	0
+GO:0015171: [MF] amino acid transmembrane transporter activity	0.37314	0	0.11042	0	0	3.23389
+GO:0015171: [MF] amino acid transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.37314	0	0.11042	0	0	3.23389
+GO:0015173: [MF] aromatic amino acid transmembrane transporter activity	0.246224	0	0.199641	0	0	0.134886
+GO:0015173: [MF] aromatic amino acid transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.246224	0	0.199641	0	0	0.134886
+GO:0015179: [MF] L-amino acid transmembrane transporter activity	0.460343	0	0.523098	0	0	0.179351
+GO:0015179: [MF] L-amino acid transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.460343	0	0.523098	0	0	0.179351
+GO:0015181: [MF] arginine transmembrane transporter activity	0.0498962	0	0	0	0	0
+GO:0015181: [MF] arginine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0498962	0	0	0	0	0
+GO:0015185: [MF] gamma-aminobutyric acid transmembrane transporter activity	0.0388622	0	0	0	0	0
+GO:0015185: [MF] gamma-aminobutyric acid transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0388622	0	0	0	0	0
+GO:0015188: [MF] L-isoleucine transmembrane transporter activity	0.145411	0	0	0	0	0
+GO:0015188: [MF] L-isoleucine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.145411	0	0	0	0	0
+GO:0015190: [MF] L-leucine transmembrane transporter activity	0.246832	0	0	0	0	0
+GO:0015190: [MF] L-leucine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.246832	0	0	0	0	0
+GO:0015197: [MF] peptide transporter activity	0.233756	0	0	0	0	0
+GO:0015197: [MF] peptide transporter activity|g__Escherichia.s__Escherichia_coli	0.233756	0	0	0	0	0
+GO:0015199: [MF] amino-acid betaine transmembrane transporter activity	0.265619	0	0	0	0	0
+GO:0015199: [MF] amino-acid betaine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.265619	0	0	0	0	0
+GO:0015205: [MF] nucleobase transmembrane transporter activity	0.186874	0	0	0	0	0
+GO:0015205: [MF] nucleobase transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.186874	0	0	0	0	0
+GO:0015207: [MF] adenine transmembrane transporter activity	0.123489	0	0.151873	0	0	0.054588
+GO:0015207: [MF] adenine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.123489	0	0.151873	0	0	0.054588
+GO:0015208: [MF] guanine transmembrane transporter activity	0.0803249	0	0	0	0	0.0530681
+GO:0015208: [MF] guanine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0803249	0	0	0	0	0.0530681
+GO:0015210: [MF] uracil transmembrane transporter activity	0	0	0	0	0	0.0548468
+GO:0015210: [MF] uracil transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0548468
+GO:0015211: [MF] purine nucleoside transmembrane transporter activity	0.141109	0	0	0	0	0
+GO:0015211: [MF] purine nucleoside transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.141109	0	0	0	0	0
+GO:0015212: [MF] cytidine transmembrane transporter activity	0.0219952	0	0	0	0	0.0584364
+GO:0015212: [MF] cytidine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0219952	0	0	0	0	0.0584364
+GO:0015213: [MF] uridine transmembrane transporter activity	0.0219952	0	0	0	0	0.0584364
+GO:0015213: [MF] uridine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0219952	0	0	0	0	0.0584364
+GO:0015214: [MF] pyrimidine nucleoside transmembrane transporter activity	0.0219952	0	0	0	0	0.0584364
+GO:0015214: [MF] pyrimidine nucleoside transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0219952	0	0	0	0	0.0584364
+GO:0015218: [MF] pyrimidine nucleotide transmembrane transporter activity	0	0	0	0	0	0.0548468
+GO:0015218: [MF] pyrimidine nucleotide transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0548468
+GO:0015220: [MF] choline transmembrane transporter activity	0.265619	0	0	0	0	0
+GO:0015220: [MF] choline transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.265619	0	0	0	0	0
+GO:0015221: [MF] lipopolysaccharide transmembrane transporter activity	0	0	0.416332	0	0	0
+GO:0015221: [MF] lipopolysaccharide transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0	0	0.416332	0	0	0
+GO:0015225: [MF] biotin transporter activity	9.47858	197.164	228.553	271.753	319.404	474.813
+GO:0015225: [MF] biotin transporter activity|g__Clostridium.s__Clostridium_thermocellum	8.34706	193.014	226.224	269.89	317.035	470.798
+GO:0015225: [MF] biotin transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.981519	4.00614	2.05031	1.63257	2.30155	3.91462
+GO:0015225: [MF] biotin transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.150029	0.144035	0.278442	0.230049	0.0669752	0.0997978
+GO:0015230: [MF] FAD transmembrane transporter activity	0.0959524	0	0	0	0	0.0780984
+GO:0015230: [MF] FAD transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0959524	0	0	0	0	0.0780984
+GO:0015232: [MF] heme transporter activity	0.237475	0	0	0	0	0.0756407
+GO:0015232: [MF] heme transporter activity|g__Escherichia.s__Escherichia_coli	0.237475	0	0	0	0	0.0756407
+GO:0015233: [MF] pantothenate transmembrane transporter activity	0.111993	0	0	0	0	0
+GO:0015233: [MF] pantothenate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.111993	0	0	0	0	0
+GO:0015234: [MF] thiamine transmembrane transporter activity	35.435	13.8448	25.477	9.90637	9.92735	6.56379
+GO:0015234: [MF] thiamine transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	35.435	13.8448	25.477	9.90637	9.92735	6.56379
+GO:0015235: [MF] cobalamin transporter activity	0.0914562	0	0.0530902	0	0	0.0381599
+GO:0015235: [MF] cobalamin transporter activity|g__Escherichia.s__Escherichia_coli	0.0914562	0	0.0530902	0	0	0.0381599
+GO:0015238: [MF] drug transmembrane transporter activity	12.022	48.1493	30.7446	121.927	117.634	130.881
+GO:0015238: [MF] drug transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	5.61193	45.0619	27.6101	112.842	109.7	124.834
+GO:0015238: [MF] drug transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.32465	3.04886	2.80652	8.9609	7.80836	5.64546
+GO:0015238: [MF] drug transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.824831	0	0.178802	0	0	0.267798
+GO:0015238: [MF] drug transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.260612	0.0385524	0.149212	0.12343	0.125638	0.133721
+GO:0015288: [MF] porin activity	1.54856	0	0.928875	0	0	0.781017
+GO:0015288: [MF] porin activity|g__Escherichia.s__Escherichia_coli	1.54856	0	0.928875	0	0	0.781017
+GO:0015291: [MF] secondary active transmembrane transporter activity	0.0773355	0	0	0	0	0
+GO:0015291: [MF] secondary active transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0773355	0	0	0	0	0
+GO:0015292: [MF] uniporter activity	0	0	0.0807855	0	0	0
+GO:0015292: [MF] uniporter activity|g__Escherichia.s__Escherichia_coli	0	0	0.0807855	0	0	0
+GO:0015293: [MF] symporter activity	1.78885	0	0.82071	0	0	0.350036
+GO:0015293: [MF] symporter activity|g__Escherichia.s__Escherichia_coli	1.78885	0	0.82071	0	0	0.350036
+GO:0015294: [MF] solute:cation symporter activity	0.36388	0	0	0	0	0.0281348
+GO:0015294: [MF] solute:cation symporter activity|g__Escherichia.s__Escherichia_coli	0.36388	0	0	0	0	0.0281348
+GO:0015295: [MF] solute:proton symporter activity	0.0392997	0	0	0	0	0.0261298
+GO:0015295: [MF] solute:proton symporter activity|g__Escherichia.s__Escherichia_coli	0.0392997	0	0	0	0	0.0261298
+GO:0015297: [MF] antiporter activity	12.7682	53.8504	36.9337	123.48	120.197	133.283
+GO:0015297: [MF] antiporter activity|g__Clostridium.s__Clostridium_thermocellum	5.85329	50.4677	33.1823	114.186	112.263	127.008
+GO:0015297: [MF] antiporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.32465	3.04886	2.80652	8.9609	7.80836	5.64546
+GO:0015297: [MF] antiporter activity|g__Escherichia.s__Escherichia_coli	1.32963	0	0.700502	0	0	0.359447
+GO:0015297: [MF] antiporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.260612	0.333903	0.244386	0.333309	0.125638	0.270127
+GO:0015299: [MF] solute:proton antiporter activity	0.413485	0.51817	0.381104	1.39514	1.11039	2.00582
+GO:0015299: [MF] solute:proton antiporter activity|g__Clostridium.s__Clostridium_thermocellum	0.0469554	0.45096	0.348627	1.0571	1.06906	1.84325
+GO:0015299: [MF] solute:proton antiporter activity|g__Escherichia.s__Escherichia_coli	0.239079	0	0	0	0	0.0393888
+GO:0015299: [MF] solute:proton antiporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.127426	0.06721	0.0324766	0.338035	0.0413441	0.123179
+GO:0015307: [MF] drug:proton antiporter activity	0.265619	0	0	0	0	0
+GO:0015307: [MF] drug:proton antiporter activity|g__Escherichia.s__Escherichia_coli	0.265619	0	0	0	0	0
+GO:0015315: [MF] organophosphate:inorganic phosphate antiporter activity	0.0724747	0	0	0	0	0
+GO:0015315: [MF] organophosphate:inorganic phosphate antiporter activity|g__Escherichia.s__Escherichia_coli	0.0724747	0	0	0	0	0
+GO:0015321: [MF] sodium-dependent phosphate transmembrane transporter activity	100.206	340.16	298.103	639.719	576.173	680.089
+GO:0015321: [MF] sodium-dependent phosphate transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	10.2247	261.617	224.053	600.669	529.904	634.346
+GO:0015321: [MF] sodium-dependent phosphate transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	89.9159	78.5431	74.0493	39.0499	46.2699	45.7423
+GO:0015321: [MF] sodium-dependent phosphate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0655723	0	0	0	0	0
+GO:0015333: [MF] peptide:proton symporter activity	0.115323	0	0.253047	0	0	0
+GO:0015333: [MF] peptide:proton symporter activity|g__Escherichia.s__Escherichia_coli	0.115323	0	0.253047	0	0	0
+GO:0015343: [MF] siderophore transmembrane transporter activity	0.0426293	0	0.117682	0	0	0
+GO:0015343: [MF] siderophore transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0426293	0	0.117682	0	0	0
+GO:0015385: [MF] sodium:proton antiporter activity	0.151584	0	0.0323864	0	0	0
+GO:0015385: [MF] sodium:proton antiporter activity|g__Escherichia.s__Escherichia_coli	0.151584	0	0.0323864	0	0	0
+GO:0015386: [MF] potassium:proton antiporter activity	0.151584	0	0	0	0	0
+GO:0015386: [MF] potassium:proton antiporter activity|g__Escherichia.s__Escherichia_coli	0.151584	0	0	0	0	0
+GO:0015388: [MF] potassium uptake transmembrane transporter activity	0.0557049	0	0	0	0	0
+GO:0015388: [MF] potassium uptake transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0557049	0	0	0	0	0
+GO:0015407: [MF] monosaccharide-transporting ATPase activity	0.0354596	0	0	0	0	0
+GO:0015407: [MF] monosaccharide-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0.0354596	0	0	0	0	0
+GO:0015412: [MF] molybdate transmembrane-transporting ATPase activity	0.106914	0	0.498786	0.0785896	0	0
+GO:0015412: [MF] molybdate transmembrane-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0.106914	0	0	0	0	0
+GO:0015412: [MF] molybdate transmembrane-transporting ATPase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.498786	0.0785896	0	0
+GO:0015413: [MF] nickel-transporting ATPase activity	0	0	0.0733429	0	0	0
+GO:0015413: [MF] nickel-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0733429	0	0	0
+GO:0015415: [MF] phosphate ion transmembrane-transporting ATPase activity	0.685301	0.541461	0.985303	0.412869	0.901517	1.71157
+GO:0015415: [MF] phosphate ion transmembrane-transporting ATPase activity|g__Clostridium.s__Clostridium_thermocellum	0.52645	0.388931	0.299596	0.331593	0.759667	1.28874
+GO:0015415: [MF] phosphate ion transmembrane-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0	0	0.243484	0	0	0
+GO:0015415: [MF] phosphate ion transmembrane-transporting ATPase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.158851	0.152529	0.442223	0.0812756	0.14185	0.422831
+GO:0015419: [MF] sulfate transmembrane-transporting ATPase activity	61.6675	791.322	689.438	1110.28	1083.96	1272.55
+GO:0015419: [MF] sulfate transmembrane-transporting ATPase activity|g__Clostridium.s__Clostridium_thermocellum	61.4377	791.322	688.592	1110.28	1083.96	1272.36
+GO:0015419: [MF] sulfate transmembrane-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0.229843	0	0.845654	0	0	0.189053
+GO:0015420: [MF] cobalamin-transporting ATPase activity	2.30271	14.3187	12.2331	34.4749	32.102	42.6066
+GO:0015420: [MF] cobalamin-transporting ATPase activity|g__Clostridium.s__Clostridium_thermocellum	1.74309	13.8545	11.2913	33.7485	31.6547	41.1753
+GO:0015420: [MF] cobalamin-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0.052278	0	0.0484893	0	0	0
+GO:0015420: [MF] cobalamin-transporting ATPase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.507371	0.464216	0.893196	0.726431	0.447297	1.43129
+GO:0015424: [MF] amino acid-transporting ATPase activity	6.33663	8.68545	7.12933	13.8828	13.851	13.1018
+GO:0015424: [MF] amino acid-transporting ATPase activity|g__Clostridium.s__Clostridium_thermocellum	2.21653	7.02737	4.46553	13.6725	13.1167	12.4513
+GO:0015424: [MF] amino acid-transporting ATPase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.69913	1.65803	2.58974	0.210327	0.734318	0.547109
+GO:0015424: [MF] amino acid-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0.420971	0	0.0740646	0	0	0.103387
+GO:0015430: [MF] glycerol-3-phosphate-transporting ATPase activity	0	0	0.0978357	0	0	0
+GO:0015430: [MF] glycerol-3-phosphate-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0978357	0	0	0
+GO:0015439: [MF] heme-transporting ATPase activity	0	0	0.192785	0	0	0
+GO:0015439: [MF] heme-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0	0	0.192785	0	0	0
+GO:0015444: [MF] magnesium-importing ATPase activity	0	0	0	0	0	0.101479
+GO:0015444: [MF] magnesium-importing ATPase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.101479
+GO:0015446: [MF] arsenite-transmembrane transporting ATPase activity	0	0	0	0	0	0.31359
+GO:0015446: [MF] arsenite-transmembrane transporting ATPase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0	0	0.31359
+GO:0015450: [MF] P-P-bond-hydrolysis-driven protein transmembrane transporter activity	375.607	799.033	617.147	1752.16	1525.45	1792.4
+GO:0015450: [MF] P-P-bond-hydrolysis-driven protein transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	54.6744	346.477	215.63	1371.68	1105.27	1449.86
+GO:0015450: [MF] P-P-bond-hydrolysis-driven protein transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	320.77	451.692	397.094	377.988	419.456	341.457
+GO:0015450: [MF] P-P-bond-hydrolysis-driven protein transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.162011	0	0.0541727	0	0	0
+GO:0015450: [MF] P-P-bond-hydrolysis-driven protein transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.864349	4.36814	2.48701	0.723423	1.07795
+GO:0015459: [MF] potassium channel regulator activity	0.208748	0	0.176185	0	0	0.0427844
+GO:0015459: [MF] potassium channel regulator activity|g__Escherichia.s__Escherichia_coli	0.208748	0	0.176185	0	0	0.0427844
+GO:0015473: [MF] fimbrial usher porin activity	0.242579	0	0.136672	0	0	0.203735
+GO:0015473: [MF] fimbrial usher porin activity|g__Escherichia.s__Escherichia_coli	0.242579	0	0.136672	0	0	0.203735
+GO:0015481: [MF] maltose transporting porin activity	0.0408065	0	0	0	0	0
+GO:0015481: [MF] maltose transporting porin activity|g__Escherichia.s__Escherichia_coli	0.0408065	0	0	0	0	0
+GO:0015487: [MF] melibiose:monovalent cation symporter activity	0.142252	0	0.0880025	0	0	0.212208
+GO:0015487: [MF] melibiose:monovalent cation symporter activity|g__Escherichia.s__Escherichia_coli	0.142252	0	0.0880025	0	0	0.212208
+GO:0015489: [MF] putrescine transmembrane transporter activity	0.0392997	0	0	0	0	0.0261298
+GO:0015489: [MF] putrescine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0392997	0	0	0	0	0.0261298
+GO:0015496: [MF] putrescine:ornithine antiporter activity	0.103876	0	0	0	0	0
+GO:0015496: [MF] putrescine:ornithine antiporter activity|g__Escherichia.s__Escherichia_coli	0.103876	0	0	0	0	0
+GO:0015499: [MF] formate transmembrane transporter activity	0.139019	0	0	0	0	0
+GO:0015499: [MF] formate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.139019	0	0	0	0	0
+GO:0015501: [MF] glutamate:sodium symporter activity	0.23327	0	0.0854314	0	0	0.0613145
+GO:0015501: [MF] glutamate:sodium symporter activity|g__Escherichia.s__Escherichia_coli	0.23327	0	0.0854314	0	0	0.0613145
+GO:0015503: [MF] glutathione-regulated potassium exporter activity	0.132068	0	0	0	0	0.0393888
+GO:0015503: [MF] glutathione-regulated potassium exporter activity|g__Escherichia.s__Escherichia_coli	0.132068	0	0	0	0	0.0393888
+GO:0015513: [MF] nitrite uptake transmembrane transporter activity	0.143588	0	0	0	0	0
+GO:0015513: [MF] nitrite uptake transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.143588	0	0	0	0	0
+GO:0015517: [MF] galactose:proton symporter activity	0.0410252	0	0	0	0	0.0554289
+GO:0015517: [MF] galactose:proton symporter activity|g__Escherichia.s__Escherichia_coli	0.0410252	0	0	0	0	0.0554289
+GO:0015518: [MF] arabinose:proton symporter activity	0.0410252	0	0	0	0	0.0554289
+GO:0015518: [MF] arabinose:proton symporter activity|g__Escherichia.s__Escherichia_coli	0.0410252	0	0	0	0	0.0554289
+GO:0015527: [MF] glycerol-phosphate:inorganic phosphate antiporter activity	0.0724747	0	0	0	0	0
+GO:0015527: [MF] glycerol-phosphate:inorganic phosphate antiporter activity|g__Escherichia.s__Escherichia_coli	0.0724747	0	0	0	0	0
+GO:0015535: [MF] fucose:proton symporter activity	0.0410252	0	0	0	0	0.0554289
+GO:0015535: [MF] fucose:proton symporter activity|g__Escherichia.s__Escherichia_coli	0.0410252	0	0	0	0	0.0554289
+GO:0015538: [MF] sialic acid:proton symporter activity	0.0194189	0	0	0	0	0.103387
+GO:0015538: [MF] sialic acid:proton symporter activity|g__Escherichia.s__Escherichia_coli	0.0194189	0	0	0	0	0.103387
+GO:0015542: [MF] sugar efflux transmembrane transporter activity	0.117413	0	0	0	0	0.0624787
+GO:0015542: [MF] sugar efflux transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.117413	0	0	0	0	0.0624787
+GO:0015546: [MF] sulfathiazole transmembrane transporter activity	0.0266372	0	0.0494366	0	0	0
+GO:0015546: [MF] sulfathiazole transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0266372	0	0.0494366	0	0	0
+GO:0015556: [MF] C4-dicarboxylate transmembrane transporter activity	0.167188	0	0.0759591	0	0	0
+GO:0015556: [MF] C4-dicarboxylate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.167188	0	0.0759591	0	0	0
+GO:0015558: [MF] p-aminobenzoyl-glutamate uptake transmembrane transporter activity	0.0773355	0	0	0	0	0
+GO:0015558: [MF] p-aminobenzoyl-glutamate uptake transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0773355	0	0	0	0	0
+GO:0015562: [MF] efflux transmembrane transporter activity	0.177055	0	0	0	0	0.0861185
+GO:0015562: [MF] efflux transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.177055	0	0	0	0	0.0861185
+GO:0015565: [MF] threonine efflux transmembrane transporter activity	0.0443792	0	0	0	0	0
+GO:0015565: [MF] threonine efflux transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0443792	0	0	0	0	0
+GO:0015568: [MF] L-idonate transmembrane transporter activity	0.145363	0	0	0	0	0.0552672
+GO:0015568: [MF] L-idonate transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.145363	0	0	0	0	0.0552672
+GO:0015572: [MF] N-acetylglucosamine transmembrane transporter activity	0.0270504	0	0	0	0	0
+GO:0015572: [MF] N-acetylglucosamine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0270504	0	0	0	0	0
+GO:0015574: [MF] trehalose transmembrane transporter activity	0.0383275	0	0	0	0	0.0431401
+GO:0015574: [MF] trehalose transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0383275	0	0	0	0	0.0431401
+GO:0015577: [MF] galactitol transmembrane transporter activity	0.122468	0	0	0	0	0
+GO:0015577: [MF] galactitol transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.122468	0	0	0	0	0
+GO:0015591: [MF] D-ribose transmembrane transporter activity	0.122857	0	0.0664868	0	0	0.109467
+GO:0015591: [MF] D-ribose transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.122857	0	0.0664868	0	0	0.109467
+GO:0015592: [MF] methylgalactoside transmembrane transporter activity	0.142252	0	0.0880025	0	0	0.212208
+GO:0015592: [MF] methylgalactoside transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.142252	0	0.0880025	0	0	0.212208
+GO:0015594: [MF] putrescine-importing ATPase activity	1.49691	24.2779	16.7626	104.586	98.4303	50.9936
+GO:0015594: [MF] putrescine-importing ATPase activity|g__Clostridium.s__Clostridium_thermocellum	1.49691	24.2779	16.7169	104.586	98.4303	50.9279
+GO:0015594: [MF] putrescine-importing ATPase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0456927	0	0	0.065745
+GO:0015595: [MF] spermidine-importing ATPase activity	1.49691	24.2779	16.7626	104.586	98.4303	50.9279
+GO:0015595: [MF] spermidine-importing ATPase activity|g__Clostridium.s__Clostridium_thermocellum	1.49691	24.2779	16.7169	104.586	98.4303	50.9279
+GO:0015595: [MF] spermidine-importing ATPase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0456927	0	0	0
+GO:0015606: [MF] spermidine transmembrane transporter activity	0.251401	0	0	0	0	0
+GO:0015606: [MF] spermidine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.251401	0	0	0	0	0
+GO:0015612: [MF] L-arabinose-importing ATPase activity	1.68101	4.31054	6.05995	3.25868	3.82395	4.79958
+GO:0015612: [MF] L-arabinose-importing ATPase activity|g__Clostridium.s__Clostridium_thermocellum	0.899031	2.69643	3.67495	3.0391	3.53656	4.19044
+GO:0015612: [MF] L-arabinose-importing ATPase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.518649	1.61411	2.1228	0.219578	0.28739	0.499668
+GO:0015612: [MF] L-arabinose-importing ATPase activity|g__Escherichia.s__Escherichia_coli	0.26331	0	0.262158	0	0	0.109467
+GO:0015614: [MF] D-xylose-importing ATPase activity	0.0174503	0	0.0323864	0	0	0
+GO:0015614: [MF] D-xylose-importing ATPase activity|g__Escherichia.s__Escherichia_coli	0.0174503	0	0.0323864	0	0	0
+GO:0015616: [MF] DNA translocase activity	0.0241582	0	0	0	0	0
+GO:0015616: [MF] DNA translocase activity|g__Escherichia.s__Escherichia_coli	0.0241582	0	0	0	0	0
+GO:0015620: [MF] ferric-enterobactin transmembrane transporter activity	0.053153	0	0.0917012	0	0	0.0327593
+GO:0015620: [MF] ferric-enterobactin transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.053153	0	0.0917012	0	0	0.0327593
+GO:0015623: [MF] iron-chelate-transporting ATPase activity	0	0	0.139198	0	0	0
+GO:0015623: [MF] iron-chelate-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0	0	0.139198	0	0	0
+GO:0015627: [CC] type II protein secretion system complex	12.2854	16.6253	20.5292	8.68141	8.19072	6.27339
+GO:0015627: [CC] type II protein secretion system complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	12.0461	16.6253	20.4181	8.68141	8.19072	6.27339
+GO:0015627: [CC] type II protein secretion system complex|g__Escherichia.s__Escherichia_coli	0.239371	0	0.111187	0	0	0
+GO:0015628: [BP] protein secretion by the type II secretion system	12.2854	16.6253	20.5292	8.68141	8.19072	6.27339
+GO:0015628: [BP] protein secretion by the type II secretion system|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	12.0461	16.6253	20.4181	8.68141	8.19072	6.27339
+GO:0015628: [BP] protein secretion by the type II secretion system|g__Escherichia.s__Escherichia_coli	0.239371	0	0.111187	0	0	0
+GO:0015643: [MF] toxic substance binding	0.107934	0	0.406363	0	0	0
+GO:0015643: [MF] toxic substance binding|g__Escherichia.s__Escherichia_coli	0.107934	0	0.406363	0	0	0
+GO:0015648: [MF] lipid-linked peptidoglycan transporter activity	0.0443792	0	0	0	0	0
+GO:0015648: [MF] lipid-linked peptidoglycan transporter activity|g__Escherichia.s__Escherichia_coli	0.0443792	0	0	0	0	0
+GO:0015655: [MF] alanine:sodium symporter activity	0.0759016	0	0.139018	0	0	0
+GO:0015655: [MF] alanine:sodium symporter activity|g__Escherichia.s__Escherichia_coli	0.0759016	0	0.139018	0	0	0
+GO:0015658: [MF] branched-chain amino acid transmembrane transporter activity	19.4622	2.06521	1.51941	1.18974	1.11601	0.516032
+GO:0015658: [MF] branched-chain amino acid transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	19.4622	2.06521	1.51941	1.18974	1.11601	0.516032
+GO:0015661: [MF] L-lysine efflux transmembrane transporter activity	0.129711	0	0	0	0	0
+GO:0015661: [MF] L-lysine efflux transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.129711	0	0	0	0	0
+GO:0015675: [BP] nickel cation transport	0.0341229	0	0	0	0	0
+GO:0015675: [BP] nickel cation transport|g__Escherichia.s__Escherichia_coli	0.0341229	0	0	0	0	0
+GO:0015682: [BP] ferric iron transport	0.0223597	0	0	0	0	0
+GO:0015682: [BP] ferric iron transport|g__Escherichia.s__Escherichia_coli	0.0223597	0	0	0	0	0
+GO:0015684: [BP] ferrous iron transport	0.329004	0	0.0804246	0	0	0
+GO:0015684: [BP] ferrous iron transport|g__Escherichia.s__Escherichia_coli	0.329004	0	0.0804246	0	0	0
+GO:0015685: [BP] ferric-enterobactin transport	0.053153	0	0.0917012	0	0	0.0327593
+GO:0015685: [BP] ferric-enterobactin transport|g__Escherichia.s__Escherichia_coli	0.053153	0	0.0917012	0	0	0.0327593
+GO:0015692: [BP] lead ion transport	0.0237208	0	0.0220119	0	0	0
+GO:0015692: [BP] lead ion transport|g__Escherichia.s__Escherichia_coli	0.0237208	0	0.0220119	0	0	0
+GO:0015693: [BP] magnesium ion transport	3.45443	8.08905	6.66595	21.5822	20.5815	22.5536
+GO:0015693: [BP] magnesium ion transport|g__Clostridium.s__Clostridium_thermocellum	1.51708	7.00716	5.29025	20.5804	20.1047	21.6624
+GO:0015693: [BP] magnesium ion transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.24621	1.08189	1.3757	1.00187	0.476835	0.789716
+GO:0015693: [BP] magnesium ion transport|g__Escherichia.s__Escherichia_coli	0.691134	0	0	0	0	0.101479
+GO:0015700: [BP] arsenite transport	0	0	0.0395583	0	0	0.185755
+GO:0015700: [BP] arsenite transport|g__Escherichia.s__Escherichia_coli	0	0	0.0395583	0	0	0.185755
+GO:0015707: [BP] nitrite transport	0.143588	0	0	0	0	0
+GO:0015707: [BP] nitrite transport|g__Escherichia.s__Escherichia_coli	0.143588	0	0	0	0	0
+GO:0015716: [BP] organic phosphonate transport	0	0	0	0	0	0.112281
+GO:0015716: [BP] organic phosphonate transport|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.112281
+GO:0015724: [BP] formate transport	0.139019	0	0	0	0	0
+GO:0015724: [BP] formate transport|g__Escherichia.s__Escherichia_coli	0.139019	0	0	0	0	0
+GO:0015726: [BP] L-idonate transport	0.145363	0	0	0	0	0.0552672
+GO:0015726: [BP] L-idonate transport|g__Escherichia.s__Escherichia_coli	0.145363	0	0	0	0	0.0552672
+GO:0015734: [BP] taurine transport	0	0	0.111097	0	0	0
+GO:0015734: [BP] taurine transport|g__Escherichia.s__Escherichia_coli	0	0	0.111097	0	0	0
+GO:0015739: [BP] sialic acid transport	0.0194189	0	0	0	0	0.103387
+GO:0015739: [BP] sialic acid transport|g__Escherichia.s__Escherichia_coli	0.0194189	0	0	0	0	0.103387
+GO:0015747: [BP] urate transport	0.0374282	0	0.0694638	0	0	0
+GO:0015747: [BP] urate transport|g__Escherichia.s__Escherichia_coli	0.0374282	0	0.0694638	0	0	0
+GO:0015749: [BP] monosaccharide transport	13.7127	15.9374	18.7236	2.48895	4.0153	5.54124
+GO:0015749: [BP] monosaccharide transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.4668	15.9374	18.6096	2.48895	4.0153	5.36667
+GO:0015749: [BP] monosaccharide transport|g__Escherichia.s__Escherichia_coli	0.245981	0	0.113984	0	0	0.174565
+GO:0015751: [BP] arabinose transport	0.0410252	0	0	0	0	0.0554289
+GO:0015751: [BP] arabinose transport|g__Escherichia.s__Escherichia_coli	0.0410252	0	0	0	0	0.0554289
+GO:0015753: [BP] D-xylose transport	0.115323	0	0	0	0	0
+GO:0015753: [BP] D-xylose transport|g__Escherichia.s__Escherichia_coli	0.115323	0	0	0	0	0
+GO:0015756: [BP] fucose transport	0.0410252	0	0	0	0	0.0554289
+GO:0015756: [BP] fucose transport|g__Escherichia.s__Escherichia_coli	0.0410252	0	0	0	0	0.0554289
+GO:0015757: [BP] galactose transport	0.333597	0	0.109022	0	0	0.0554289
+GO:0015757: [BP] galactose transport|g__Escherichia.s__Escherichia_coli	0.333597	0	0.109022	0	0	0.0554289
+GO:0015765: [BP] methylgalactoside transport	0.142252	0	0.0880025	0	0	0.212208
+GO:0015765: [BP] methylgalactoside transport|g__Escherichia.s__Escherichia_coli	0.142252	0	0.0880025	0	0	0.212208
+GO:0015769: [BP] melibiose transport	0.142252	0	0.0880025	0	0	0.212208
+GO:0015769: [BP] melibiose transport|g__Escherichia.s__Escherichia_coli	0.142252	0	0.0880025	0	0	0.212208
+GO:0015771: [BP] trehalose transport	0.0383275	0	0	0	0	0.0431401
+GO:0015771: [BP] trehalose transport|g__Escherichia.s__Escherichia_coli	0.0383275	0	0	0	0	0.0431401
+GO:0015793: [BP] glycerol transport	0.0724747	0	0	0	0	0
+GO:0015793: [BP] glycerol transport|g__Escherichia.s__Escherichia_coli	0.0724747	0	0	0	0	0
+GO:0015794: [BP] glycerol-3-phosphate transport	304.345	363.281	353.869	1322.03	1123.95	903.593
+GO:0015794: [BP] glycerol-3-phosphate transport|g__Clostridium.s__Clostridium_thermocellum	115.851	297.81	235.253	1285.84	1089.39	861.139
+GO:0015794: [BP] glycerol-3-phosphate transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	188.38	65.4715	118.616	36.1918	34.5571	42.4546
+GO:0015794: [BP] glycerol-3-phosphate transport|g__Escherichia.s__Escherichia_coli	0.114108	0	0	0	0	0
+GO:0015803: [BP] branched-chain amino acid transport	0.145411	0	0	0	0	0
+GO:0015803: [BP] branched-chain amino acid transport|g__Escherichia.s__Escherichia_coli	0.145411	0	0	0	0	0
+GO:0015807: [BP] L-amino acid transport	0.707175	0	0.523098	0	0	0.179351
+GO:0015807: [BP] L-amino acid transport|g__Escherichia.s__Escherichia_coli	0.707175	0	0.523098	0	0	0.179351
+GO:0015809: [BP] arginine transport	0.0835087	0	0.154985	0	0	0
+GO:0015809: [BP] arginine transport|g__Escherichia.s__Escherichia_coli	0.0835087	0	0.154985	0	0	0
+GO:0015814: [BP] p-aminobenzoyl-glutamate transport	0.0773355	0	0	0	0	0
+GO:0015814: [BP] p-aminobenzoyl-glutamate transport|g__Escherichia.s__Escherichia_coli	0.0773355	0	0	0	0	0
+GO:0015818: [BP] isoleucine transport	0.145411	0	0	0	0	0
+GO:0015818: [BP] isoleucine transport|g__Escherichia.s__Escherichia_coli	0.145411	0	0	0	0	0
+GO:0015820: [BP] leucine transport	0.246832	0	0	0	0	0
+GO:0015820: [BP] leucine transport|g__Escherichia.s__Escherichia_coli	0.246832	0	0	0	0	0
+GO:0015823: [BP] phenylalanine transport	0	0	0.0920621	0	0	0.105328
+GO:0015823: [BP] phenylalanine transport|g__Escherichia.s__Escherichia_coli	0	0	0.0920621	0	0	0.105328
+GO:0015829: [BP] valine transport	0.26941	0	0	0	0	0
+GO:0015829: [BP] valine transport|g__Escherichia.s__Escherichia_coli	0.26941	0	0	0	0	0
+GO:0015833: [BP] peptide transport	491.249	168.535	222.653	139.432	169.307	136.43
+GO:0015833: [BP] peptide transport|g__Clostridium.s__Clostridium_thermocellum	1.79733	15.142	8.86768	34.1038	41.3	34.1558
+GO:0015833: [BP] peptide transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	488.778	153.393	213.126	105.328	128.007	101.995
+GO:0015833: [BP] peptide transport|g__Escherichia.s__Escherichia_coli	0.674146	0	0.659049	0	0	0.279279
+GO:0015846: [BP] polyamine transport	2.86812	14.2759	7.52225	83.8084	72.8267	32.8495
+GO:0015846: [BP] polyamine transport|g__Clostridium.s__Clostridium_thermocellum	2.86812	14.2759	7.34115	83.8084	72.8267	32.8495
+GO:0015846: [BP] polyamine transport|g__Escherichia.s__Escherichia_coli	0	0	0.181102	0	0	0
+GO:0015847: [BP] putrescine transport	0.0392997	0	0	0	0	0.0918424
+GO:0015847: [BP] putrescine transport|g__Escherichia.s__Escherichia_coli	0.0392997	0	0	0	0	0.0918424
+GO:0015851: [BP] nucleobase transport	0.186874	0	0	0	0	0
+GO:0015851: [BP] nucleobase transport|g__Escherichia.s__Escherichia_coli	0.186874	0	0	0	0	0
+GO:0015853: [BP] adenine transport	0.123489	0	0.151873	0	0	0.054588
+GO:0015853: [BP] adenine transport|g__Escherichia.s__Escherichia_coli	0.123489	0	0.151873	0	0	0.054588
+GO:0015857: [BP] uracil transport	0	0	0	0	0	0.0548468
+GO:0015857: [BP] uracil transport|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0548468
+GO:0015860: [BP] purine nucleoside transmembrane transport	0.0219952	0	0	0	0	0.0584364
+GO:0015860: [BP] purine nucleoside transmembrane transport|g__Escherichia.s__Escherichia_coli	0.0219952	0	0	0	0	0.0584364
+GO:0015861: [BP] cytidine transport	0.0219952	0	0	0	0	0.0584364
+GO:0015861: [BP] cytidine transport|g__Escherichia.s__Escherichia_coli	0.0219952	0	0	0	0	0.0584364
+GO:0015862: [BP] uridine transport	0.0219952	0	0	0	0	0.0584364
+GO:0015862: [BP] uridine transport|g__Escherichia.s__Escherichia_coli	0.0219952	0	0	0	0	0.0584364
+GO:0015864: [BP] pyrimidine nucleoside transport	0.0219952	0	0	0	0	0.0584364
+GO:0015864: [BP] pyrimidine nucleoside transport|g__Escherichia.s__Escherichia_coli	0.0219952	0	0	0	0	0.0584364
+GO:0015871: [BP] choline transport	0.265619	0	0	0	0	0
+GO:0015871: [BP] choline transport|g__Escherichia.s__Escherichia_coli	0.265619	0	0	0	0	0
+GO:0015886: [BP] heme transport	0	0	0	0	0	0.0756407
+GO:0015886: [BP] heme transport|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0756407
+GO:0015887: [BP] pantothenate transmembrane transport	0.111993	0	0	0	0	0
+GO:0015887: [BP] pantothenate transmembrane transport|g__Escherichia.s__Escherichia_coli	0.111993	0	0	0	0	0
+GO:0015889: [BP] cobalamin transport	0.0426293	0	0	0	0	0
+GO:0015889: [BP] cobalamin transport|g__Escherichia.s__Escherichia_coli	0.0426293	0	0	0	0	0
+GO:0015891: [BP] siderophore transport	0.111726	0	0.135725	0	0	0.0669738
+GO:0015891: [BP] siderophore transport|g__Escherichia.s__Escherichia_coli	0.111726	0	0.135725	0	0	0.0669738
+GO:0015906: [BP] sulfathiazole transport	0.0266372	0	0.0494366	0	0	0
+GO:0015906: [BP] sulfathiazole transport|g__Escherichia.s__Escherichia_coli	0.0266372	0	0.0494366	0	0	0
+GO:0015914: [BP] phospholipid transport	0.110462	0	0	0	0	0
+GO:0015914: [BP] phospholipid transport|g__Escherichia.s__Escherichia_coli	0.110462	0	0	0	0	0
+GO:0015920: [BP] lipopolysaccharide transport	0.098796	0	0.497839	0	0	0
+GO:0015920: [BP] lipopolysaccharide transport|g__Escherichia.s__Escherichia_coli	0.098796	0	0.497839	0	0	0
+GO:0015926: [MF] glucosidase activity	1.0845	6.84132	6.46965	14.4016	15.454	20.6395
+GO:0015926: [MF] glucosidase activity|g__Clostridium.s__Clostridium_thermocellum	1.0845	6.84132	6.44917	14.4016	15.454	20.6395
+GO:0015926: [MF] glucosidase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0204783	0	0	0
+GO:0015934: [CC] large ribosomal subunit	667.681	1842.23	998.775	4366.38	3979.57	5231.24
+GO:0015934: [CC] large ribosomal subunit|g__Clostridium.s__Clostridium_thermocellum	184.466	1280.5	583.665	3734.66	3143.94	4475.33
+GO:0015934: [CC] large ribosomal subunit|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	479.225	553.04	411.772	624.48	831.87	749.638
+GO:0015934: [CC] large ribosomal subunit|g__Escherichia.s__Escherichia_coli	0.242895	0	0	0	0	0.113089
+GO:0015934: [CC] large ribosomal subunit|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.74822	8.6938	3.33801	7.24646	3.76476	6.15927
+GO:0015935: [CC] small ribosomal subunit	543.61	791.454	574.22	1590.67	1606.69	1548.19
+GO:0015935: [CC] small ribosomal subunit|g__Clostridium.s__Clostridium_thermocellum	72.7865	332.798	197.154	1094.07	1021.61	1116.23
+GO:0015935: [CC] small ribosomal subunit|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	467.167	451.183	358.528	472.406	580.522	423.962
+GO:0015935: [CC] small ribosomal subunit|g__Escherichia.s__Escherichia_coli	0.485036	0	0.546509	0	0	0
+GO:0015935: [CC] small ribosomal subunit|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.17112	7.47427	17.9917	24.1942	4.55646	8.00194
+GO:0015936: [BP] coenzyme A metabolic process	0.0465666	0.357427	0	0.0476512	0.12349	0.0309807
+GO:0015936: [BP] coenzyme A metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0465666	0.357427	0	0.0476512	0.12349	0.0309807
+GO:0015937: [BP] coenzyme A biosynthetic process	69.5847	227.028	184.01	397.362	386.661	371.383
+GO:0015937: [BP] coenzyme A biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	21.973	145.312	118.669	335.267	318.503	312.709
+GO:0015937: [BP] coenzyme A biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	47.3424	81.1278	64.0564	61.3695	68.0343	58.0248
+GO:0015937: [BP] coenzyme A biosynthetic process|g__Escherichia.s__Escherichia_coli	0.125117	0	0.681377	0	0	0
+GO:0015937: [BP] coenzyme A biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.144245	0.589068	0.603343	0.725884	0.123707	0.648653
+GO:0015940: [BP] pantothenate biosynthetic process	97.1265	94.8856	87.6264	143.069	144.308	146.625
+GO:0015940: [BP] pantothenate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	10.5444	43.7854	30.9204	93.2364	91.9091	101.826
+GO:0015940: [BP] pantothenate biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	86.372	51.1001	56.7059	49.8328	52.3983	44.7988
+GO:0015940: [BP] pantothenate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.210084	0	0	0	0	0
+GO:0015941: [BP] pantothenate catabolic process	6.30447	18.6416	12.7659	39.1608	40.3548	32.1954
+GO:0015941: [BP] pantothenate catabolic process|g__Clostridium.s__Clostridium_thermocellum	2.40399	14.0103	9.51189	35.0685	35.422	28.2307
+GO:0015941: [BP] pantothenate catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.75624	4.16977	2.89714	3.77369	4.86838	3.58089
+GO:0015941: [BP] pantothenate catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.144245	0.461509	0.356881	0.318537	0.0643926	0.383798
+GO:0015948: [BP] methanogenesis	27.9748	18.0663	28.4618	27.1532	16.1025	27.568
+GO:0015948: [BP] methanogenesis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	27.9748	18.0663	28.4618	27.1532	16.1025	27.568
+GO:0015949: [BP] nucleobase-containing small molecule interconversion	0.153577	0	0	0	0	0
+GO:0015949: [BP] nucleobase-containing small molecule interconversion|g__Escherichia.s__Escherichia_coli	0.153577	0	0	0	0	0
+GO:0015969: [BP] guanosine tetraphosphate metabolic process	13.5723	19.9592	12.9071	43.7139	42.9844	38.2954
+GO:0015969: [BP] guanosine tetraphosphate metabolic process|g__Clostridium.s__Clostridium_thermocellum	2.39942	12.373	7.30416	35.2623	33.6013	30.5255
+GO:0015969: [BP] guanosine tetraphosphate metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.1728	7.58619	5.60298	8.45164	9.38304	7.76994
+GO:0015970: [BP] guanosine tetraphosphate biosynthetic process	0.333403	0	0.0675693	0	0	0.0484437
+GO:0015970: [BP] guanosine tetraphosphate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.333403	0	0.0675693	0	0	0.0484437
+GO:0015974: [BP] guanosine pentaphosphate catabolic process	0.254877	0	0.0675693	0	0	0.0484437
+GO:0015974: [BP] guanosine pentaphosphate catabolic process|g__Escherichia.s__Escherichia_coli	0.254877	0	0.0675693	0	0	0.0484437
+GO:0015976: [BP] carbon utilization	0.867339	16.1959	9.881	72.5495	65.9282	34.5646
+GO:0015976: [BP] carbon utilization|g__Clostridium.s__Clostridium_thermocellum	0.658664	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0015976: [BP] carbon utilization|g__Escherichia.s__Escherichia_coli	0.208675	0	0.176005	0	0	0.270191
+GO:0015977: [BP] carbon fixation	0.0536877	0.262166	0	0.262877	0.15294	0.185011
+GO:0015977: [BP] carbon fixation|g__Escherichia.s__Escherichia_coli	0.0194432	0	0	0	0	0.025483
+GO:0015977: [BP] carbon fixation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0342444	0.262166	0	0.262877	0.15294	0.159528
+GO:0015979: [BP] photosynthesis	61.4381	81.1147	63.6955	117.286	117.294	105.517
+GO:0015979: [BP] photosynthesis|g__Clostridium.s__Clostridium_thermocellum	4.56945	22.8185	16.9742	52.6723	45.9177	66.2287
+GO:0015979: [BP] photosynthesis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	54.4072	55.9203	43.4377	63.3122	70.553	37.9243
+GO:0015979: [BP] photosynthesis|g__Escherichia.s__Escherichia_coli	0.585874	0	0.528331	0	0	0.0471824
+GO:0015979: [BP] photosynthesis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.87559	2.37592	2.75528	1.30118	0.823192	1.31645
+GO:0015986: [BP] ATP synthesis coupled proton transport	126.206	739.009	479.364	1006.93	1002.24	853.165
+GO:0015986: [BP] ATP synthesis coupled proton transport|g__Clostridium.s__Clostridium_thermocellum	40.434	668.937	426.393	906.92	869.677	781.444
+GO:0015986: [BP] ATP synthesis coupled proton transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	85.7719	70.0725	52.4691	100.01	132.568	71.7211
+GO:0015986: [BP] ATP synthesis coupled proton transport|g__Escherichia.s__Escherichia_coli	0	0	0.501177	0	0	0
+GO:0015991: [BP] ATP hydrolysis coupled proton transport	354.567	962.68	659.932	1463.09	1463.12	1243.33
+GO:0015991: [BP] ATP hydrolysis coupled proton transport|g__Clostridium.s__Clostridium_thermocellum	54.7493	782.906	507.51	1241.4	1193.76	1037.99
+GO:0015991: [BP] ATP hydrolysis coupled proton transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	299.031	179.331	150.513	220.231	268.282	203.938
+GO:0015991: [BP] ATP hydrolysis coupled proton transport|g__Escherichia.s__Escherichia_coli	0.0394212	0	0.501177	0	0	0
+GO:0015991: [BP] ATP hydrolysis coupled proton transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.747471	0.443213	1.40799	1.46774	1.07041	1.40102
+GO:0015992: [BP] proton transport	330.37	76.3616	128.621	27.1477	34.4745	47.0193
+GO:0015992: [BP] proton transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	329.96	76.3616	128.399	27.1477	34.4745	46.8286
+GO:0015992: [BP] proton transport|g__Escherichia.s__Escherichia_coli	0.410666	0	0.222374	0	0	0.190702
+GO:0015995: [BP] chlorophyll biosynthetic process	5.92637	27.1213	22.577	55.5186	46.9209	68.2654
+GO:0015995: [BP] chlorophyll biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.47512	23.5746	18.4798	53.1256	45.2639	66.1155
+GO:0015995: [BP] chlorophyll biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.989807	1.17071	0.813673	1.09185	0.833826	0.786255
+GO:0015995: [BP] chlorophyll biosynthetic process|g__Escherichia.s__Escherichia_coli	0.585874	0	0.528331	0	0	0.0471824
+GO:0015995: [BP] chlorophyll biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.87559	2.37592	2.75528	1.30118	0.823192	1.31645
+GO:0016020: [CC] membrane	231.503	305.226	252.233	810.818	747.776	767.472
+GO:0016020: [CC] membrane|g__Clostridium.s__Clostridium_thermocellum	28.6322	177.207	117.74	725.111	645.011	687.37
+GO:0016020: [CC] membrane|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	200.88	127.827	133.439	85.2296	102.24	79.1057
+GO:0016020: [CC] membrane|g__Escherichia.s__Escherichia_coli	1.87341	0	0.888866	0	0	0.538022
+GO:0016020: [CC] membrane|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.116927	0.192435	0.164999	0.477407	0.525601	0.458048
+GO:0016021: [CC] integral component of membrane	29569.3	29142.3	32983.7	42339.7	41247.4	47987.8
+GO:0016021: [CC] integral component of membrane|g__Clostridium.s__Clostridium_thermocellum	2545.63	10752.3	8918.71	29306.2	26536.7	31852.4
+GO:0016021: [CC] integral component of membrane|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	26652.3	18195	22803.3	12856.3	14613.5	15381.4
+GO:0016021: [CC] integral component of membrane|g__Escherichia.s__Escherichia_coli	260.817	0	1093.09	0	0	568.028
+GO:0016021: [CC] integral component of membrane|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	110.461	195.017	168.605	177.207	97.1553	186.02
+GO:0016024: [BP] CDP-diacylglycerol biosynthetic process	0.323463	0	0	0	0	0
+GO:0016024: [BP] CDP-diacylglycerol biosynthetic process|g__Escherichia.s__Escherichia_coli	0.323463	0	0	0	0	0
+GO:0016036: [BP] cellular response to phosphate starvation	0.190058	0	0	0	0	0
+GO:0016036: [BP] cellular response to phosphate starvation|g__Escherichia.s__Escherichia_coli	0.190058	0	0	0	0	0
+GO:0016048: [BP] detection of temperature stimulus	0.0815887	0	0	0	0	0
+GO:0016048: [BP] detection of temperature stimulus|g__Escherichia.s__Escherichia_coli	0.0815887	0	0	0	0	0
+GO:0016051: [BP] carbohydrate biosynthetic process	2.06361	7.19922	4.5266	48.9485	36.4906	40.2848
+GO:0016051: [BP] carbohydrate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.01823	7.02629	4.44239	48.2055	36.3285	39.9526
+GO:0016051: [BP] carbohydrate biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0453757	0.172926	0.0842136	0.742945	0.162121	0.332153
+GO:0016052: [BP] carbohydrate catabolic process	93.6512	50.6441	44.0169	84.454	66.52	94.0968
+GO:0016052: [BP] carbohydrate catabolic process|g__Clostridium.s__Clostridium_thermocellum	2.09353	22.1003	15.1099	60.3665	37.74	60.8098
+GO:0016052: [BP] carbohydrate catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	91.1103	28.1964	28.6492	23.9455	28.6974	33.1018
+GO:0016052: [BP] carbohydrate catabolic process|g__Escherichia.s__Escherichia_coli	0.0771654	0	0	0	0	0
+GO:0016052: [BP] carbohydrate catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.370175	0.347438	0.257738	0.142033	0.0826881	0.18514
+GO:0016075: [BP] rRNA catabolic process	1.29891	6.48698	2.88541	28.1773	22.2648	16.6507
+GO:0016075: [BP] rRNA catabolic process|g__Clostridium.s__Clostridium_thermocellum	1.29891	6.48698	2.88541	28.1773	22.2648	16.6507
+GO:0016114: [BP] terpenoid biosynthetic process	108.678	157.056	112.756	248.69	255.036	238.313
+GO:0016114: [BP] terpenoid biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	9.35047	70.1949	47.9649	168.702	161.307	170.131
+GO:0016114: [BP] terpenoid biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	99.108	86.8614	64.7914	79.988	93.7285	68.1825
+GO:0016114: [BP] terpenoid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.219709	0	0	0	0	0
+GO:0016117: [BP] carotenoid biosynthetic process	0.298381	0.635321	0.0921974	0.101719	0.133147	0.674751
+GO:0016117: [BP] carotenoid biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.298381	0.635321	0.0921974	0.101719	0.133147	0.674751
+GO:0016149: [MF] translation release factor activity, codon specific	108.72	123.273	103.282	226.088	236.443	217.129
+GO:0016149: [MF] translation release factor activity, codon specific|g__Clostridium.s__Clostridium_thermocellum	8.22943	53.8034	38.0568	151.697	156.734	164.242
+GO:0016149: [MF] translation release factor activity, codon specific|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	100.411	68.8617	64.911	74.1595	79.4663	52.5343
+GO:0016149: [MF] translation release factor activity, codon specific|g__Escherichia.s__Escherichia_coli	0.033734	0	0.0626527	0	0	0.0224432
+GO:0016149: [MF] translation release factor activity, codon specific|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0452541	0.608344	0.251964	0.231566	0.242313	0.330859
+GO:0016151: [MF] nickel cation binding	95.5613	116.694	129.353	185.078	161.464	123.64
+GO:0016151: [MF] nickel cation binding|g__Clostridium.s__Clostridium_thermocellum	1.396	40.236	36.0393	83.4331	69.5957	62.1647
+GO:0016151: [MF] nickel cation binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	78.4407	69.0492	74.2359	84.4078	80.3539	50.0137
+GO:0016151: [MF] nickel cation binding|g__Escherichia.s__Escherichia_coli	0.253127	0	0	0	0	0
+GO:0016151: [MF] nickel cation binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	15.4715	7.40832	19.0774	17.2368	11.5143	11.4617
+GO:0016153: [MF] urocanate hydratase activity	18.4303	10.6455	37.127	1.77538	2.92599	4.555
+GO:0016153: [MF] urocanate hydratase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.4303	10.6455	37.127	1.77538	2.92599	4.555
+GO:0016154: [MF] pyrimidine-nucleoside phosphorylase activity	31.3666	24.7419	28.296	34.0698	41.2712	25.1916
+GO:0016154: [MF] pyrimidine-nucleoside phosphorylase activity|g__Clostridium.s__Clostridium_thermocellum	0.738284	1.98489	2.77977	9.99093	9.33907	7.15631
+GO:0016154: [MF] pyrimidine-nucleoside phosphorylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	30.5868	22.757	25.5162	24.0789	31.9322	18.0353
+GO:0016154: [MF] pyrimidine-nucleoside phosphorylase activity|g__Escherichia.s__Escherichia_coli	0.0414384	0	0	0	0	0
+GO:0016162: [MF] cellulose 1,4-beta-cellobiosidase activity	29.1765	25.9726	18.4872	104.811	91.8518	100.319
+GO:0016162: [MF] cellulose 1,4-beta-cellobiosidase activity|g__Clostridium.s__Clostridium_thermocellum	29.1765	25.9726	18.4872	104.811	91.8518	100.319
+GO:0016163: [MF] nitrogenase activity	0.545869	1.22402	0.7655	2.16848	0.836213	1.44442
+GO:0016163: [MF] nitrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.545869	1.22402	0.7655	2.16848	0.836213	1.44442
+GO:0016197: [BP] endosomal transport	0.85927	1.48119	1.15811	14.8812	12.7606	11.0413
+GO:0016197: [BP] endosomal transport|g__Clostridium.s__Clostridium_thermocellum	0.844128	1.36483	0.989498	14.7573	12.6659	10.6787
+GO:0016197: [BP] endosomal transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0151414	0.116311	0.168608	0.123953	0.0946464	0.362616
+GO:0016208: [MF] AMP binding	0.383591	0.603863	0.128914	0.461639	0	0.431271
+GO:0016208: [MF] AMP binding|g__Escherichia.s__Escherichia_coli	0.0624857	0	0	0	0	0
+GO:0016208: [MF] AMP binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.321105	0.603863	0.128914	0.461639	0	0.431271
+GO:0016209: [MF] antioxidant activity	54.6751	156.565	201.502	344.836	243.783	517.337
+GO:0016209: [MF] antioxidant activity|g__Clostridium.s__Clostridium_thermocellum	6.81943	141.165	105.744	337.12	230.315	488.91
+GO:0016209: [MF] antioxidant activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	47.8557	15.3999	95.7575	7.71615	13.4677	28.4274
+GO:0016226: [BP] iron-sulfur cluster assembly	67.5399	131.269	125.617	121.655	120.686	146.809
+GO:0016226: [BP] iron-sulfur cluster assembly|g__Clostridium.s__Clostridium_thermocellum	3.46617	67.6044	65.482	114.777	110.089	136.593
+GO:0016226: [BP] iron-sulfur cluster assembly|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	63.3322	62.2854	59.1862	6.35001	10.196	9.64194
+GO:0016226: [BP] iron-sulfur cluster assembly|g__Escherichia.s__Escherichia_coli	0.360016	0	0.157827	0	0	0.0375455
+GO:0016226: [BP] iron-sulfur cluster assembly|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.381501	1.37897	0.790669	0.528142	0.400766	0.537408
+GO:0016259: [BP] selenocysteine metabolic process	33.3003	51.5545	66.8396	27.4989	35.3101	21.7446
+GO:0016259: [BP] selenocysteine metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	33.2716	51.5545	66.8396	27.4989	35.3101	21.7446
+GO:0016259: [BP] selenocysteine metabolic process|g__Escherichia.s__Escherichia_coli	0.0286545	0	0	0	0	0
+GO:0016260: [BP] selenocysteine biosynthetic process	16.3616	34.1096	29.3355	57.1364	63.6455	59.2512
+GO:0016260: [BP] selenocysteine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.40476	16.8858	13.3064	39.3101	43.4919	37.9766
+GO:0016260: [BP] selenocysteine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.9356	17.2239	16.0292	17.8264	20.1536	21.2747
+GO:0016260: [BP] selenocysteine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0212417	0	0	0	0	0
+GO:0016272: [CC] prefoldin complex	0.176107	1.61841	0.58106	0.929595	1.26602	2.55212
+GO:0016272: [CC] prefoldin complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.176107	1.61841	0.58106	0.929595	1.26602	2.55212
+GO:0016298: [MF] lipase activity	0.0364075	0	0	0	0	0
+GO:0016298: [MF] lipase activity|g__Escherichia.s__Escherichia_coli	0.0364075	0	0	0	0	0
+GO:0016301: [MF] kinase activity	567.597	685.338	712.31	1243.18	1272.8	1353.44
+GO:0016301: [MF] kinase activity|g__Clostridium.s__Clostridium_thermocellum	45.5243	226.434	179.036	916.407	881.102	1045.35
+GO:0016301: [MF] kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	515.008	453.921	527.034	323.433	389.687	304.637
+GO:0016301: [MF] kinase activity|g__Escherichia.s__Escherichia_coli	2.76884	0	3.57161	0	0	0.494041
+GO:0016301: [MF] kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	4.29557	4.98269	2.66773	3.33859	2.01507	2.95907
+GO:0016310: [BP] phosphorylation	15.3791	15.1858	15.7908	10.365	13.4177	12.2402
+GO:0016310: [BP] phosphorylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0016310: [BP] phosphorylation|g__Escherichia.s__Escherichia_coli	0.143904	0	0.567393	0	0	0
+GO:0016310: [BP] phosphorylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0632878	0.187441	0.0587285	0.0645628	0.113029	0.215668
+GO:0016311: [BP] dephosphorylation	12.9899	14.8895	8.95988	35.2135	27.3549	28.9802
+GO:0016311: [BP] dephosphorylation|g__Clostridium.s__Clostridium_thermocellum	1.23491	9.13104	5.3175	27.0817	19.7135	23.0007
+GO:0016311: [BP] dephosphorylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.94741	5.0141	2.59939	7.62938	7.53182	5.54085
+GO:0016311: [BP] dephosphorylation|g__Escherichia.s__Escherichia_coli	1.52656	0	0.779257	0	0	0.438612
+GO:0016311: [BP] dephosphorylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.281003	0.744397	0.263782	0.502426	0.109621	0
+GO:0016405: [MF] CoA-ligase activity	0.294541	0.161957	0.702937	0.517149	0.187709	0.47619
+GO:0016405: [MF] CoA-ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.294541	0.161957	0.702937	0.517149	0.187709	0.47619
+GO:0016407: [MF] acetyltransferase activity	0.0728149	0	0.0817327	0	0.0704043	0.0524537
+GO:0016407: [MF] acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0333938	0	0.0817327	0	0	0
+GO:0016407: [MF] acetyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0394212	0	0	0	0.0704043	0.0524537
+GO:0016410: [MF] N-acyltransferase activity	0.118215	0	0	0	0	0
+GO:0016410: [MF] N-acyltransferase activity|g__Escherichia.s__Escherichia_coli	0.118215	0	0	0	0	0
+GO:0016413: [MF] O-acetyltransferase activity	0	0	0.223276	0	0	0
+GO:0016413: [MF] O-acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.223276	0	0	0
+GO:0016415: [MF] octanoyltransferase activity	0.341083	0	0	0	0	0
+GO:0016415: [MF] octanoyltransferase activity|g__Escherichia.s__Escherichia_coli	0.341083	0	0	0	0	0
+GO:0016416: [MF] O-palmitoyltransferase activity	0.118264	0	0	0	0	0
+GO:0016416: [MF] O-palmitoyltransferase activity|g__Escherichia.s__Escherichia_coli	0.118264	0	0	0	0	0
+GO:0016429: [MF] tRNA (adenine-N1-)-methyltransferase activity	1.10792	4.53042	3.23462	11.0983	8.2845	15.2462
+GO:0016429: [MF] tRNA (adenine-N1-)-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.611927	4.37182	3.08121	10.9291	8.2845	15.2462
+GO:0016429: [MF] tRNA (adenine-N1-)-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.495997	0.158597	0.153407	0.169191	0	0
+GO:0016430: [MF] tRNA (adenine-N6-)-methyltransferase activity	0	0	0.140416	0	0	0
+GO:0016430: [MF] tRNA (adenine-N6-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.140416	0	0	0
+GO:0016434: [MF] rRNA (cytosine) methyltransferase activity	0.129006	0	0	0	0	0
+GO:0016434: [MF] rRNA (cytosine) methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.129006	0	0	0	0	0
+GO:0016437: [MF] tRNA cytidylyltransferase activity	0.0223111	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0016437: [MF] tRNA cytidylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0223111	0	0	0	0	0
+GO:0016437: [MF] tRNA cytidylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0016462: [MF] pyrophosphatase activity	55.8796	57.2489	43.0339	109.841	105.757	84.084
+GO:0016462: [MF] pyrophosphatase activity|g__Clostridium.s__Clostridium_thermocellum	3.92593	27.1335	16.1024	89.4446	80.4397	68.3222
+GO:0016462: [MF] pyrophosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	51.7973	29.7592	26.6445	20.2701	25.1246	15.1858
+GO:0016462: [MF] pyrophosphatase activity|g__Escherichia.s__Escherichia_coli	0.03405	0	0	0	0	0
+GO:0016462: [MF] pyrophosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.122249	0.356213	0.286922	0.126564	0.193243	0.575956
+GO:0016463: [MF] zinc-exporting ATPase activity	3.865	1.36716	1.79235	2.1443	2.67512	1.34029
+GO:0016463: [MF] zinc-exporting ATPase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.8413	1.36716	1.77033	2.1443	2.67512	1.34029
+GO:0016463: [MF] zinc-exporting ATPase activity|g__Escherichia.s__Escherichia_coli	0.0237208	0	0.0220119	0	0	0
+GO:0016485: [BP] protein processing	0.169424	0	0	0	0	0
+GO:0016485: [BP] protein processing|g__Escherichia.s__Escherichia_coli	0.169424	0	0	0	0	0
+GO:0016491: [MF] oxidoreductase activity	6615.84	15841.3	14052.3	7621.57	8026.85	10297.8
+GO:0016491: [MF] oxidoreductase activity|g__Clostridium.s__Clostridium_thermocellum	84.3911	839.947	654.431	2048.18	1791.14	2380.9
+GO:0016491: [MF] oxidoreductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6523.31	14984.4	13383.7	5555.74	6228.2	7900.53
+GO:0016491: [MF] oxidoreductase activity|g__Escherichia.s__Escherichia_coli	2.47551	0	2.55451	0	0	1.25067
+GO:0016491: [MF] oxidoreductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	5.66571	16.9487	11.6479	17.644	7.50235	15.0906
+GO:0016539: [BP] intein-mediated protein splicing	16.1904	81.2351	104.913	136.01	145.539	150.51
+GO:0016539: [BP] intein-mediated protein splicing|g__Clostridium.s__Clostridium_thermocellum	15.9503	80.7575	104.534	135.659	145.23	149.925
+GO:0016539: [BP] intein-mediated protein splicing|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.2401	0.477658	0.379705	0.351489	0.309136	0.585237
+GO:0016540: [BP] protein autoprocessing	0.0596421	0	0.0552553	0	0	0
+GO:0016540: [BP] protein autoprocessing|g__Escherichia.s__Escherichia_coli	0.0596421	0	0.0552553	0	0	0
+GO:0016597: [MF] amino acid binding	97.9473	230.082	188.689	545.858	501.965	497.639
+GO:0016597: [MF] amino acid binding|g__Clostridium.s__Clostridium_thermocellum	30.9154	201.901	156.513	513.895	466.456	471.19
+GO:0016597: [MF] amino acid binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	64.8263	25.8324	29.2434	29.6508	33.8493	23.0321
+GO:0016597: [MF] amino acid binding|g__Escherichia.s__Escherichia_coli	0.744069	0	0.204467	0	0	0
+GO:0016597: [MF] amino acid binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.46143	2.34862	2.72848	2.31188	1.65945	3.41712
+GO:0016612: [CC] molybdenum-iron nitrogenase complex	0.487466	1.22402	0.7655	1.98886	0.800924	1.18312
+GO:0016612: [CC] molybdenum-iron nitrogenase complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.487466	1.22402	0.7655	1.98886	0.800924	1.18312
+GO:0016614: [MF] oxidoreductase activity, acting on CH-OH group of donors	50.5726	31.2073	25.4638	34.1845	36.3999	40.605
+GO:0016614: [MF] oxidoreductase activity, acting on CH-OH group of donors|g__Clostridium.s__Clostridium_thermocellum	0.590661	6.23938	6.73266	15.5823	17.5142	24.8387
+GO:0016614: [MF] oxidoreductase activity, acting on CH-OH group of donors|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	49.4772	24.604	18.3525	18.578	18.8433	15.6221
+GO:0016614: [MF] oxidoreductase activity, acting on CH-OH group of donors|g__Escherichia.s__Escherichia_coli	0.410034	0	0.246732	0	0	0.0495755
+GO:0016614: [MF] oxidoreductase activity, acting on CH-OH group of donors|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0946886	0.363914	0.131891	0.0242484	0.042299	0.0945589
+GO:0016616: [MF] oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor	127.06	257.394	188.293	518.415	487.706	381.468
+GO:0016616: [MF] oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor|g__Clostridium.s__Clostridium_thermocellum	12.3699	143.819	94.7709	392.804	338.032	274.143
+GO:0016616: [MF] oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	111.98	113.11	90.9395	125.413	149.457	106.639
+GO:0016616: [MF] oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor|g__Escherichia.s__Escherichia_coli	2.46764	0	2.04233	0	0	0.170588
+GO:0016616: [MF] oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.242554	0.465803	0.540013	0.198563	0.216508	0.516129
+GO:0016620: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor	0.0302342	0	0.112225	0	0	0
+GO:0016620: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor|g__Escherichia.s__Escherichia_coli	0.0302342	0	0.112225	0	0	0
+GO:0016624: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor	160.445	10.9993	20.7678	5.23805	5.2151	4.77089
+GO:0016624: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	160.445	10.9993	20.7678	5.23805	5.2151	4.77089
+GO:0016625: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors, iron-sulfur protein as acceptor	445.336	222.067	294.933	276.6	280.777	281.721
+GO:0016625: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors, iron-sulfur protein as acceptor|g__Clostridium.s__Clostridium_thermocellum	5.21115	122.998	88.8388	212.784	207.427	225.863
+GO:0016625: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors, iron-sulfur protein as acceptor|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	440.06	99.0689	205.948	63.8164	73.35	55.8581
+GO:0016625: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors, iron-sulfur protein as acceptor|g__Escherichia.s__Escherichia_coli	0.0653293	0	0.146596	0	0	0
+GO:0016627: [MF] oxidoreductase activity, acting on the CH-CH group of donors	0.0368206	0	0	0	0	0
+GO:0016627: [MF] oxidoreductase activity, acting on the CH-CH group of donors|g__Escherichia.s__Escherichia_coli	0.0368206	0	0	0	0	0
+GO:0016628: [MF] oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor	0.937772	3.08653	2.41955	11.0282	7.57577	7.39054
+GO:0016628: [MF] oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor|g__Clostridium.s__Clostridium_thermocellum	0.352822	1.59544	1.4264	9.34948	6.41586	5.38808
+GO:0016628: [MF] oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor|g__Escherichia.s__Escherichia_coli	0.130999	0	0.0405055	0	0	0
+GO:0016628: [MF] oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.453951	1.49108	0.952646	1.67878	1.15991	2.00246
+GO:0016639: [MF] oxidoreductase activity, acting on the CH-NH2 group of donors, NAD or NADP as acceptor	0.179704	0.425617	0.388095	0.100799	0.109795	0.294898
+GO:0016639: [MF] oxidoreductase activity, acting on the CH-NH2 group of donors, NAD or NADP as acceptor|g__Escherichia.s__Escherichia_coli	0.0566527	0	0.113894	0	0	0
+GO:0016639: [MF] oxidoreductase activity, acting on the CH-NH2 group of donors, NAD or NADP as acceptor|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.123051	0.425617	0.274202	0.100799	0.109795	0.294898
+GO:0016645: [MF] oxidoreductase activity, acting on the CH-NH group of donors	0.335372	0.166391	0.522873	0.201	0.2735	0.238855
+GO:0016645: [MF] oxidoreductase activity, acting on the CH-NH group of donors|g__Escherichia.s__Escherichia_coli	0.0261755	0	0	0	0	0
+GO:0016645: [MF] oxidoreductase activity, acting on the CH-NH group of donors|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.309196	0.166391	0.522873	0.201	0.2735	0.238855
+GO:0016651: [MF] oxidoreductase activity, acting on NAD(P)H	112.445	82.7121	86.0745	124.867	120.885	68.0534
+GO:0016651: [MF] oxidoreductase activity, acting on NAD(P)H|g__Clostridium.s__Clostridium_thermocellum	0.783927	6.16806	3.72998	19.1628	18.519	16.1259
+GO:0016651: [MF] oxidoreductase activity, acting on NAD(P)H|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	111.537	75.7659	81.9169	105.601	102.045	51.835
+GO:0016651: [MF] oxidoreductase activity, acting on NAD(P)H|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.123683	0.778142	0.427653	0.10331	0.320248	0.0924892
+GO:0016652: [MF] oxidoreductase activity, acting on NAD(P)H, NAD(P) as acceptor	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0016652: [MF] oxidoreductase activity, acting on NAD(P)H, NAD(P) as acceptor|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0016655: [MF] oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor	0	0	0	0	0	0.156229
+GO:0016655: [MF] oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.156229
+GO:0016661: [MF] oxidoreductase activity, acting on other nitrogenous compounds as donors	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0016661: [MF] oxidoreductase activity, acting on other nitrogenous compounds as donors|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0016667: [MF] oxidoreductase activity, acting on a sulfur group of donors	0.0564826	0	0	0	0	0
+GO:0016667: [MF] oxidoreductase activity, acting on a sulfur group of donors|g__Escherichia.s__Escherichia_coli	0.0564826	0	0	0	0	0
+GO:0016668: [MF] oxidoreductase activity, acting on a sulfur group of donors, NAD(P) as acceptor	0.0206584	0	0	0	0	0
+GO:0016668: [MF] oxidoreductase activity, acting on a sulfur group of donors, NAD(P) as acceptor|g__Escherichia.s__Escherichia_coli	0.0206584	0	0	0	0	0
+GO:0016671: [MF] oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor	0.0685131	0	0	0	0	0
+GO:0016671: [MF] oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor|g__Escherichia.s__Escherichia_coli	0.0685131	0	0	0	0	0
+GO:0016682: [MF] oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor	0.0920638	0	0.0646374	0	0	0.023187
+GO:0016682: [MF] oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor|g__Escherichia.s__Escherichia_coli	0.0920638	0	0.0646374	0	0	0.023187
+GO:0016692: [MF] NADH peroxidase activity	56.6641	72.7031	100.891	75.3205	108.043	91.2171
+GO:0016692: [MF] NADH peroxidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	56.6641	72.7031	100.891	75.3205	108.043	91.2171
+GO:0016705: [MF] oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen	6.27951	1.48707	6.3337	6.22444	5.29137	12.8244
+GO:0016705: [MF] oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen|g__Escherichia.s__Escherichia_coli	0.0551702	0	0	0	0	0
+GO:0016705: [MF] oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	6.22434	1.48707	6.3337	6.22444	5.29137	12.8244
+GO:0016706: [MF] oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors	0.0500177	0	0	0	0	0
+GO:0016706: [MF] oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors|g__Escherichia.s__Escherichia_coli	0.0500177	0	0	0	0	0
+GO:0016708: [MF] oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of two atoms of oxygen into one donor	0.0498476	0	0	0	0	0
+GO:0016708: [MF] oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of two atoms of oxygen into one donor|g__Escherichia.s__Escherichia_coli	0.0498476	0	0	0	0	0
+GO:0016722: [MF] oxidoreductase activity, oxidizing metal ions	0.068659	0	0	0	0	0
+GO:0016722: [MF] oxidoreductase activity, oxidizing metal ions|g__Escherichia.s__Escherichia_coli	0.068659	0	0	0	0	0
+GO:0016726: [MF] oxidoreductase activity, acting on CH or CH2 groups, NAD or NADP as acceptor	4.49934	10.4549	9.30097	23.4627	26.5046	34.5337
+GO:0016726: [MF] oxidoreductase activity, acting on CH or CH2 groups, NAD or NADP as acceptor|g__Clostridium.s__Clostridium_thermocellum	4.06544	9.76006	8.49578	22.5395	26.214	33.86
+GO:0016726: [MF] oxidoreductase activity, acting on CH or CH2 groups, NAD or NADP as acceptor|g__Escherichia.s__Escherichia_coli	0.0723289	0	0	0	0	0
+GO:0016726: [MF] oxidoreductase activity, acting on CH or CH2 groups, NAD or NADP as acceptor|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.361571	0.694877	0.805193	0.923204	0.290624	0.673651
+GO:0016730: [MF] oxidoreductase activity, acting on iron-sulfur proteins as donors	0	0.610117	0.416738	0.650205	0.283701	0.422055
+GO:0016730: [MF] oxidoreductase activity, acting on iron-sulfur proteins as donors|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.610117	0.416738	0.650205	0.283701	0.422055
+GO:0016740: [MF] transferase activity	1431.28	1149.87	1138.52	1593.6	1558.42	1505.15
+GO:0016740: [MF] transferase activity|g__Clostridium.s__Clostridium_thermocellum	48.9152	387.626	291.329	984.594	869.141	909.554
+GO:0016740: [MF] transferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1378.86	757.897	842.507	602.021	687.286	590.54
+GO:0016740: [MF] transferase activity|g__Escherichia.s__Escherichia_coli	1.42774	0	0.600772	0	0	0.310518
+GO:0016740: [MF] transferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.08045	4.35082	4.08415	6.98756	1.99817	4.74661
+GO:0016741: [MF] transferase activity, transferring one-carbon groups	0.0964628	0	0	0	0	0
+GO:0016741: [MF] transferase activity, transferring one-carbon groups|g__Escherichia.s__Escherichia_coli	0.0964628	0	0	0	0	0
+GO:0016742: [MF] hydroxymethyl-, formyl- and related transferase activity	0.0265157	0	0.049211	0	0	0
+GO:0016742: [MF] hydroxymethyl-, formyl- and related transferase activity|g__Escherichia.s__Escherichia_coli	0.0265157	0	0.049211	0	0	0
+GO:0016743: [MF] carboxyl- or carbamoyltransferase activity	6.11293	12.0109	6.4719	16.6064	14.7058	16.8578
+GO:0016743: [MF] carboxyl- or carbamoyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.241607	3.27014	1.08914	9.48984	7.39755	8.80261
+GO:0016743: [MF] carboxyl- or carbamoyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.79985	8.39756	4.91912	6.8849	7.22312	7.9444
+GO:0016743: [MF] carboxyl- or carbamoyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0214706	0	0	0
+GO:0016743: [MF] carboxyl- or carbamoyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0714782	0.343191	0.442223	0.231615	0.0850971	0.110825
+GO:0016744: [MF] transferase activity, transferring aldehyde or ketonic groups	0.149324	0.501741	0.346552	0.076401	0.266447	0.347061
+GO:0016744: [MF] transferase activity, transferring aldehyde or ketonic groups|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.149324	0.501741	0.346552	0.076401	0.266447	0.347061
+GO:0016746: [MF] transferase activity, transferring acyl groups	46.2188	36.0857	33.998	51.2694	52.8752	49.5157
+GO:0016746: [MF] transferase activity, transferring acyl groups|g__Clostridium.s__Clostridium_thermocellum	1.00884	3.38855	2.91915	17.8118	14.5481	21.1241
+GO:0016746: [MF] transferase activity, transferring acyl groups|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	44.8414	32.6972	30.944	32.8257	38.1974	28.2954
+GO:0016746: [MF] transferase activity, transferring acyl groups|g__Escherichia.s__Escherichia_coli	0.368522	0	0	0	0	0.0961435
+GO:0016746: [MF] transferase activity, transferring acyl groups|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.134733	0.631801	0.129762	0
+GO:0016747: [MF] transferase activity, transferring acyl groups other than amino-acyl groups	89.5512	151.594	93.4149	313.882	287.66	201.393
+GO:0016747: [MF] transferase activity, transferring acyl groups other than amino-acyl groups|g__Clostridium.s__Clostridium_thermocellum	8.12898	55.4573	22.4483	204.23	158.909	103.123
+GO:0016747: [MF] transferase activity, transferring acyl groups other than amino-acyl groups|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	80.7218	94.8999	70.5393	108.616	128.233	96.9585
+GO:0016747: [MF] transferase activity, transferring acyl groups other than amino-acyl groups|g__Escherichia.s__Escherichia_coli	0.305794	0	0	0	0	0
+GO:0016747: [MF] transferase activity, transferring acyl groups other than amino-acyl groups|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.394625	1.23685	0.427383	1.03619	0.517636	1.3117
+GO:0016755: [MF] transferase activity, transferring amino-acyl groups	0.201408	2.10419	0.942452	5.19669	4.29486	4.19435
+GO:0016755: [MF] transferase activity, transferring amino-acyl groups|g__Clostridium.s__Clostridium_thermocellum	0.187093	2.10419	0.942452	5.19669	4.29486	4.19435
+GO:0016755: [MF] transferase activity, transferring amino-acyl groups|g__Escherichia.s__Escherichia_coli	0.0143151	0	0	0	0	0
+GO:0016757: [MF] transferase activity, transferring glycosyl groups	48.1157	123.841	108.206	207.87	212.029	213.466
+GO:0016757: [MF] transferase activity, transferring glycosyl groups|g__Clostridium.s__Clostridium_thermocellum	8.12543	85.9673	76.0786	173.097	167.105	176.538
+GO:0016757: [MF] transferase activity, transferring glycosyl groups|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	38.861	37.6813	31.4745	33.9496	44.5723	36.2736
+GO:0016757: [MF] transferase activity, transferring glycosyl groups|g__Escherichia.s__Escherichia_coli	1.04247	0	0.476955	0	0	0.281833
+GO:0016757: [MF] transferase activity, transferring glycosyl groups|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0867898	0.192855	0.17596	0.823002	0.352586	0.372447
+GO:0016758: [MF] transferase activity, transferring hexosyl groups	25.6559	36.8606	28.4907	60.6222	61.4397	65.7839
+GO:0016758: [MF] transferase activity, transferring hexosyl groups|g__Clostridium.s__Clostridium_thermocellum	2.523	26.836	20.7677	45.9819	45.7431	48.9789
+GO:0016758: [MF] transferase activity, transferring hexosyl groups|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	23.0057	10.0247	7.60845	14.6403	15.6966	16.805
+GO:0016758: [MF] transferase activity, transferring hexosyl groups|g__Escherichia.s__Escherichia_coli	0.0411225	0	0.11448	0	0	0
+GO:0016758: [MF] transferase activity, transferring hexosyl groups|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0861093	0	0	0	0	0
+GO:0016760: [MF] cellulose synthase (UDP-forming) activity	0.0393726	0	0	0	0	0
+GO:0016760: [MF] cellulose synthase (UDP-forming) activity|g__Escherichia.s__Escherichia_coli	0.0393726	0	0	0	0	0
+GO:0016763: [MF] transferase activity, transferring pentosyl groups	3.13863	1.14346	1.749	0.728719	1.27641	0.422896
+GO:0016763: [MF] transferase activity, transferring pentosyl groups|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.93853	1.14346	1.69027	0.728719	1.27641	0.422896
+GO:0016763: [MF] transferase activity, transferring pentosyl groups|g__Escherichia.s__Escherichia_coli	0.200095	0	0.0586834	0	0	0
+GO:0016765: [MF] transferase activity, transferring alkyl or aryl (other than methyl) groups	7.03943	60.8742	54.7926	118.004	119.019	128.559
+GO:0016765: [MF] transferase activity, transferring alkyl or aryl (other than methyl) groups|g__Clostridium.s__Clostridium_thermocellum	5.18554	58.2138	51.3871	116.81	117.896	126.646
+GO:0016765: [MF] transferase activity, transferring alkyl or aryl (other than methyl) groups|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.46276	2.28943	2.91662	0.637297	0.99204	1.80244
+GO:0016765: [MF] transferase activity, transferring alkyl or aryl (other than methyl) groups|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.391125	0.370962	0.488908	0.55622	0.130803	0.110567
+GO:0016772: [MF] transferase activity, transferring phosphorus-containing groups	0	0.187441	0.287237	0	0	0.234489
+GO:0016772: [MF] transferase activity, transferring phosphorus-containing groups|g__Escherichia.s__Escherichia_coli	0	0	0.287237	0	0	0.103032
+GO:0016772: [MF] transferase activity, transferring phosphorus-containing groups|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.187441	0	0	0	0.131458
+GO:0016773: [MF] phosphotransferase activity, alcohol group as acceptor	14.0297	44.5877	37.5679	52.7354	53.3961	64.5291
+GO:0016773: [MF] phosphotransferase activity, alcohol group as acceptor|g__Clostridium.s__Clostridium_thermocellum	3.28428	20.1069	21.7966	37.1672	36.8788	48.0418
+GO:0016773: [MF] phosphotransferase activity, alcohol group as acceptor|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.1265	24.3598	14.7753	15.3747	16.4329	16.4033
+GO:0016773: [MF] phosphotransferase activity, alcohol group as acceptor|g__Escherichia.s__Escherichia_coli	0.618927	0	0.645201	0	0	0.0419435
+GO:0016773: [MF] phosphotransferase activity, alcohol group as acceptor|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.121071	0.350792	0.193539	0.084446	0.0419435
+GO:0016774: [MF] phosphotransferase activity, carboxyl group as acceptor	0.114132	0.120978	0.117006	0.61285	0	0.248783
+GO:0016774: [MF] phosphotransferase activity, carboxyl group as acceptor|g__Escherichia.s__Escherichia_coli	0.0195648	0	0	0	0	0.0390654
+GO:0016774: [MF] phosphotransferase activity, carboxyl group as acceptor|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0945671	0.120978	0.117006	0.61285	0	0.209718
+GO:0016775: [MF] phosphotransferase activity, nitrogenous group as acceptor	6.59697	103.14	172.408	53.3925	61.8042	46.4737
+GO:0016775: [MF] phosphotransferase activity, nitrogenous group as acceptor|g__Clostridium.s__Clostridium_thermocellum	6.59697	103.14	172.408	53.3925	61.8042	46.4737
+GO:0016776: [MF] phosphotransferase activity, phosphate group as acceptor	0.0975565	0	0	0	0	0
+GO:0016776: [MF] phosphotransferase activity, phosphate group as acceptor|g__Escherichia.s__Escherichia_coli	0.0975565	0	0	0	0	0
+GO:0016779: [MF] nucleotidyltransferase activity	122.501	250.55	213.123	459.621	435.155	463.134
+GO:0016779: [MF] nucleotidyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	14.4557	146.815	108.905	386.373	341.151	378.763
+GO:0016779: [MF] nucleotidyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	106.424	100.867	102.97	72.0581	93.4425	81.5766
+GO:0016779: [MF] nucleotidyltransferase activity|g__Escherichia.s__Escherichia_coli	0.160966	0	0.298739	0	0	0
+GO:0016779: [MF] nucleotidyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.45973	2.86805	0.948767	1.18951	0.561324	2.79457
+GO:0016780: [MF] phosphotransferase activity, for other substituted phosphate groups	0.28917	0.121071	0.59996	0.534235	0.431063	0.411124
+GO:0016780: [MF] phosphotransferase activity, for other substituted phosphate groups|g__Escherichia.s__Escherichia_coli	0.28917	0	0.14619	0	0	0
+GO:0016780: [MF] phosphotransferase activity, for other substituted phosphate groups|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.121071	0.45377	0.534235	0.431063	0.411124
+GO:0016783: [MF] sulfurtransferase activity	51.559	64.684	59.1457	104.14	95.2811	70.4174
+GO:0016783: [MF] sulfurtransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.79967	38.8015	41.6555	95.6325	84.0832	62.1276
+GO:0016783: [MF] sulfurtransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	47.4728	25.5698	16.3938	7.78537	10.9886	7.01621
+GO:0016783: [MF] sulfurtransferase activity|g__Escherichia.s__Escherichia_coli	0.205102	0	0	0	0	0
+GO:0016783: [MF] sulfurtransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0814186	0.312713	1.0964	0.722328	0.209238	1.2736
+GO:0016787: [MF] hydrolase activity	998.414	1469.39	1381.29	2586.6	2604.06	3003.78
+GO:0016787: [MF] hydrolase activity|g__Clostridium.s__Clostridium_thermocellum	160.454	821.53	712.615	2056.03	1971.88	2453.43
+GO:0016787: [MF] hydrolase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	834.065	641.316	665.284	526.99	629.442	544.747
+GO:0016787: [MF] hydrolase activity|g__Escherichia.s__Escherichia_coli	1.50445	0	0.276773	0	0	0.343051
+GO:0016787: [MF] hydrolase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.39004	6.54135	3.11978	3.57418	2.73298	5.25766
+GO:0016788: [MF] hydrolase activity, acting on ester bonds	43.333	130.82	151.136	257.244	258.192	293.836
+GO:0016788: [MF] hydrolase activity, acting on ester bonds|g__Clostridium.s__Clostridium_thermocellum	24.1927	112.856	133.745	239.459	240.616	272.626
+GO:0016788: [MF] hydrolase activity, acting on ester bonds|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.6673	15.5307	13.405	14.5746	16.6134	19.4505
+GO:0016788: [MF] hydrolase activity, acting on ester bonds|g__Escherichia.s__Escherichia_coli	0.359263	0	0.0618859	0	0	0
+GO:0016788: [MF] hydrolase activity, acting on ester bonds|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.11366	2.4331	3.92376	3.21026	0.962481	1.75975
+GO:0016790: [MF] thiolester hydrolase activity	1.01686	3.35602	5.04993	6.21626	8.14849	13.8948
+GO:0016790: [MF] thiolester hydrolase activity|g__Clostridium.s__Clostridium_thermocellum	0.635138	3.35602	4.71429	6.21626	8.14849	13.8948
+GO:0016790: [MF] thiolester hydrolase activity|g__Escherichia.s__Escherichia_coli	0.381719	0	0.335681	0	0	0
+GO:0016791: [MF] phosphatase activity	2.98315	10.1261	8.87138	22.7806	24.3596	18.8859
+GO:0016791: [MF] phosphatase activity|g__Clostridium.s__Clostridium_thermocellum	1.85348	10.1261	8.60101	22.7806	24.3596	18.8439
+GO:0016791: [MF] phosphatase activity|g__Escherichia.s__Escherichia_coli	1.12968	0	0.270367	0	0	0.0419435
+GO:0016795: [MF] phosphoric triester hydrolase activity	0.0461291	0	0.0378893	0	0	0
+GO:0016795: [MF] phosphoric triester hydrolase activity|g__Escherichia.s__Escherichia_coli	0.0461291	0	0.0378893	0	0	0
+GO:0016798: [MF] hydrolase activity, acting on glycosyl bonds	112.883	89.1165	78.4089	98.7041	125.597	140.844
+GO:0016798: [MF] hydrolase activity, acting on glycosyl bonds|g__Clostridium.s__Clostridium_thermocellum	13.361	27.8183	15.0313	55.0456	56.3294	81.1271
+GO:0016798: [MF] hydrolase activity, acting on glycosyl bonds|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	99.2343	61.2982	62.9423	43.6585	69.2681	59.5412
+GO:0016798: [MF] hydrolase activity, acting on glycosyl bonds|g__Escherichia.s__Escherichia_coli	0.288076	0	0.435367	0	0	0.175277
+GO:0016805: [MF] dipeptidase activity	18.2892	20.5591	13.7913	26.6542	23.1164	21.2198
+GO:0016805: [MF] dipeptidase activity|g__Clostridium.s__Clostridium_thermocellum	0.309172	1.84039	0.688639	4.58548	4.02984	5.22299
+GO:0016805: [MF] dipeptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.9339	18.7187	13.0648	22.0688	19.0866	15.9968
+GO:0016805: [MF] dipeptidase activity|g__Escherichia.s__Escherichia_coli	0.0461291	0	0.0378893	0	0	0
+GO:0016807: [MF] cysteine-type carboxypeptidase activity	0.0143151	0	0	0	0	0
+GO:0016807: [MF] cysteine-type carboxypeptidase activity|g__Escherichia.s__Escherichia_coli	0.0143151	0	0	0	0	0
+GO:0016810: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds	301.31	299.88	278.836	371.498	391.702	396.907
+GO:0016810: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds|g__Clostridium.s__Clostridium_thermocellum	41.9027	75.2149	73.5632	156.028	132.134	159.755
+GO:0016810: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	258.911	224.072	204.845	214.696	259.126	236.585
+GO:0016810: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds|g__Escherichia.s__Escherichia_coli	0.283312	0	0.29274	0	0	0.101221
+GO:0016810: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.212393	0.593082	0.134733	0.774232	0.441719	0.465971
+GO:0016811: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides	23.8251	6.46948	6.65377	6.49899	7.4956	6.15199
+GO:0016811: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	23.564	5.88078	5.84105	6.14106	7.45656	5.88991
+GO:0016811: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0872827
+GO:0016811: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.261074	0.588694	0.812726	0.357931	0.0390435	0.174792
+GO:0016812: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides	0.0786479	0	0	0	0	0
+GO:0016812: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides|g__Escherichia.s__Escherichia_coli	0.0786479	0	0	0	0	0
+GO:0016813: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines	31.334	20.0835	26.696	23.9334	29.1499	17.6021
+GO:0016813: [MF] hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	31.334	20.0835	26.696	23.9334	29.1499	17.6021
+GO:0016817: [MF] hydrolase activity, acting on acid anhydrides	0.123538	0	0	0	0	0
+GO:0016817: [MF] hydrolase activity, acting on acid anhydrides|g__Escherichia.s__Escherichia_coli	0.123538	0	0	0	0	0
+GO:0016818: [MF] hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides	0.127402	0	0	0	0	0.151831
+GO:0016818: [MF] hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides|g__Escherichia.s__Escherichia_coli	0.127402	0	0	0	0	0.151831
+GO:0016820: [MF] hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances	0.516534	0.104082	0.292921	0.744661	0.0469868	0.557296
+GO:0016820: [MF] hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances|g__Escherichia.s__Escherichia_coli	0.0180336	0	0	0	0	0
+GO:0016820: [MF] hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.498476	0.104082	0.292921	0.744661	0.0469868	0.557296
+GO:0016829: [MF] lyase activity	215.679	347.876	313.202	769.239	773.308	704.317
+GO:0016829: [MF] lyase activity|g__Clostridium.s__Clostridium_thermocellum	43.1951	251.02	228.725	643.928	620.508	599.84
+GO:0016829: [MF] lyase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	170.495	91.7257	80.737	122.151	151.113	102.012
+GO:0016829: [MF] lyase activity|g__Escherichia.s__Escherichia_coli	0.208626	0	0.0458281	0	0	0
+GO:0016829: [MF] lyase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.7801	5.12952	3.69335	3.16062	1.6869	2.46513
+GO:0016831: [MF] carboxy-lyase activity	0.286302	0.290917	0.321247	0.177324	0.0580336	0.0576602
+GO:0016831: [MF] carboxy-lyase activity|g__Escherichia.s__Escherichia_coli	0.113014	0	0	0	0	0
+GO:0016831: [MF] carboxy-lyase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.173288	0.290917	0.321247	0.177324	0.0580336	0.0576602
+GO:0016832: [MF] aldehyde-lyase activity	4.18625	33.5688	33.2177	51.4121	45.198	55.465
+GO:0016832: [MF] aldehyde-lyase activity|g__Clostridium.s__Clostridium_thermocellum	4.18625	33.5688	32.7505	51.4121	45.198	55.465
+GO:0016832: [MF] aldehyde-lyase activity|g__Escherichia.s__Escherichia_coli	0	0	0.467166	0	0	0
+GO:0016833: [MF] oxo-acid-lyase activity	0.0401017	0.121538	0.501086	0.19431	0.0565144	0.252599
+GO:0016833: [MF] oxo-acid-lyase activity|g__Escherichia.s__Escherichia_coli	0.0401017	0	0.148851	0	0	0
+GO:0016833: [MF] oxo-acid-lyase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.121538	0.352236	0.19431	0.0565144	0.252599
+GO:0016835: [MF] carbon-oxygen lyase activity	0.065062	0	0	0	0	0
+GO:0016835: [MF] carbon-oxygen lyase activity|g__Escherichia.s__Escherichia_coli	0.065062	0	0	0	0	0
+GO:0016836: [MF] hydro-lyase activity	28.0274	113.01	60.609	248.642	137.255	380.865
+GO:0016836: [MF] hydro-lyase activity|g__Clostridium.s__Clostridium_thermocellum	10.7124	94.1762	47.619	230.162	116.762	364.765
+GO:0016836: [MF] hydro-lyase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.5226	16.506	11.0525	16.5646	19.4523	14.2968
+GO:0016836: [MF] hydro-lyase activity|g__Escherichia.s__Escherichia_coli	0.14981	0	0	0	0	0
+GO:0016836: [MF] hydro-lyase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.642478	2.32827	1.93741	1.91555	1.04089	1.80335
+GO:0016837: [MF] carbon-oxygen lyase activity, acting on polysaccharides	0.55124	0	0	0	0	0.0656156
+GO:0016837: [MF] carbon-oxygen lyase activity, acting on polysaccharides|g__Escherichia.s__Escherichia_coli	0.55124	0	0	0	0	0.0656156
+GO:0016840: [MF] carbon-nitrogen lyase activity	3.04151	11.5857	11.1617	40.1001	36.3649	33.772
+GO:0016840: [MF] carbon-nitrogen lyase activity|g__Clostridium.s__Clostridium_thermocellum	2.86788	11.0986	10.9256	39.106	36.1662	33.0985
+GO:0016840: [MF] carbon-nitrogen lyase activity|g__Escherichia.s__Escherichia_coli	0.0464694	0	0	0	0	0.12389
+GO:0016840: [MF] carbon-nitrogen lyase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.127159	0.487086	0.236087	0.994084	0.198647	0.549632
+GO:0016851: [MF] magnesium chelatase activity	5.69072	20.9491	16.3345	41.9706	36.3545	57.0848
+GO:0016851: [MF] magnesium chelatase activity|g__Clostridium.s__Clostridium_thermocellum	2.23945	17.4025	12.2372	39.5776	34.6634	54.8841
+GO:0016851: [MF] magnesium chelatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.989807	1.17071	0.813673	1.09185	0.833826	0.786255
+GO:0016851: [MF] magnesium chelatase activity|g__Escherichia.s__Escherichia_coli	0.585874	0	0.528331	0	0	0.0471824
+GO:0016851: [MF] magnesium chelatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.87559	2.37592	2.75528	1.30118	0.85733	1.36729
+GO:0016852: [MF] sirohydrochlorin cobaltochelatase activity	0	0.196916	0.379841	0.419758	0.457866	1.36338
+GO:0016852: [MF] sirohydrochlorin cobaltochelatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.196916	0.379841	0.419758	0.457866	1.36338
+GO:0016853: [MF] isomerase activity	162.51	296.421	357.58	337.048	360.901	348.075
+GO:0016853: [MF] isomerase activity|g__Clostridium.s__Clostridium_thermocellum	13.9559	63.2049	53.7063	163.665	157.755	206.418
+GO:0016853: [MF] isomerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	145.812	229.964	301.385	169.261	201.171	138.079
+GO:0016853: [MF] isomerase activity|g__Escherichia.s__Escherichia_coli	0.324411	0	0.119802	0	0	0
+GO:0016853: [MF] isomerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.41757	3.25226	2.36899	4.12133	1.97479	3.57688
+GO:0016855: [MF] racemase and epimerase activity, acting on amino acids and derivatives	0.0595692	0	0	0	0	0
+GO:0016855: [MF] racemase and epimerase activity, acting on amino acids and derivatives|g__Escherichia.s__Escherichia_coli	0.0595692	0	0	0	0	0
+GO:0016857: [MF] racemase and epimerase activity, acting on carbohydrates and derivatives	6.1219	36.3442	27.3266	100.769	88.9785	89.8748
+GO:0016857: [MF] racemase and epimerase activity, acting on carbohydrates and derivatives|g__Clostridium.s__Clostridium_thermocellum	5.98225	36.2569	27.1105	100.723	88.9785	89.6585
+GO:0016857: [MF] racemase and epimerase activity, acting on carbohydrates and derivatives|g__Escherichia.s__Escherichia_coli	0.071381	0	0.0471361	0	0	0.0951734
+GO:0016857: [MF] racemase and epimerase activity, acting on carbohydrates and derivatives|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0682701	0.087373	0.168878	0.0465817	0	0.121109
+GO:0016861: [MF] intramolecular oxidoreductase activity, interconverting aldoses and ketoses	13.9383	8.82271	4.81488	8.87252	10.4749	8.15105
+GO:0016861: [MF] intramolecular oxidoreductase activity, interconverting aldoses and ketoses|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.6022	8.82271	4.81488	8.87252	10.4749	8.15105
+GO:0016861: [MF] intramolecular oxidoreductase activity, interconverting aldoses and ketoses|g__Escherichia.s__Escherichia_coli	0.336174	0	0	0	0	0
+GO:0016862: [MF] intramolecular oxidoreductase activity, interconverting keto- and enol-groups	3.3367	20.9109	5.65737	28.5364	43.3716	65.2845
+GO:0016862: [MF] intramolecular oxidoreductase activity, interconverting keto- and enol-groups|g__Clostridium.s__Clostridium_thermocellum	3.3367	20.9109	5.65737	28.5364	43.3716	65.2845
+GO:0016868: [MF] intramolecular transferase activity, phosphotransferases	23.8758	16.5116	9.65199	29.9251	31.5825	22.7957
+GO:0016868: [MF] intramolecular transferase activity, phosphotransferases|g__Clostridium.s__Clostridium_thermocellum	0.0630447	0.363214	0.234012	1.16099	0.787924	1.00658
+GO:0016868: [MF] intramolecular transferase activity, phosphotransferases|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	23.5838	15.8669	9.26421	28.7642	30.7572	21.7891
+GO:0016868: [MF] intramolecular transferase activity, phosphotransferases|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.228968	0.281535	0.153813	0	0.0373941	0
+GO:0016869: [MF] intramolecular transferase activity, transferring amino groups	0.027658	0	0	0	0	0
+GO:0016869: [MF] intramolecular transferase activity, transferring amino groups|g__Escherichia.s__Escherichia_coli	0.027658	0	0	0	0	0
+GO:0016872: [MF] intramolecular lyase activity	0.782007	1.13095	2.00534	0.404388	0.791896	0.524763
+GO:0016872: [MF] intramolecular lyase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.691985	1.13095	2.00534	0.404388	0.791896	0.524763
+GO:0016872: [MF] intramolecular lyase activity|g__Escherichia.s__Escherichia_coli	0.0900222	0	0	0	0	0
+GO:0016874: [MF] ligase activity	192.968	197.545	219.333	281.394	269.232	196.398
+GO:0016874: [MF] ligase activity|g__Clostridium.s__Clostridium_thermocellum	12.658	55.6299	42.6905	168.182	143.736	102.032
+GO:0016874: [MF] ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	179.082	140.979	174.861	112.425	124.84	93.3947
+GO:0016874: [MF] ligase activity|g__Escherichia.s__Escherichia_coli	0.549077	0	0.627565	0	0	0.119363
+GO:0016874: [MF] ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.678156	0.936366	1.15405	0.786344	0.654886	0.852453
+GO:0016878: [MF] acid-thiol ligase activity	0.069704	0	0.0642766	0	0	0
+GO:0016878: [MF] acid-thiol ligase activity|g__Escherichia.s__Escherichia_coli	0.069704	0	0.0642766	0	0	0
+GO:0016879: [MF] ligase activity, forming carbon-nitrogen bonds	8.56013	33.0802	22.2378	79.196	72.136	73.8471
+GO:0016879: [MF] ligase activity, forming carbon-nitrogen bonds|g__Clostridium.s__Clostridium_thermocellum	3.23407	21.9685	15.6691	74.2925	67.1286	68.034
+GO:0016879: [MF] ligase activity, forming carbon-nitrogen bonds|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.9417	9.21365	4.19593	3.90655	4.23014	3.57849
+GO:0016879: [MF] ligase activity, forming carbon-nitrogen bonds|g__Escherichia.s__Escherichia_coli	0.178051	0	0.0787106	0	0	0
+GO:0016879: [MF] ligase activity, forming carbon-nitrogen bonds|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.20631	1.89798	2.29411	0.996993	0.777333	2.23452
+GO:0016881: [MF] acid-amino acid ligase activity	1.61858	8.27644	7.79537	23.5333	21.6319	23.9263
+GO:0016881: [MF] acid-amino acid ligase activity|g__Clostridium.s__Clostridium_thermocellum	1.57886	8.27644	7.72167	23.5333	21.6319	23.9263
+GO:0016881: [MF] acid-amino acid ligase activity|g__Escherichia.s__Escherichia_coli	0.0397128	0	0.0737038	0	0	0
+GO:0016884: [MF] carbon-nitrogen ligase activity, with glutamine as amido-N-donor	81.9279	515.531	283.671	1246.55	1075.61	1162.66
+GO:0016884: [MF] carbon-nitrogen ligase activity, with glutamine as amido-N-donor|g__Clostridium.s__Clostridium_thermocellum	69.1656	494.745	265.457	1228.89	1051.44	1149.61
+GO:0016884: [MF] carbon-nitrogen ligase activity, with glutamine as amido-N-donor|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	12.7622	20.7861	18.2133	17.6636	24.1738	13.057
+GO:0016887: [MF] ATPase activity	1238.08	1327.36	1300.99	2440.02	2193.85	2076.13
+GO:0016887: [MF] ATPase activity|g__Clostridium.s__Clostridium_thermocellum	120.268	683.451	505.781	1920.06	1561.26	1613.93
+GO:0016887: [MF] ATPase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1114.05	637.734	789.1	515.807	630.094	456.637
+GO:0016887: [MF] ATPase activity|g__Escherichia.s__Escherichia_coli	1.60183	0	0.975019	0	0	0.786352
+GO:0016887: [MF] ATPase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.15995	6.1794	5.13297	4.15229	2.49748	4.77539
+GO:0016888: [MF] endodeoxyribonuclease activity, producing 5'-phosphomonoesters	26.4127	20.988	18.4815	46.0516	41.0375	29.6912
+GO:0016888: [MF] endodeoxyribonuclease activity, producing 5'-phosphomonoesters|g__Clostridium.s__Clostridium_thermocellum	1.72782	10.1905	6.13095	35.7433	29.6849	20.023
+GO:0016888: [MF] endodeoxyribonuclease activity, producing 5'-phosphomonoesters|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	23.7802	10.2669	11.4827	9.10722	10.74	9.14537
+GO:0016888: [MF] endodeoxyribonuclease activity, producing 5'-phosphomonoesters|g__Escherichia.s__Escherichia_coli	0.0768008	0	0.142536	0	0	0
+GO:0016888: [MF] endodeoxyribonuclease activity, producing 5'-phosphomonoesters|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.827796	0.530586	0.72531	1.20108	0.612565	0.522758
+GO:0016901: [MF] oxidoreductase activity, acting on the CH-OH group of donors, quinone or similar compound as acceptor	0.0155303	0	0	0	0	0
+GO:0016901: [MF] oxidoreductase activity, acting on the CH-OH group of donors, quinone or similar compound as acceptor|g__Escherichia.s__Escherichia_coli	0.0155303	0	0	0	0	0
+GO:0016903: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors	29.5536	61.9239	43.7609	166.456	134.099	114.344
+GO:0016903: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors|g__Clostridium.s__Clostridium_thermocellum	12.8185	56.9574	36.3573	162.379	129.516	111.612
+GO:0016903: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.4209	4.47964	7.20398	4.03809	4.54913	2.72074
+GO:0016903: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors|g__Escherichia.s__Escherichia_coli	0.0258109	0	0	0	0	0.0119007
+GO:0016903: [MF] oxidoreductase activity, acting on the aldehyde or oxo group of donors|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.288392	0.486852	0.199596	0.0387477	0.0336829	0
+GO:0016920: [MF] pyroglutamyl-peptidase activity	40.8456	71.071	59.7194	78.6609	88.171	67.0996
+GO:0016920: [MF] pyroglutamyl-peptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	40.8456	71.071	59.7194	78.6609	88.171	67.0996
+GO:0016966: [MF] nitric oxide reductase activity	0.0447681	0	0.124584	0	0	0
+GO:0016966: [MF] nitric oxide reductase activity|g__Escherichia.s__Escherichia_coli	0.0447681	0	0.124584	0	0	0
+GO:0016985: [MF] mannan endo-1,4-beta-mannosidase activity	41.2293	46.4253	52.9957	128.966	117.098	135.834
+GO:0016985: [MF] mannan endo-1,4-beta-mannosidase activity|g__Clostridium.s__Clostridium_thermocellum	41.2293	46.4253	52.9957	128.966	117.098	135.834
+GO:0016987: [MF] sigma factor activity	235.297	462.444	388.982	1021.57	991.807	1065.32
+GO:0016987: [MF] sigma factor activity|g__Clostridium.s__Clostridium_thermocellum	64.1625	339.573	262.041	939.367	878.372	972.412
+GO:0016987: [MF] sigma factor activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	170.255	122.214	124.81	81.1139	113.434	92.5824
+GO:0016987: [MF] sigma factor activity|g__Escherichia.s__Escherichia_coli	0.536974	0	0.215338	0	0	0.0917454
+GO:0016987: [MF] sigma factor activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.342298	0.657351	1.91549	1.08847	0	0.231191
+GO:0016989: [MF] sigma factor antagonist activity	0.0604685	1.24413	1.65441	4.88044	4.12021	4.4064
+GO:0016989: [MF] sigma factor antagonist activity|g__Clostridium.s__Clostridium_thermocellum	0	1.24413	1.65441	4.88044	4.12021	4.4064
+GO:0016989: [MF] sigma factor antagonist activity|g__Escherichia.s__Escherichia_coli	0.0604685	0	0	0	0	0
+GO:0016992: [MF] lipoate synthase activity	33.1878	42.7352	36.02	30.6123	37.2339	39.0065
+GO:0016992: [MF] lipoate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	33.0985	42.7352	36.02	30.6123	37.2339	39.0065
+GO:0016992: [MF] lipoate synthase activity|g__Escherichia.s__Escherichia_coli	0.0893174	0	0	0	0	0
+GO:0016993: [MF] precorrin-8X methylmutase activity	0.206512	0	0.0957608	0.158398	0.276473	0.0686555
+GO:0016993: [MF] precorrin-8X methylmutase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.206512	0	0.0957608	0.158398	0.276473	0.0686555
+GO:0016994: [MF] precorrin-6A reductase activity	0	0	0.35634	0.393172	0.171605	0.340787
+GO:0016994: [MF] precorrin-6A reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.35634	0.393172	0.171605	0.340787
+GO:0016998: [BP] cell wall macromolecule catabolic process	0.439126	0	0	0	0	0.0966933
+GO:0016998: [BP] cell wall macromolecule catabolic process|g__Escherichia.s__Escherichia_coli	0.439126	0	0	0	0	0.0966933
+GO:0017001: [BP] antibiotic catabolic process	0.073617	0	0	0	0	0
+GO:0017001: [BP] antibiotic catabolic process|g__Escherichia.s__Escherichia_coli	0.073617	0	0	0	0	0
+GO:0017004: [BP] cytochrome complex assembly	8.20043	83.5873	68.034	138.875	101.532	229.216
+GO:0017004: [BP] cytochrome complex assembly|g__Clostridium.s__Clostridium_thermocellum	7.81876	83.5873	67.8413	138.875	101.384	229.216
+GO:0017004: [BP] cytochrome complex assembly|g__Escherichia.s__Escherichia_coli	0.381671	0	0.192785	0	0	0
+GO:0017004: [BP] cytochrome complex assembly|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0	0.147645	0
+GO:0017013: [BP] protein flavinylation	0.670865	14.7097	11.1055	32.1483	25.356	47.2252
+GO:0017013: [BP] protein flavinylation|g__Clostridium.s__Clostridium_thermocellum	0.670865	14.7097	11.1055	32.1483	25.356	47.2252
+GO:0017038: [BP] protein import	23.8563	23.491	36.2436	37.2525	40.2542	29.3329
+GO:0017038: [BP] protein import|g__Clostridium.s__Clostridium_thermocellum	1.53359	8.4545	6.70407	23.1515	21.6566	17.3492
+GO:0017038: [BP] protein import|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.2381	15.0365	29.4212	14.101	18.5976	11.9837
+GO:0017038: [BP] protein import|g__Escherichia.s__Escherichia_coli	0.0846267	0	0.118404	0	0	0
+GO:0017057: [MF] 6-phosphogluconolactonase activity	0	0	0.0532706	0	0	0
+GO:0017057: [MF] 6-phosphogluconolactonase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0532706	0	0	0
+GO:0017061: [MF] S-methyl-5-thioadenosine phosphorylase activity	56.8616	52.7732	51.6302	90.3719	87.092	80.0514
+GO:0017061: [MF] S-methyl-5-thioadenosine phosphorylase activity|g__Clostridium.s__Clostridium_thermocellum	3.18101	9.1625	8.16429	42.2096	39.3841	31.042
+GO:0017061: [MF] S-methyl-5-thioadenosine phosphorylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	53.6806	43.6106	43.2065	48.0188	47.6454	48.9161
+GO:0017061: [MF] S-methyl-5-thioadenosine phosphorylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.259407	0.14355	0.062461	0.09333
+GO:0017103: [MF] UTP:galactose-1-phosphate uridylyltransferase activity	9.59595	13.7924	5.45755	15.3531	18.278	12.0259
+GO:0017103: [MF] UTP:galactose-1-phosphate uridylyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.59595	13.7924	5.45755	15.3531	18.278	12.0259
+GO:0017108: [MF] 5'-flap endonuclease activity	0.335566	0	0.32251	0.475343	0.103718	0.0772576
+GO:0017108: [MF] 5'-flap endonuclease activity|g__Escherichia.s__Escherichia_coli	0.103438	0	0	0	0	0
+GO:0017108: [MF] 5'-flap endonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.232128	0	0.32251	0.475343	0.103718	0.0772576
+GO:0017111: [MF] nucleoside-triphosphatase activity	44.9633	107.896	98.1461	120.129	134.008	132.293
+GO:0017111: [MF] nucleoside-triphosphatase activity|g__Clostridium.s__Clostridium_thermocellum	4.42378	27.4467	20.7349	59.5457	61.5965	71.5612
+GO:0017111: [MF] nucleoside-triphosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.9694	79.6803	76.3232	58.9659	71.4159	58.7156
+GO:0017111: [MF] nucleoside-triphosphatase activity|g__Escherichia.s__Escherichia_coli	0.0136346	0	0	0	0	0
+GO:0017111: [MF] nucleoside-triphosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.556563	0.768948	1.08797	1.61763	0.995513	2.01636
+GO:0017116: [MF] single-stranded DNA-dependent ATP-dependent DNA helicase activity	0.110802	0	0	0	0	0.0384186
+GO:0017116: [MF] single-stranded DNA-dependent ATP-dependent DNA helicase activity|g__Escherichia.s__Escherichia_coli	0.110802	0	0	0	0	0.0384186
+GO:0017117: [CC] single-stranded DNA-dependent ATP-dependent DNA helicase complex	0.086644	0	0	0	0	0.0384186
+GO:0017117: [CC] single-stranded DNA-dependent ATP-dependent DNA helicase complex|g__Escherichia.s__Escherichia_coli	0.086644	0	0	0	0	0.0384186
+GO:0017148: [BP] negative regulation of translation	7.01082	25.0691	19.2406	52.9358	50.1984	76.4403
+GO:0017148: [BP] negative regulation of translation|g__Clostridium.s__Clostridium_thermocellum	1.39243	22.0746	15.9619	51.3402	47.5091	73.1241
+GO:0017148: [BP] negative regulation of translation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.65391	2.99453	3.27865	1.59564	2.6893	3.31622
+GO:0017148: [BP] negative regulation of translation|g__Escherichia.s__Escherichia_coli	0.964482	0	0	0	0	0
+GO:0017150: [MF] tRNA dihydrouridine synthase activity	10.0255	48.933	61.0745	85.0827	94.8384	114.182
+GO:0017150: [MF] tRNA dihydrouridine synthase activity|g__Clostridium.s__Clostridium_thermocellum	9.76146	48.7718	59.4041	84.9538	94.6885	113.978
+GO:0017150: [MF] tRNA dihydrouridine synthase activity|g__Escherichia.s__Escherichia_coli	0.137853	0	0.42418	0	0	0.0364136
+GO:0017150: [MF] tRNA dihydrouridine synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.126211	0.161211	1.24633	0.128852	0.149924	0.167548
+GO:0017153: [MF] sodium:dicarboxylate symporter activity	0.170153	0	0.0387464	0	0	0
+GO:0017153: [MF] sodium:dicarboxylate symporter activity|g__Escherichia.s__Escherichia_coli	0.170153	0	0.0387464	0	0	0
+GO:0017183: [BP] peptidyl-diphthamide biosynthetic process from peptidyl-histidine	0	0	0.139875	0	0	0.200404
+GO:0017183: [BP] peptidyl-diphthamide biosynthetic process from peptidyl-histidine|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.139875	0	0	0.200404
+GO:0018106: [BP] peptidyl-histidine phosphorylation	0.417033	0	0.500184	0	0	0.103032
+GO:0018106: [BP] peptidyl-histidine phosphorylation|g__Escherichia.s__Escherichia_coli	0.417033	0	0.500184	0	0	0.103032
+GO:0018160: [BP] peptidyl-pyrromethane cofactor linkage	0.294711	3.26552	4.38637	6.47436	5.09181	5.94657
+GO:0018160: [BP] peptidyl-pyrromethane cofactor linkage|g__Clostridium.s__Clostridium_thermocellum	0.233319	3.13586	4.32944	6.23263	4.85062	5.67706
+GO:0018160: [BP] peptidyl-pyrromethane cofactor linkage|g__Escherichia.s__Escherichia_coli	0.0613677	0	0.0569693	0	0	0
+GO:0018160: [BP] peptidyl-pyrromethane cofactor linkage|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.129659	0	0.241738	0.241185	0.26948
+GO:0018298: [BP] protein-chromophore linkage	0.311699	0.196403	0.151828	0	0.0730737	0.0304632
+GO:0018298: [BP] protein-chromophore linkage|g__Escherichia.s__Escherichia_coli	0.0457645	0	0	0	0	0.0304632
+GO:0018298: [BP] protein-chromophore linkage|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.265935	0.196403	0.151828	0	0.0730737	0
+GO:0018307: [BP] enzyme active site formation	0.0764362	0.299178	0.290079	0.637695	0.418042	0.414617
+GO:0018307: [BP] enzyme active site formation|g__Clostridium.s__Clostridium_thermocellum	0.0764362	0.299178	0.290079	0.637695	0.418042	0.414617
+GO:0018339: [BP] peptidyl-L-beta-methylthioaspartic acid biosynthetic process from peptidyl-aspartic acid	1.58093	13.9746	12.425	28.6716	24.4524	24.9415
+GO:0018339: [BP] peptidyl-L-beta-methylthioaspartic acid biosynthetic process from peptidyl-aspartic acid|g__Clostridium.s__Clostridium_thermocellum	1.48308	13.9746	12.425	28.6716	24.4524	24.9415
+GO:0018339: [BP] peptidyl-L-beta-methylthioaspartic acid biosynthetic process from peptidyl-aspartic acid|g__Escherichia.s__Escherichia_coli	0.0978481	0	0	0	0	0
+GO:0018364: [BP] peptidyl-glutamine methylation	1.75908	8.97286	6.41728	11.9222	13.9485	13.8792
+GO:0018364: [BP] peptidyl-glutamine methylation|g__Clostridium.s__Clostridium_thermocellum	1.69703	8.97286	6.41728	11.9222	13.9485	13.8792
+GO:0018364: [BP] peptidyl-glutamine methylation|g__Escherichia.s__Escherichia_coli	0.0620482	0	0	0	0	0
+GO:0018378: [BP] cytochrome c-heme linkage via heme-L-cysteine	0.0655237	0	0.100903	0	0	0
+GO:0018378: [BP] cytochrome c-heme linkage via heme-L-cysteine|g__Escherichia.s__Escherichia_coli	0.0655237	0	0.100903	0	0	0
+GO:0018455: [MF] alcohol dehydrogenase [NAD(P)+] activity	0.0479276	0	0	0	0	0
+GO:0018455: [MF] alcohol dehydrogenase [NAD(P)+] activity|g__Escherichia.s__Escherichia_coli	0.0479276	0	0	0	0	0
+GO:0018492: [MF] carbon-monoxide dehydrogenase (acceptor) activity	0.2139	31.3103	29.1451	43.6714	37.8473	33.6393
+GO:0018492: [MF] carbon-monoxide dehydrogenase (acceptor) activity|g__Clostridium.s__Clostridium_thermocellum	0.130416	31.3103	29.1451	43.3765	37.6878	33.5279
+GO:0018492: [MF] carbon-monoxide dehydrogenase (acceptor) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0834844	0	0	0.294885	0.159451	0.11144
+GO:0018493: [MF] formylmethanofuran dehydrogenase activity	1.53774	3.50888	3.31902	2.70077	1.62173	2.40061
+GO:0018493: [MF] formylmethanofuran dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.53774	3.50888	3.31902	2.70077	1.62173	2.40061
+GO:0018537: [MF] coenzyme F420-dependent N5,N10-methenyltetrahydromethanopterin reductase activity	7.03269	3.21927	8.41721	8.43702	7.34774	17.9235
+GO:0018537: [MF] coenzyme F420-dependent N5,N10-methenyltetrahydromethanopterin reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	7.03269	3.21927	8.41721	8.43702	7.34774	17.9235
+GO:0018580: [MF] nitronate monooxygenase activity	90.8081	8.77324	9.87973	39.3985	47.2665	24.2261
+GO:0018580: [MF] nitronate monooxygenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	90.8081	8.77324	9.87973	39.3985	47.2665	24.2261
+GO:0018697: [MF] carbonyl sulfide nitrogenase activity	0.545869	1.22402	0.7655	2.14768	0.836213	1.36341
+GO:0018697: [MF] carbonyl sulfide nitrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.545869	1.22402	0.7655	2.14768	0.836213	1.36341
+GO:0018738: [MF] S-formylglutathione hydrolase activity	0.0710651	0	0	0	0	0
+GO:0018738: [MF] S-formylglutathione hydrolase activity|g__Escherichia.s__Escherichia_coli	0.0710651	0	0	0	0	0
+GO:0018741: [MF] alkyl sulfatase activity	0.0264671	0	0	0	0	0
+GO:0018741: [MF] alkyl sulfatase activity|g__Escherichia.s__Escherichia_coli	0.0264671	0	0	0	0	0
+GO:0018759: [MF] methenyltetrahydromethanopterin cyclohydrolase activity	0.209234	0.459268	0.166442	0.428189	0.160406	0.874961
+GO:0018759: [MF] methenyltetrahydromethanopterin cyclohydrolase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.209234	0.459268	0.166442	0.428189	0.160406	0.874961
+GO:0018801: [MF] glutaconyl-CoA decarboxylase activity	21.7383	13.8552	10.5367	15.8808	17.9128	16.441
+GO:0018801: [MF] glutaconyl-CoA decarboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.7383	13.8552	10.5367	15.8808	17.9128	16.441
+GO:0018937: [BP] nitroglycerin metabolic process	0.165389	0	0	0	0	0
+GO:0018937: [BP] nitroglycerin metabolic process|g__Escherichia.s__Escherichia_coli	0.165389	0	0	0	0	0
+GO:0019003: [MF] GDP binding	0.0286545	0	0	0	0	0
+GO:0019003: [MF] GDP binding|g__Escherichia.s__Escherichia_coli	0.0286545	0	0	0	0	0
+GO:0019008: [CC] molybdopterin synthase complex	95.3723	26.5344	26.9125	16.5919	22.7354	16.0923
+GO:0019008: [CC] molybdopterin synthase complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	95.0111	26.1848	26.6875	16.0023	22.5185	15.4066
+GO:0019008: [CC] molybdopterin synthase complex|g__Escherichia.s__Escherichia_coli	0.057868	0	0	0	0	0
+GO:0019008: [CC] molybdopterin synthase complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.303388	0.349632	0.225036	0.589571	0.216899	0.685681
+GO:0019013: [CC] viral nucleocapsid	0	1.72865	0	0.46057	0.803811	0
+GO:0019013: [CC] viral nucleocapsid|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	1.72865	0	0.46057	0.803811	0
+GO:0019028: [CC] viral capsid	26.2692	10.7828	26.2112	22.6243	19.5732	41.1097
+GO:0019028: [CC] viral capsid|g__Clostridium.s__Clostridium_thermocellum	11.1081	10.7828	9.06493	22.6243	19.5732	24.1113
+GO:0019028: [CC] viral capsid|g__Escherichia.s__Escherichia_coli	15.1611	0	17.1463	0	0	16.9985
+GO:0019038: [CC] provirus	0	0	0	0	0	1.02663
+GO:0019038: [CC] provirus|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	1.02663
+GO:0019073: [BP] viral DNA genome packaging	20.3105	0	23.4071	0	0	18.4157
+GO:0019073: [BP] viral DNA genome packaging|g__Escherichia.s__Escherichia_coli	20.3105	0	23.4071	0	0	18.4157
+GO:0019076: [BP] viral release from host cell	0.209817	0	0.588457	0	0	0.0758994
+GO:0019076: [BP] viral release from host cell|g__Escherichia.s__Escherichia_coli	0.209817	0	0.588457	0	0	0.0758994
+GO:0019104: [MF] DNA N-glycosylase activity	31.4191	48.7669	53.0236	107.603	108.132	171.073
+GO:0019104: [MF] DNA N-glycosylase activity|g__Clostridium.s__Clostridium_thermocellum	8.44359	38.6602	41.3978	94.1453	87.3801	154.826
+GO:0019104: [MF] DNA N-glycosylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.8755	10.1067	11.4614	13.4119	20.5167	15.9538
+GO:0019104: [MF] DNA N-glycosylase activity|g__Escherichia.s__Escherichia_coli	0.100011	0	0	0	0	0
+GO:0019104: [MF] DNA N-glycosylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.164322	0.045388	0.235607	0.293152
+GO:0019107: [MF] myristoyltransferase activity	0.029578	0	0	0	0	0
+GO:0019107: [MF] myristoyltransferase activity|g__Escherichia.s__Escherichia_coli	0.029578	0	0	0	0	0
+GO:0019134: [MF] glucosamine-1-phosphate N-acetyltransferase activity	23.5292	49.9847	39.6301	131.475	129.738	104.702
+GO:0019134: [MF] glucosamine-1-phosphate N-acetyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	6.26833	35.7007	27.2547	96.8199	94.1636	84.6506
+GO:0019134: [MF] glucosamine-1-phosphate N-acetyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.0894	14.1176	12.1005	34.4997	35.4584	19.8786
+GO:0019134: [MF] glucosamine-1-phosphate N-acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0.019905	0	0.0738842	0	0	0
+GO:0019134: [MF] glucosamine-1-phosphate N-acetyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.151609	0.166391	0.200994	0.15514	0.116067	0.172948
+GO:0019143: [MF] 3-deoxy-manno-octulosonate-8-phosphatase activity	0	0	0.21633	0	0	0
+GO:0019143: [MF] 3-deoxy-manno-octulosonate-8-phosphatase activity|g__Escherichia.s__Escherichia_coli	0	0	0.21633	0	0	0
+GO:0019144: [MF] ADP-sugar diphosphatase activity	0.118264	0	0	0	0	0
+GO:0019144: [MF] ADP-sugar diphosphatase activity|g__Escherichia.s__Escherichia_coli	0.118264	0	0	0	0	0
+GO:0019146: [MF] arabinose-5-phosphate isomerase activity	0	0	0.107759	0	0	0.0772576
+GO:0019146: [MF] arabinose-5-phosphate isomerase activity|g__Escherichia.s__Escherichia_coli	0	0	0.107759	0	0	0.0772576
+GO:0019148: [MF] D-cysteine desulfhydrase activity	0.0580624	0	0.107759	0	0	0
+GO:0019148: [MF] D-cysteine desulfhydrase activity|g__Escherichia.s__Escherichia_coli	0.0580624	0	0.107759	0	0	0
+GO:0019159: [MF] nicotinamide-nucleotide amidase activity	0.0696311	0	0	0	0	0
+GO:0019159: [MF] nicotinamide-nucleotide amidase activity|g__Escherichia.s__Escherichia_coli	0.0696311	0	0	0	0	0
+GO:0019164: [MF] pyruvate synthase activity	53.9385	482.906	413.001	1160.31	1142.75	930.088
+GO:0019164: [MF] pyruvate synthase activity|g__Clostridium.s__Clostridium_thermocellum	37.7541	467.125	390.5	1143.26	1120.48	917.719
+GO:0019164: [MF] pyruvate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.102	15.7809	22.2174	16.6257	21.7097	12.2023
+GO:0019164: [MF] pyruvate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.082415	0	0.283448	0.430328	0.559241	0.166028
+GO:0019172: [MF] glyoxalase III activity	0	0	0	0	0	0.175277
+GO:0019172: [MF] glyoxalase III activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.175277
+GO:0019180: [MF] dTDP-4-amino-4,6-dideoxygalactose transaminase activity	0	0	0.0459634	0	0	0
+GO:0019180: [MF] dTDP-4-amino-4,6-dideoxygalactose transaminase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0459634	0	0	0
+GO:0019239: [MF] deaminase activity	0	53.2952	41.7632	133.282	125.444	119.676
+GO:0019239: [MF] deaminase activity|g__Clostridium.s__Clostridium_thermocellum	0	53.2952	41.7632	133.282	125.444	119.676
+GO:0019242: [BP] methylglyoxal biosynthetic process	8.8476	8.17008	7.28098	5.97475	7.36417	4.43159
+GO:0019242: [BP] methylglyoxal biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.8476	8.17008	7.28098	5.97475	7.36417	4.43159
+GO:0019243: [BP] methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione	0.226611	0	0.148851	0	0	0.175277
+GO:0019243: [BP] methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione|g__Escherichia.s__Escherichia_coli	0.226611	0	0.148851	0	0	0.175277
+GO:0019249: [BP] lactate biosynthetic process	0	0	0	0	0	0.175277
+GO:0019249: [BP] lactate biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.175277
+GO:0019251: [BP] anaerobic cobalamin biosynthetic process	0	0.196916	0.379841	0.419758	0.457866	1.36338
+GO:0019251: [BP] anaerobic cobalamin biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.196916	0.379841	0.419758	0.457866	1.36338
+GO:0019253: [BP] reductive pentose-phosphate cycle	0.11593	0	0	0	0	0.1225
+GO:0019253: [BP] reductive pentose-phosphate cycle|g__Escherichia.s__Escherichia_coli	0.11593	0	0	0	0	0.1225
+GO:0019262: [BP] N-acetylneuraminate catabolic process	0.205345	0	0	0	0	0.0434635
+GO:0019262: [BP] N-acetylneuraminate catabolic process|g__Escherichia.s__Escherichia_coli	0.205345	0	0	0	0	0.0434635
+GO:0019264: [BP] glycine biosynthetic process from serine	25.3314	64.9289	48.212	188.888	198.919	156.268
+GO:0019264: [BP] glycine biosynthetic process from serine|g__Clostridium.s__Clostridium_thermocellum	2.54412	52.7806	35.9423	179.599	189.141	149.235
+GO:0019264: [BP] glycine biosynthetic process from serine|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.6804	11.9841	12.0337	8.85192	9.73997	6.94814
+GO:0019264: [BP] glycine biosynthetic process from serine|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.106889	0.164198	0.236042	0.436595	0.0381754	0.0853423
+GO:0019272: [BP] L-alanine biosynthetic process from pyruvate	0.0446465	0	0	0	0	0
+GO:0019272: [BP] L-alanine biosynthetic process from pyruvate|g__Escherichia.s__Escherichia_coli	0.0446465	0	0	0	0	0
+GO:0019277: [BP] UDP-N-acetylgalactosamine biosynthetic process	38.5198	118.21	85.9788	227.429	202.19	226.148
+GO:0019277: [BP] UDP-N-acetylgalactosamine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	15.7121	94.3411	68.7886	205.784	178.629	204.708
+GO:0019277: [BP] UDP-N-acetylgalactosamine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.7477	23.8692	17.1089	21.6449	23.5611	21.4403
+GO:0019277: [BP] UDP-N-acetylgalactosamine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0600067	0	0.0812816	0	0	0
+GO:0019281: [BP] L-methionine biosynthetic process from homoserine via O-succinyl-L-homoserine and cystathionine	1.9575	18.6499	14.6035	39.4573	34.2343	40.4424
+GO:0019281: [BP] L-methionine biosynthetic process from homoserine via O-succinyl-L-homoserine and cystathionine|g__Clostridium.s__Clostridium_thermocellum	1.80171	18.6499	14.2566	39.4573	34.2343	40.4424
+GO:0019281: [BP] L-methionine biosynthetic process from homoserine via O-succinyl-L-homoserine and cystathionine|g__Escherichia.s__Escherichia_coli	0.155789	0	0.346913	0	0	0
+GO:0019284: [BP] L-methionine biosynthetic process from S-adenosylmethionine	24.8705	22.4835	33.9172	42.5619	38.2325	44.7121
+GO:0019284: [BP] L-methionine biosynthetic process from S-adenosylmethionine|g__Clostridium.s__Clostridium_thermocellum	1.90797	8.33124	5.07952	33.3417	25.5352	24.3338
+GO:0019284: [BP] L-methionine biosynthetic process from S-adenosylmethionine|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.4369	12.727	27.7473	8.96712	12.2831	20.0084
+GO:0019284: [BP] L-methionine biosynthetic process from S-adenosylmethionine|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.525672	1.42523	1.09036	0.253054	0.414178	0.369989
+GO:0019285: [BP] glycine betaine biosynthetic process from choline	0.086328	0	0.162338	0	0	0.0355404
+GO:0019285: [BP] glycine betaine biosynthetic process from choline|g__Escherichia.s__Escherichia_coli	0.086328	0	0.162338	0	0	0.0355404
+GO:0019287: [BP] isopentenyl diphosphate biosynthetic process, mevalonate pathway	0.0638711	0	0	0.0326296	0.0569702	0
+GO:0019287: [BP] isopentenyl diphosphate biosynthetic process, mevalonate pathway|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0638711	0	0	0.0326296	0.0569702	0
+GO:0019288: [BP] isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway	60.0166	143.452	99.0494	354.131	322.236	283.559
+GO:0019288: [BP] isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway|g__Clostridium.s__Clostridium_thermocellum	17.5654	96.757	66.0977	306.882	268.141	243.195
+GO:0019288: [BP] isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	42.2315	46.6955	32.9517	47.2494	54.0949	40.364
+GO:0019288: [BP] isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway|g__Escherichia.s__Escherichia_coli	0.219709	0	0	0	0	0
+GO:0019290: [BP] siderophore biosynthetic process	0.0814186	0	0	0	0	0
+GO:0019290: [BP] siderophore biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0814186	0	0	0	0	0
+GO:0019294: [BP] keto-3-deoxy-D-manno-octulosonic acid biosynthetic process	0	0	0.0639608	0	0	0
+GO:0019294: [BP] keto-3-deoxy-D-manno-octulosonic acid biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0.0639608	0	0	0
+GO:0019295: [BP] coenzyme M biosynthetic process	0.912739	1.67978	1.961	2.31954	1.29925	1.0969
+GO:0019295: [BP] coenzyme M biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.912739	1.67978	1.961	2.31954	1.29925	1.0969
+GO:0019298: [BP] coenzyme B biosynthetic process	0	0.18198	0.0879123	0.242384	0.0846197	0
+GO:0019298: [BP] coenzyme B biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.18198	0.0879123	0.242384	0.0846197	0
+GO:0019299: [BP] rhamnose metabolic process	5.73814	29.6624	24.26	87.8646	80.5556	79.2626
+GO:0019299: [BP] rhamnose metabolic process|g__Clostridium.s__Clostridium_thermocellum	5.56439	29.6624	24.26	87.8646	80.5556	79.0305
+GO:0019299: [BP] rhamnose metabolic process|g__Escherichia.s__Escherichia_coli	0.17375	0	0	0	0	0.232064
+GO:0019301: [BP] rhamnose catabolic process	0.13795	0	0	0	0	0
+GO:0019301: [BP] rhamnose catabolic process|g__Escherichia.s__Escherichia_coli	0.13795	0	0	0	0	0
+GO:0019303: [BP] D-ribose catabolic process	0.84092	1.13095	2.00534	0.404388	0.791896	0.60312
+GO:0019303: [BP] D-ribose catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.691985	1.13095	2.00534	0.404388	0.791896	0.524763
+GO:0019303: [BP] D-ribose catabolic process|g__Escherichia.s__Escherichia_coli	0.148935	0	0	0	0	0.0783571
+GO:0019305: [BP] dTDP-rhamnose biosynthetic process	3.901	2.06363	5.77668	0.881919	1.79053	2.31061
+GO:0019305: [BP] dTDP-rhamnose biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.26015	1.99964	4.92832	0.722029	1.58891	1.92271
+GO:0019305: [BP] dTDP-rhamnose biosynthetic process|g__Escherichia.s__Escherichia_coli	0.430036	0	0.12314	0	0	0
+GO:0019305: [BP] dTDP-rhamnose biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.210813	0.0640362	0.72522	0.15989	0.20162	0.387873
+GO:0019316: [BP] D-allose catabolic process	0.0890257	0	0.704922	0	0	0
+GO:0019316: [BP] D-allose catabolic process|g__Escherichia.s__Escherichia_coli	0.0890257	0	0.704922	0	0	0
+GO:0019323: [BP] pentose catabolic process	0.0890257	0	0.0933701	0	0	0
+GO:0019323: [BP] pentose catabolic process|g__Escherichia.s__Escherichia_coli	0.0890257	0	0.0933701	0	0	0
+GO:0019324: [BP] L-lyxose metabolic process	0.0359457	0	0.267842	0	0	0
+GO:0019324: [BP] L-lyxose metabolic process|g__Escherichia.s__Escherichia_coli	0.0359457	0	0.267842	0	0	0
+GO:0019344: [BP] cysteine biosynthetic process	0.290069	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0019344: [BP] cysteine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0019344: [BP] cysteine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.119503	0	0	0	0	0
+GO:0019354: [BP] siroheme biosynthetic process	1.10209	14.4086	9.26245	24.4094	23.5221	33.2723
+GO:0019354: [BP] siroheme biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.0182523	12.9279	7.92212	23.4066	22.693	32.3801
+GO:0019354: [BP] siroheme biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.08384	1.48067	1.34034	1.00281	0.829117	0.892133
+GO:0019357: [BP] nicotinate nucleotide biosynthetic process	0.0461534	0	0	0	0	0.0614116
+GO:0019357: [BP] nicotinate nucleotide biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0461534	0	0	0	0	0.0614116
+GO:0019358: [BP] nicotinate nucleotide salvage	1.5758	3.20363	4.54108	9.51954	9.20165	8.45937
+GO:0019358: [BP] nicotinate nucleotide salvage|g__Clostridium.s__Clostridium_thermocellum	1.5758	3.20363	4.54108	9.51954	9.20165	8.45937
+GO:0019363: [BP] pyridine nucleotide biosynthetic process	0.0696311	0	0	0	0	0
+GO:0019363: [BP] pyridine nucleotide biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0696311	0	0	0	0	0
+GO:0019379: [BP] sulfate assimilation, phosphoadenylyl sulfate reduction by phosphoadenylyl-sulfate reductase (thioredoxin)	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0019379: [BP] sulfate assimilation, phosphoadenylyl sulfate reduction by phosphoadenylyl-sulfate reductase (thioredoxin)|g__Clostridium.s__Clostridium_thermocellum	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0019380: [BP] 3-phenylpropionate catabolic process	0.172632	0	0.281554	0	0	0
+GO:0019380: [BP] 3-phenylpropionate catabolic process|g__Escherichia.s__Escherichia_coli	0.172632	0	0.281554	0	0	0
+GO:0019386: [BP] methanogenesis, from carbon dioxide	35.4646	20.0618	50.7883	37.8944	33.1387	60.675
+GO:0019386: [BP] methanogenesis, from carbon dioxide|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	35.4646	20.0618	50.7883	37.8944	33.1387	60.675
+GO:0019402: [BP] galactitol metabolic process	0.124996	0	0	0	0	0.07577
+GO:0019402: [BP] galactitol metabolic process|g__Escherichia.s__Escherichia_coli	0.124996	0	0	0	0	0.07577
+GO:0019404: [BP] galactitol catabolic process	0.0436744	0	0.0810561	0	0	0
+GO:0019404: [BP] galactitol catabolic process|g__Escherichia.s__Escherichia_coli	0.0436744	0	0.0810561	0	0	0
+GO:0019419: [BP] sulfate reduction	0.0639926	0	0	0	0	0
+GO:0019419: [BP] sulfate reduction|g__Escherichia.s__Escherichia_coli	0.0639926	0	0	0	0	0
+GO:0019427: [BP] acetyl-CoA biosynthetic process from acetate	0.383591	0.603863	0.128914	0.461639	0	0.431271
+GO:0019427: [BP] acetyl-CoA biosynthetic process from acetate|g__Escherichia.s__Escherichia_coli	0.0624857	0	0	0	0	0
+GO:0019427: [BP] acetyl-CoA biosynthetic process from acetate|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.321105	0.603863	0.128914	0.461639	0	0.431271
+GO:0019430: [BP] removal of superoxide radicals	64.4873	76.0617	64.6682	101.956	88.0925	71.7822
+GO:0019430: [BP] removal of superoxide radicals|g__Clostridium.s__Clostridium_thermocellum	3.34271	26.5836	22.3044	73.621	51.4425	40.9378
+GO:0019430: [BP] removal of superoxide radicals|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	60.5844	45.6812	40.6282	27.2136	35.3746	29.7026
+GO:0019430: [BP] removal of superoxide radicals|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.560136	3.79685	1.7356	1.12194	1.27526	1.14176
+GO:0019439: [BP] aromatic compound catabolic process	0.244353	0	0.205008	0	0	0
+GO:0019439: [BP] aromatic compound catabolic process|g__Escherichia.s__Escherichia_coli	0.244353	0	0.205008	0	0	0
+GO:0019441: [BP] tryptophan catabolic process to kynurenine	15.886	13.0764	8.93453	11.7272	10.8371	8.93229
+GO:0019441: [BP] tryptophan catabolic process to kynurenine|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.5656	12.5449	8.71175	11.5431	10.73	8.61288
+GO:0019441: [BP] tryptophan catabolic process to kynurenine|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.320352	0.531379	0.222735	0.184064	0.107169	0.319411
+GO:0019464: [BP] glycine decarboxylation via glycine cleavage system	706.074	325.416	401.597	307.487	371.456	244.037
+GO:0019464: [BP] glycine decarboxylation via glycine cleavage system|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	706.074	325.416	401.597	307.487	371.456	244.037
+GO:0019478: [BP] D-amino acid catabolic process	20.9862	30.9195	28.0743	78.9672	72.0467	71.1338
+GO:0019478: [BP] D-amino acid catabolic process|g__Clostridium.s__Clostridium_thermocellum	3.31886	15.3888	14.6693	64.3926	55.4333	51.6832
+GO:0019478: [BP] D-amino acid catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.6673	15.5307	13.405	14.5746	16.6134	19.4505
+GO:0019491: [BP] ectoine biosynthetic process	0.395184	0.94332	0	0	0	0.131458
+GO:0019491: [BP] ectoine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.395184	0.94332	0	0	0	0.131458
+GO:0019509: [BP] L-methionine biosynthetic process from methylthioadenosine	24.3449	21.0582	32.8268	42.3088	37.8183	44.3421
+GO:0019509: [BP] L-methionine biosynthetic process from methylthioadenosine|g__Clostridium.s__Clostridium_thermocellum	1.90797	8.33124	5.07952	33.3417	25.5352	24.3338
+GO:0019509: [BP] L-methionine biosynthetic process from methylthioadenosine|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.4369	12.727	27.7473	8.96712	12.2831	20.0084
+GO:0019516: [BP] lactate oxidation	6.27698	1.48707	6.31074	6.12275	5.15822	12.2466
+GO:0019516: [BP] lactate oxidation|g__Escherichia.s__Escherichia_coli	0.176836	0	0.0692383	0	0	0.0506104
+GO:0019516: [BP] lactate oxidation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	6.10015	1.48707	6.2415	6.12275	5.15822	12.196
+GO:0019518: [BP] L-threonine catabolic process to glycine	0.374696	0	0	0	0	0
+GO:0019518: [BP] L-threonine catabolic process to glycine|g__Escherichia.s__Escherichia_coli	0.374696	0	0	0	0	0
+GO:0019521: [BP] D-gluconate metabolic process	0.431421	0	0.288636	0	0	0.128612
+GO:0019521: [BP] D-gluconate metabolic process|g__Escherichia.s__Escherichia_coli	0.431421	0	0.288636	0	0	0.128612
+GO:0019538: [BP] protein metabolic process	547.353	494.582	735.731	152.002	154.133	151.57
+GO:0019538: [BP] protein metabolic process|g__Clostridium.s__Clostridium_thermocellum	21.8133	263.562	347.214	110.844	101.05	103.011
+GO:0019538: [BP] protein metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	525.539	231.02	388.516	41.1582	53.0827	48.5591
+GO:0019544: [BP] arginine catabolic process to glutamate	0.241704	0	0	0	0	0
+GO:0019544: [BP] arginine catabolic process to glutamate|g__Escherichia.s__Escherichia_coli	0.241704	0	0	0	0	0
+GO:0019545: [BP] arginine catabolic process to succinate	0.241704	0	0	0	0	0
+GO:0019545: [BP] arginine catabolic process to succinate|g__Escherichia.s__Escherichia_coli	0.241704	0	0	0	0	0
+GO:0019546: [BP] arginine deiminase pathway	1.56909	2.58642	1.39825	7.4204	5.77356	4.76255
+GO:0019546: [BP] arginine deiminase pathway|g__Clostridium.s__Clostridium_thermocellum	1.50707	2.58642	1.39825	7.4204	5.77356	4.76255
+GO:0019546: [BP] arginine deiminase pathway|g__Escherichia.s__Escherichia_coli	0.0620482	0	0	0	0	0
+GO:0019547: [BP] arginine catabolic process to ornithine	1.50707	2.58642	1.39825	7.4204	5.77356	4.76255
+GO:0019547: [BP] arginine catabolic process to ornithine|g__Clostridium.s__Clostridium_thermocellum	1.50707	2.58642	1.39825	7.4204	5.77356	4.76255
+GO:0019552: [BP] glutamate catabolic process via 2-hydroxyglutarate	21.7383	13.8552	10.5367	15.8808	17.9128	16.441
+GO:0019552: [BP] glutamate catabolic process via 2-hydroxyglutarate|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.7383	13.8552	10.5367	15.8808	17.9128	16.441
+GO:0019556: [BP] histidine catabolic process to glutamate and formamide	22.0551	11.8131	40.4703	1.99762	3.44961	5.27732
+GO:0019556: [BP] histidine catabolic process to glutamate and formamide|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.0551	11.8131	40.4703	1.99762	3.44961	5.27732
+GO:0019557: [BP] histidine catabolic process to glutamate and formate	22.0551	11.8131	40.4703	1.99762	3.44961	5.27732
+GO:0019557: [BP] histidine catabolic process to glutamate and formate|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.0551	11.8131	40.4703	1.99762	3.44961	5.27732
+GO:0019563: [BP] glycerol catabolic process	15.1719	14.9984	15.1648	10.3004	13.3047	12.0596
+GO:0019563: [BP] glycerol catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0019563: [BP] glycerol catabolic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0350877
+GO:0019588: [BP] anaerobic glycerol catabolic process	0.0508684	0	0	0	0	0
+GO:0019588: [BP] anaerobic glycerol catabolic process|g__Escherichia.s__Escherichia_coli	0.0508684	0	0	0	0	0
+GO:0019594: [BP] mannitol metabolic process	0.0797659	0	0.225757	0	0	0
+GO:0019594: [BP] mannitol metabolic process|g__Escherichia.s__Escherichia_coli	0.0797659	0	0.225757	0	0	0
+GO:0019605: [BP] butyrate metabolic process	81.3009	96.7253	101.091	83.5603	101.809	119.134
+GO:0019605: [BP] butyrate metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	81.3009	96.7253	101.091	83.5603	101.809	119.134
+GO:0019627: [BP] urea metabolic process	0.0764362	0.299178	0.290079	0.637695	0.418042	0.414617
+GO:0019627: [BP] urea metabolic process|g__Clostridium.s__Clostridium_thermocellum	0.0764362	0.299178	0.290079	0.637695	0.418042	0.414617
+GO:0019630: [BP] quinate metabolic process	1.38574	7.35655	3.7173	17.0606	15.9985	19.0732
+GO:0019630: [BP] quinate metabolic process|g__Clostridium.s__Clostridium_thermocellum	1.38574	7.35655	3.7173	17.0606	15.9985	19.0732
+GO:0019632: [BP] shikimate metabolic process	1.85411	8.3528	5.09463	37.9082	41.0562	40.5462
+GO:0019632: [BP] shikimate metabolic process|g__Clostridium.s__Clostridium_thermocellum	1.36543	6.36931	4.52466	37.8689	40.8847	40.2398
+GO:0019632: [BP] shikimate metabolic process|g__Escherichia.s__Escherichia_coli	0.181527	0	0	0	0	0
+GO:0019632: [BP] shikimate metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.307155	1.98349	0.569964	0.0392948	0.171431	0.306379
+GO:0019645: [BP] anaerobic electron transport chain	0.0810054	0	0.252686	0	0	0
+GO:0019645: [BP] anaerobic electron transport chain|g__Escherichia.s__Escherichia_coli	0.0810054	0	0.252686	0	0	0
+GO:0019646: [BP] aerobic electron transport chain	0.146432	0	0.0646374	0	0	0.023187
+GO:0019646: [BP] aerobic electron transport chain|g__Escherichia.s__Escherichia_coli	0.146432	0	0.0646374	0	0	0.023187
+GO:0019674: [BP] NAD metabolic process	30.4359	83.2505	69.5922	122.072	124.981	159.533
+GO:0019674: [BP] NAD metabolic process|g__Clostridium.s__Clostridium_thermocellum	3.27337	43.3958	38.1945	99.6322	94.2849	136.194
+GO:0019674: [BP] NAD metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	26.7214	39.4559	31.2051	22.3689	30.5419	23.339
+GO:0019674: [BP] NAD metabolic process|g__Escherichia.s__Escherichia_coli	0.233368	0	0	0	0	0
+GO:0019674: [BP] NAD metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.207727	0.398826	0.192649	0.070855	0.15459	0
+GO:0019693: [BP] ribose phosphate metabolic process	0.222333	0.573012	0.41146	0.532295	0.266599	0.446632
+GO:0019693: [BP] ribose phosphate metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.222333	0.573012	0.41146	0.532295	0.266599	0.446632
+GO:0019698: [BP] D-galacturonate catabolic process	1.43953	0	0	0	0	0
+GO:0019698: [BP] D-galacturonate catabolic process|g__Escherichia.s__Escherichia_coli	1.43953	0	0	0	0	0
+GO:0019700: [BP] organic phosphonate catabolic process	0.0798145	0	0	0	0	0
+GO:0019700: [BP] organic phosphonate catabolic process|g__Escherichia.s__Escherichia_coli	0.0798145	0	0	0	0	0
+GO:0019740: [BP] nitrogen utilization	0.0551702	0	0	0	0	0
+GO:0019740: [BP] nitrogen utilization|g__Escherichia.s__Escherichia_coli	0.0551702	0	0	0	0	0
+GO:0019752: [BP] carboxylic acid metabolic process	0.298235	0	0	0	0	0
+GO:0019752: [BP] carboxylic acid metabolic process|g__Escherichia.s__Escherichia_coli	0.298235	0	0	0	0	0
+GO:0019773: [CC] proteasome core complex, alpha-subunit complex	0.488463	0.781783	0.453319	0.166505	0.217876	1.0818
+GO:0019773: [CC] proteasome core complex, alpha-subunit complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.488463	0.781783	0.453319	0.166505	0.217876	1.0818
+GO:0019774: [CC] proteasome core complex, beta-subunit complex	0.301905	0.28989	0.373571	0.462982	0	0.0669415
+GO:0019774: [CC] proteasome core complex, beta-subunit complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.301905	0.28989	0.373571	0.462982	0	0.0669415
+GO:0019808: [MF] polyamine binding	2.86812	14.2759	7.52225	83.8084	72.8267	32.8495
+GO:0019808: [MF] polyamine binding|g__Clostridium.s__Clostridium_thermocellum	2.86812	14.2759	7.34115	83.8084	72.8267	32.8495
+GO:0019808: [MF] polyamine binding|g__Escherichia.s__Escherichia_coli	0	0	0.181102	0	0	0
+GO:0019825: [MF] oxygen binding	0.0466881	0	0	0	0	0
+GO:0019825: [MF] oxygen binding|g__Escherichia.s__Escherichia_coli	0.0466881	0	0	0	0	0
+GO:0019829: [MF] cation-transporting ATPase activity	5.67291	21.8896	19.1135	79.3547	55.2495	45.92
+GO:0019829: [MF] cation-transporting ATPase activity|g__Clostridium.s__Clostridium_thermocellum	5.28287	21.5243	18.7184	79.1633	55.1678	45.7095
+GO:0019829: [MF] cation-transporting ATPase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.390031	0.365314	0.395041	0.191326	0.0816681	0.210461
+GO:0019835: [BP] cytolysis	0.154063	0	0.176907	0	0	0
+GO:0019835: [BP] cytolysis|g__Escherichia.s__Escherichia_coli	0.154063	0	0.176907	0	0	0
+GO:0019843: [MF] rRNA binding	2335.91	3412.04	2374.98	8672.29	7748.98	7408.42
+GO:0019843: [MF] rRNA binding|g__Clostridium.s__Clostridium_thermocellum	332.151	1592.04	935.931	6762.96	5484.78	5699.01
+GO:0019843: [MF] rRNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1995.01	1799.96	1399.49	1858.17	2246	1681.5
+GO:0019843: [MF] rRNA binding|g__Escherichia.s__Escherichia_coli	0.855989	0	2.05938	0	0	0.40443
+GO:0019843: [MF] rRNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	7.89043	20.042	37.5021	51.1639	18.2033	27.5042
+GO:0019853: [BP] L-ascorbic acid biosynthetic process	0.0540036	0	0	0	0	0
+GO:0019853: [BP] L-ascorbic acid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0540036	0	0	0	0	0
+GO:0019854: [BP] L-ascorbic acid catabolic process	0.0683187	0	0	0	0	0
+GO:0019854: [BP] L-ascorbic acid catabolic process|g__Escherichia.s__Escherichia_coli	0.0683187	0	0	0	0	0
+GO:0019856: [BP] pyrimidine nucleobase biosynthetic process	5.2121	4.68626	2.36768	1.02219	2.77335	2.067
+GO:0019856: [BP] pyrimidine nucleobase biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.1579	4.68626	2.36768	1.02219	2.77335	2.067
+GO:0019856: [BP] pyrimidine nucleobase biosynthetic process|g__Escherichia.s__Escherichia_coli	0.054198	0	0	0	0	0
+GO:0019866: [CC] organelle inner membrane	0.0270504	0	0	0	0	0
+GO:0019866: [CC] organelle inner membrane|g__Escherichia.s__Escherichia_coli	0.0270504	0	0	0	0	0
+GO:0019867: [CC] outer membrane	32.0851	42.0167	22.778	35.7245	44.298	40.4244
+GO:0019867: [CC] outer membrane|g__Clostridium.s__Clostridium_thermocellum	1.35245	3.64138	2.19357	9.87297	8.4925	11.1669
+GO:0019867: [CC] outer membrane|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	29.3339	38.3753	20.3505	25.8515	35.8054	29.1819
+GO:0019867: [CC] outer membrane|g__Escherichia.s__Escherichia_coli	1.3987	0	0.233922	0	0	0.0755436
+GO:0019877: [BP] diaminopimelate biosynthetic process	11.4257	39.3362	36.3326	113.055	118.05	124.952
+GO:0019877: [BP] diaminopimelate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	10.3515	38.2045	33.9355	110.667	117.318	123.081
+GO:0019877: [BP] diaminopimelate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.121933	0	0	0	0	0
+GO:0019877: [BP] diaminopimelate biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.952354	1.1316	2.39713	2.38761	0.732126	1.87084
+GO:0019898: [CC] extrinsic component of membrane	2.33001	5.41601	4.73693	13.0948	11.2543	11.3446
+GO:0019898: [CC] extrinsic component of membrane|g__Clostridium.s__Clostridium_thermocellum	2.33001	5.41601	4.73693	13.0948	11.2543	11.3446
+GO:0019932: [BP] second-messenger-mediated signaling	4.19311	21.5017	17.5922	87.8474	83.4249	100.137
+GO:0019932: [BP] second-messenger-mediated signaling|g__Clostridium.s__Clostridium_thermocellum	4.19311	21.5017	17.5922	87.8474	83.4249	100.137
+GO:0020002: [CC] host cell plasma membrane	0.154063	0	0	0	0	0.0424286
+GO:0020002: [CC] host cell plasma membrane|g__Escherichia.s__Escherichia_coli	0.154063	0	0	0	0	0.0424286
+GO:0020037: [MF] heme binding	1.75582	23.9784	17.7679	64.733	54.3817	45.9608
+GO:0020037: [MF] heme binding|g__Clostridium.s__Clostridium_thermocellum	0.268876	23.4922	17.0868	64.5776	54.314	45.8254
+GO:0020037: [MF] heme binding|g__Escherichia.s__Escherichia_coli	1.36037	0	0.422737	0	0	0.0680087
+GO:0020037: [MF] heme binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.126576	0.486199	0.258414	0.155438	0.0676914	0.0673619
+GO:0022611: [BP] dormancy process	0.0428724	0	0	0	0	0
+GO:0022611: [BP] dormancy process|g__Escherichia.s__Escherichia_coli	0.0428724	0	0	0	0	0
+GO:0022623: [CC] proteasome-activating nucleotidase complex	0.828574	2.49783	0.874477	1.07929	0.741198	1.43213
+GO:0022623: [CC] proteasome-activating nucleotidase complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.828574	2.49783	0.874477	1.07929	0.741198	1.43213
+GO:0022625: [CC] cytosolic large ribosomal subunit	1.45856	0.187441	1.44701	1.9968	1.30741	2.72633
+GO:0022625: [CC] cytosolic large ribosomal subunit|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.45856	0.187441	1.44701	1.9968	1.30741	2.72633
+GO:0022627: [CC] cytosolic small ribosomal subunit	0.0375984	0	0.0348672	0	0	0
+GO:0022627: [CC] cytosolic small ribosomal subunit|g__Escherichia.s__Escherichia_coli	0.0375984	0	0.0348672	0	0	0
+GO:0022820: [MF] potassium ion symporter activity	1.94099	7.99094	4.77929	25.7575	26.9227	25.4754
+GO:0022820: [MF] potassium ion symporter activity|g__Clostridium.s__Clostridium_thermocellum	1.88529	7.99094	4.77929	25.7575	26.9227	25.4754
+GO:0022820: [MF] potassium ion symporter activity|g__Escherichia.s__Escherichia_coli	0.0557049	0	0	0	0	0
+GO:0022857: [MF] transmembrane transporter activity	0.641821	0	0.523008	0	0	0.102935
+GO:0022857: [MF] transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.641821	0	0.523008	0	0	0.102935
+GO:0022872: [MF] protein-N(PI)-phosphohistidine-mannitol phosphotransferase system transmembrane transporter activity	0.201845	0	0.29901	0	0	0.0426873
+GO:0022872: [MF] protein-N(PI)-phosphohistidine-mannitol phosphotransferase system transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.201845	0	0.29901	0	0	0.0426873
+GO:0022877: [MF] protein-N(PI)-phosphohistidine-fructose phosphotransferase system transporter activity	92.4791	20.5231	28.8183	18.3597	14.3406	8.55328
+GO:0022877: [MF] protein-N(PI)-phosphohistidine-fructose phosphotransferase system transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	92.4241	20.5231	28.3484	18.3597	14.3406	8.53233
+GO:0022877: [MF] protein-N(PI)-phosphohistidine-fructose phosphotransferase system transporter activity|g__Escherichia.s__Escherichia_coli	0.0550244	0	0.469873	0	0	0.0209879
+GO:0022885: [MF] bacteriocin transmembrane transporter activity	7.07246	25.0548	21.4841	39.2775	35.7906	61.1063
+GO:0022885: [MF] bacteriocin transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	7.07246	25.0548	21.4841	39.2775	35.7906	61.1063
+GO:0022889: [MF] serine transmembrane transporter activity	0.0443792	0	0	0	0	0
+GO:0022889: [MF] serine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0443792	0	0	0	0	0
+GO:0022891: [MF] substrate-specific transmembrane transporter activity	0.698766	0	0.306904	0	0	0.0769342
+GO:0022891: [MF] substrate-specific transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.698766	0	0.306904	0	0	0.0769342
+GO:0022900: [BP] electron transport chain	27.3557	113.233	113.138	293.625	296.322	288.779
+GO:0022900: [BP] electron transport chain|g__Clostridium.s__Clostridium_thermocellum	27.3023	113.233	112.84	293.625	296.322	288.779
+GO:0022900: [BP] electron transport chain|g__Escherichia.s__Escherichia_coli	0.0534689	0	0.297747	0	0	0
+GO:0022904: [BP] respiratory electron transport chain	0.395208	0	0.108165	0	0	0.0508367
+GO:0022904: [BP] respiratory electron transport chain|g__Escherichia.s__Escherichia_coli	0.395208	0	0.108165	0	0	0.0508367
+GO:0023014: [BP] signal transduction by protein phosphorylation	0.571121	0	0.500184	0	0	0.103032
+GO:0023014: [BP] signal transduction by protein phosphorylation|g__Escherichia.s__Escherichia_coli	0.571121	0	0.500184	0	0	0.103032
+GO:0030001: [BP] metal ion transport	36.125	175.856	110.975	722.656	567.118	567.619
+GO:0030001: [BP] metal ion transport|g__Clostridium.s__Clostridium_thermocellum	24.9573	165.741	102.104	716.088	559.563	560.753
+GO:0030001: [BP] metal ion transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.7306	9.79903	8.87016	6.29811	7.3781	6.73538
+GO:0030001: [BP] metal ion transport|g__Escherichia.s__Escherichia_coli	0.14072	0	0	0	0	0
+GO:0030001: [BP] metal ion transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.296339	0.31612	0	0.269493	0.176445	0.131458
+GO:0030060: [MF] L-malate dehydrogenase activity	0.440074	0.281489	0.162202	0.240295	0.104847	0
+GO:0030060: [MF] L-malate dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.440074	0.281489	0.162202	0.240295	0.104847	0
+GO:0030091: [BP] protein repair	3.29731	4.97825	3.64838	5.47374	3.37402	9.35085
+GO:0030091: [BP] protein repair|g__Clostridium.s__Clostridium_thermocellum	0.217497	2.60971	0.706365	3.28263	1.65025	7.94968
+GO:0030091: [BP] protein repair|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.85163	2.10927	1.80651	1.83144	1.68072	1.29517
+GO:0030091: [BP] protein repair|g__Escherichia.s__Escherichia_coli	0.61742	0	0.170863	0	0	0
+GO:0030091: [BP] protein repair|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.610761	0.259319	0.964644	0.359672	0.0430586	0.106039
+GO:0030115: [CC] S-layer	58.0833	60.7063	38.314	188.935	159.337	175.28
+GO:0030115: [CC] S-layer|g__Clostridium.s__Clostridium_thermocellum	58.0833	60.7063	38.314	188.935	159.337	175.28
+GO:0030145: [MF] manganese ion binding	55.1761	223.458	231.399	545.885	485.236	463.56
+GO:0030145: [MF] manganese ion binding|g__Clostridium.s__Clostridium_thermocellum	21.8883	203.144	212.555	520.555	460.296	438.792
+GO:0030145: [MF] manganese ion binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	30.5053	18.0302	14.1882	22.8974	23.4574	20.9737
+GO:0030145: [MF] manganese ion binding|g__Escherichia.s__Escherichia_coli	1.623	0	1.43235	0	0	0.34221
+GO:0030145: [MF] manganese ion binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.1594	2.28439	3.22316	2.43329	1.48253	3.45237
+GO:0030151: [MF] molybdenum ion binding	14.7401	20.6429	13.2799	18.5172	19.7137	17.7204
+GO:0030151: [MF] molybdenum ion binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.8821	19.0385	12.9373	17.7183	19.5629	16.2159
+GO:0030151: [MF] molybdenum ion binding|g__Escherichia.s__Escherichia_coli	0.758043	0	0	0	0	0.0514188
+GO:0030151: [MF] molybdenum ion binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.100011	1.60431	0.342583	0.798878	0.150792	1.45312
+GO:0030153: [BP] bacteriocin immunity	0.424738	0	0.188139	0	0	0
+GO:0030153: [BP] bacteriocin immunity|g__Escherichia.s__Escherichia_coli	0.424738	0	0.188139	0	0	0
+GO:0030163: [BP] protein catabolic process	25.4008	70.6792	62.1631	127.028	117.186	124.922
+GO:0030163: [BP] protein catabolic process|g__Clostridium.s__Clostridium_thermocellum	5.84393	40.4205	28.0088	109.896	98.4439	102.769
+GO:0030163: [BP] protein catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.5312	28.6788	32.6612	16.4149	18.2525	20.9937
+GO:0030163: [BP] protein catabolic process|g__Escherichia.s__Escherichia_coli	0.412172	0	0.100722	0	0	0.0362196
+GO:0030163: [BP] protein catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.613459	1.5799	1.39239	0.716359	0.489531	1.12297
+GO:0030170: [MF] pyridoxal phosphate binding	602.917	2056.53	1906.27	1891.96	1890.42	1844.18
+GO:0030170: [MF] pyridoxal phosphate binding|g__Clostridium.s__Clostridium_thermocellum	61.3959	1793.24	1516.57	1656.84	1637.87	1670.83
+GO:0030170: [MF] pyridoxal phosphate binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	538.617	260.019	385.875	230.782	249.884	168.924
+GO:0030170: [MF] pyridoxal phosphate binding|g__Escherichia.s__Escherichia_coli	1.77874	0	0.977725	0	0	0.136567
+GO:0030170: [MF] pyridoxal phosphate binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.12535	3.27695	2.84959	4.34625	2.66794	4.28542
+GO:0030234: [MF] enzyme regulator activity	30.1924	132.648	93.1264	282.021	269.392	418.149
+GO:0030234: [MF] enzyme regulator activity|g__Clostridium.s__Clostridium_thermocellum	29.5502	131.469	92.9205	281.49	268.928	416.262
+GO:0030234: [MF] enzyme regulator activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0514188
+GO:0030234: [MF] enzyme regulator activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.642259	1.17865	0.205956	0.531599	0.464442	1.83536
+GO:0030244: [BP] cellulose biosynthetic process	0.0566041	0	0.280742	0	0	0.0229283
+GO:0030244: [BP] cellulose biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0566041	0	0.280742	0	0	0.0229283
+GO:0030245: [BP] cellulose catabolic process	360.189	492.19	489.415	1494.12	1317.1	1291.15
+GO:0030245: [BP] cellulose catabolic process|g__Clostridium.s__Clostridium_thermocellum	360.113	492.19	489.415	1494.12	1317.1	1291.15
+GO:0030245: [BP] cellulose catabolic process|g__Escherichia.s__Escherichia_coli	0.0761932	0	0	0	0	0
+GO:0030246: [MF] carbohydrate binding	488.543	423.134	439.242	951.603	857.024	887.145
+GO:0030246: [MF] carbohydrate binding|g__Clostridium.s__Clostridium_thermocellum	236.158	332.987	319.585	866.912	764.217	811.045
+GO:0030246: [MF] carbohydrate binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	246.44	87.6649	114.489	82.2803	91.0537	71.6753
+GO:0030246: [MF] carbohydrate binding|g__Escherichia.s__Escherichia_coli	4.46643	0	3.38907	0	0	1.25439
+GO:0030246: [MF] carbohydrate binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.47961	2.4815	1.77877	2.41031	1.75273	3.16953
+GO:0030248: [MF] cellulose binding	96.9815	115.552	93.088	368.944	317.694	349.076
+GO:0030248: [MF] cellulose binding|g__Clostridium.s__Clostridium_thermocellum	96.9815	115.552	93.088	368.944	317.694	349.076
+GO:0030254: [BP] protein secretion by the type III secretion system	1.77383	6.01273	5.19088	50.7058	47.3394	37.1062
+GO:0030254: [BP] protein secretion by the type III secretion system|g__Clostridium.s__Clostridium_thermocellum	1.77383	6.01273	5.19088	50.7058	47.3394	37.1062
+GO:0030257: [CC] type III protein secretion system complex	1.77383	6.01273	5.19088	50.7058	47.3394	37.1062
+GO:0030257: [CC] type III protein secretion system complex|g__Clostridium.s__Clostridium_thermocellum	1.77383	6.01273	5.19088	50.7058	47.3394	37.1062
+GO:0030259: [BP] lipid glycosylation	24.735	18.7543	14.0262	47.2428	39.7042	40.5931
+GO:0030259: [BP] lipid glycosylation|g__Clostridium.s__Clostridium_thermocellum	1.58956	8.72969	6.41773	32.6025	24.0076	23.7881
+GO:0030259: [BP] lipid glycosylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	23.0057	10.0247	7.60845	14.6403	15.6966	16.805
+GO:0030259: [BP] lipid glycosylation|g__Escherichia.s__Escherichia_coli	0.0536877	0	0	0	0	0
+GO:0030259: [BP] lipid glycosylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0861093	0	0	0	0	0
+GO:0030261: [BP] chromosome condensation	942.796	2504.37	1747.06	2318.02	2447.43	3131.54
+GO:0030261: [BP] chromosome condensation|g__Clostridium.s__Clostridium_thermocellum	35.245	378.631	231.085	1476.91	1305.28	1935.4
+GO:0030261: [BP] chromosome condensation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	907.442	2125.74	1515.98	841.108	1142.16	1196.14
+GO:0030261: [BP] chromosome condensation|g__Escherichia.s__Escherichia_coli	0.109368	0	0	0	0	0
+GO:0030266: [MF] quinate 3-dehydrogenase (NAD+) activity	0.0327619	0	0	0	0	0
+GO:0030266: [MF] quinate 3-dehydrogenase (NAD+) activity|g__Escherichia.s__Escherichia_coli	0.0327619	0	0	0	0	0
+GO:0030268: [MF] methylenetetrahydromethanopterin dehydrogenase activity	6.52795	5.96223	21.7131	10.4726	10.4144	28.2812
+GO:0030268: [MF] methylenetetrahydromethanopterin dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	6.52795	5.96223	21.7131	10.4726	10.4144	28.2812
+GO:0030269: [MF] tetrahydromethanopterin S-methyltransferase activity	26.7966	9.15881	23.6886	22.4062	18.9856	22.9934
+GO:0030269: [MF] tetrahydromethanopterin S-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	26.7966	9.15881	23.6886	22.4062	18.9856	22.9934
+GO:0030270: [MF] formylmethanofuran-tetrahydromethanopterin N-formyltransferase activity	0.615063	0.430891	1.07935	0.989756	0.893184	2.66469
+GO:0030270: [MF] formylmethanofuran-tetrahydromethanopterin N-formyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.615063	0.430891	1.07935	0.989756	0.893184	2.66469
+GO:0030272: [MF] 5-formyltetrahydrofolate cyclo-ligase activity	4.04441	28.8063	17.0263	112.805	85.4843	97.9911
+GO:0030272: [MF] 5-formyltetrahydrofolate cyclo-ligase activity|g__Clostridium.s__Clostridium_thermocellum	4.04441	28.8063	16.8272	112.805	85.4843	97.7769
+GO:0030272: [MF] 5-formyltetrahydrofolate cyclo-ligase activity|g__Escherichia.s__Escherichia_coli	0	0	0.199145	0	0	0.21418
+GO:0030288: [CC] outer membrane-bounded periplasmic space	17.4246	129.662	123.733	230.393	208.623	213.653
+GO:0030288: [CC] outer membrane-bounded periplasmic space|g__Clostridium.s__Clostridium_thermocellum	0.738989	113.725	100.607	227.825	204.608	207.385
+GO:0030288: [CC] outer membrane-bounded periplasmic space|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.4668	15.9374	18.6096	2.48895	4.0153	5.36667
+GO:0030288: [CC] outer membrane-bounded periplasmic space|g__Escherichia.s__Escherichia_coli	3.21888	0	4.01753	0	0	0.902223
+GO:0030288: [CC] outer membrane-bounded periplasmic space|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.498786	0.0785896	0	0
+GO:0030337: [MF] DNA polymerase processivity factor activity	0.179753	0.159437	0.0770868	0.595043	0.519394	1.1055
+GO:0030337: [MF] DNA polymerase processivity factor activity|g__Escherichia.s__Escherichia_coli	0.0136346	0	0	0	0	0
+GO:0030337: [MF] DNA polymerase processivity factor activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.166118	0.159437	0.0770868	0.595043	0.519394	1.1055
+GO:0030388: [BP] fructose 1,6-bisphosphate metabolic process	70.5196	253.916	185.44	531.912	522.567	515.549
+GO:0030388: [BP] fructose 1,6-bisphosphate metabolic process|g__Clostridium.s__Clostridium_thermocellum	9.251	187.596	131.683	467.604	448.693	467.214
+GO:0030388: [BP] fructose 1,6-bisphosphate metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	61.2687	66.3204	53.7575	64.3077	73.8739	48.3358
+GO:0030393: [BP] fructoselysine metabolic process	0.040928	0	0.0374834	0	0	0
+GO:0030393: [BP] fructoselysine metabolic process|g__Escherichia.s__Escherichia_coli	0.040928	0	0.0374834	0	0	0
+GO:0030409: [MF] glutamate formimidoyltransferase activity	38.7195	12.9166	45.4751	2.07255	4.42169	4.76219
+GO:0030409: [MF] glutamate formimidoyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	38.7195	12.9166	45.4751	2.07255	4.42169	4.76219
+GO:0030410: [MF] nicotianamine synthase activity	0	0	0	0.458381	0.165789	0.19869
+GO:0030410: [MF] nicotianamine synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0.458381	0.165789	0.19869
+GO:0030418: [BP] nicotianamine biosynthetic process	0	0	0	0.458381	0.165789	0.19869
+GO:0030418: [BP] nicotianamine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0.458381	0.165789	0.19869
+GO:0030420: [BP] establishment of competence for transformation	26.6111	282.329	362.044	180.511	165.892	181.106
+GO:0030420: [BP] establishment of competence for transformation|g__Clostridium.s__Clostridium_thermocellum	26.4095	282.329	361.857	180.511	165.892	181.106
+GO:0030420: [BP] establishment of competence for transformation|g__Escherichia.s__Escherichia_coli	0.201602	0	0.187552	0	0	0
+GO:0030428: [CC] cell septum	0.123392	0	0	0	0	0
+GO:0030428: [CC] cell septum|g__Escherichia.s__Escherichia_coli	0.123392	0	0	0	0	0
+GO:0030430: [CC] host cell cytoplasm	14.8234	0	18.3006	0	0	19.8313
+GO:0030430: [CC] host cell cytoplasm|g__Escherichia.s__Escherichia_coli	14.8234	0	18.3006	0	0	19.8313
+GO:0030435: [BP] sporulation resulting in formation of a cellular spore	305.004	732.425	485.842	1545.83	1440.33	2197.97
+GO:0030435: [BP] sporulation resulting in formation of a cellular spore|g__Clostridium.s__Clostridium_thermocellum	79.6942	328.256	169.846	1262.16	1104.35	1594.63
+GO:0030435: [BP] sporulation resulting in formation of a cellular spore|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	225.31	404.169	315.996	283.672	335.978	603.333
+GO:0030436: [BP] asexual sporulation	1.06843	21.4712	7.272	53.8536	45.1479	49.5785
+GO:0030436: [BP] asexual sporulation|g__Clostridium.s__Clostridium_thermocellum	1.06843	21.4712	7.272	53.8536	45.1479	49.5785
+GO:0030497: [BP] fatty acid elongation	1.23664	9.73149	5.54831	27.9807	25.9851	38.4535
+GO:0030497: [BP] fatty acid elongation|g__Clostridium.s__Clostridium_thermocellum	1.23664	9.73149	5.3981	27.9807	25.9851	38.4535
+GO:0030497: [BP] fatty acid elongation|g__Escherichia.s__Escherichia_coli	0	0	0.150204	0	0	0
+GO:0030515: [MF] snoRNA binding	0	0	4.51064	3.85666	1.44687	0
+GO:0030515: [MF] snoRNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	4.51064	3.85666	1.44687	0
+GO:0030529: [CC] intracellular ribonucleoprotein complex	0	1.72865	4.51064	4.31723	2.25068	0
+GO:0030529: [CC] intracellular ribonucleoprotein complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	1.72865	4.51064	4.31723	2.25068	0
+GO:0030541: [BP] plasmid partitioning	0.0836546	0	0	0	0	0
+GO:0030541: [BP] plasmid partitioning|g__Escherichia.s__Escherichia_coli	0.0836546	0	0	0	0	0
+GO:0030573: [BP] bile acid catabolic process	0.157247	0	0	0	0	0
+GO:0030573: [BP] bile acid catabolic process|g__Escherichia.s__Escherichia_coli	0.157247	0	0	0	0	0
+GO:0030599: [MF] pectinesterase activity	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0030599: [MF] pectinesterase activity|g__Clostridium.s__Clostridium_thermocellum	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0030604: [MF] 1-deoxy-D-xylulose-5-phosphate reductoisomerase activity	6.30255	12.792	5.92476	25.5152	23.586	18.452
+GO:0030604: [MF] 1-deoxy-D-xylulose-5-phosphate reductoisomerase activity|g__Clostridium.s__Clostridium_thermocellum	1.5856	8.00737	3.75655	20.4672	19.2295	15.9648
+GO:0030604: [MF] 1-deoxy-D-xylulose-5-phosphate reductoisomerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.67053	4.78465	2.16822	5.04796	4.35649	2.48715
+GO:0030604: [MF] 1-deoxy-D-xylulose-5-phosphate reductoisomerase activity|g__Escherichia.s__Escherichia_coli	0.0464207	0	0	0	0	0
+GO:0030632: [BP] D-alanine biosynthetic process	5.98602	12.431	8.13114	28.4637	26.1066	25.8735
+GO:0030632: [BP] D-alanine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.852732	8.32088	5.31565	23.5014	22.1396	20.8272
+GO:0030632: [BP] D-alanine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.03638	4.11012	2.81549	4.96229	3.96708	5.04632
+GO:0030632: [BP] D-alanine biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0969003	0	0	0	0	0
+GO:0030643: [BP] cellular phosphate ion homeostasis	135.519	181.203	114.123	130.628	159.54	130.57
+GO:0030643: [BP] cellular phosphate ion homeostasis|g__Clostridium.s__Clostridium_thermocellum	0.873002	8.92465	7.92108	11.9012	13.2486	11.9292
+GO:0030643: [BP] cellular phosphate ion homeostasis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	134.535	172.094	104.632	117.972	146.035	117.723
+GO:0030643: [BP] cellular phosphate ion homeostasis|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.112378
+GO:0030643: [BP] cellular phosphate ion homeostasis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.111434	0.184127	1.56966	0.754758	0.256333	0.805659
+GO:0030655: [BP] beta-lactam antibiotic catabolic process	211864	95932	117416	37667.8	49698.2	24928.3
+GO:0030655: [BP] beta-lactam antibiotic catabolic process|g__Clostridium.s__Clostridium_thermocellum	133936	95932	83193.2	37667.8	49698.2	17083.2
+GO:0030655: [BP] beta-lactam antibiotic catabolic process|g__Escherichia.s__Escherichia_coli	77927.6	0	34222.8	0	0	7845.05
+GO:0030674: [MF] protein binding, bridging	0.0814915	0	0.0755531	0	0	0
+GO:0030674: [MF] protein binding, bridging|g__Escherichia.s__Escherichia_coli	0.0814915	0	0.0755531	0	0	0
+GO:0030677: [CC] ribonuclease P complex	1.77181	2.26862	1.82067	5.01568	0.895831	6.99426
+GO:0030677: [CC] ribonuclease P complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.77181	2.26862	1.82067	5.01568	0.895831	6.99426
+GO:0030694: [CC] bacterial-type flagellum basal body, rod	6.14168	22.8354	18.6251	152.17	135.912	126.108
+GO:0030694: [CC] bacterial-type flagellum basal body, rod|g__Clostridium.s__Clostridium_thermocellum	6.14168	22.8354	18.6251	152.17	135.912	126.108
+GO:0030697: [MF] S-adenosylmethionine-dependent tRNA (m5U54) methyltransferase activity	0.0511114	0	0	0	0	0
+GO:0030697: [MF] S-adenosylmethionine-dependent tRNA (m5U54) methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0511114	0	0	0	0	0
+GO:0030698: [MF] 5,10-methylenetetrahydrofolate-dependent tRNA (m5U54) methyltransferase activity	16.943	33.2904	24.8852	49.5534	49.4214	42.0487
+GO:0030698: [MF] 5,10-methylenetetrahydrofolate-dependent tRNA (m5U54) methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.54783	8.23481	3.57378	33.2139	32.0653	25.7839
+GO:0030698: [MF] 5,10-methylenetetrahydrofolate-dependent tRNA (m5U54) methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.3952	25.0556	21.3114	16.3395	17.3561	16.2648
+GO:0030699: [MF] glycine reductase activity	149.417	194.567	244.91	115.624	154.387	113.778
+GO:0030699: [MF] glycine reductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	149.417	194.567	244.91	115.624	154.387	113.778
+GO:0030700: [CC] glycine reductase complex	110.176	158.799	207.333	85.4708	122.978	91.3728
+GO:0030700: [CC] glycine reductase complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	110.176	158.799	207.333	85.4708	122.978	91.3728
+GO:0030788: [MF] precorrin-2 C20-methyltransferase activity	0.177006	0.170032	0	0.226492	0.513556	0.471145
+GO:0030788: [MF] precorrin-2 C20-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.177006	0.170032	0	0.226492	0.513556	0.471145
+GO:0030798: [MF] trans-aconitate 2-methyltransferase activity	0.0798145	0	0	0	0	0
+GO:0030798: [MF] trans-aconitate 2-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0798145	0	0	0	0	0
+GO:0030894: [CC] replisome	0.086644	0	0	0	0	0.0384186
+GO:0030894: [CC] replisome|g__Escherichia.s__Escherichia_coli	0.086644	0	0	0	0	0.0384186
+GO:0030955: [MF] potassium ion binding	82.6554	172.006	221.728	91.3702	114.013	90.918
+GO:0030955: [MF] potassium ion binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	82.4715	172.006	221.728	91.3702	114.013	90.918
+GO:0030955: [MF] potassium ion binding|g__Escherichia.s__Escherichia_coli	0.183884	0	0	0	0	0
+GO:0030961: [BP] peptidyl-arginine hydroxylation	0.0500177	0	0	0	0	0
+GO:0030961: [BP] peptidyl-arginine hydroxylation|g__Escherichia.s__Escherichia_coli	0.0500177	0	0	0	0	0
+GO:0030964: [CC] NADH dehydrogenase complex	0.0418759	0	0	0	0	0
+GO:0030964: [CC] NADH dehydrogenase complex|g__Escherichia.s__Escherichia_coli	0.0418759	0	0	0	0	0
+GO:0030976: [MF] thiamine pyrophosphate binding	176.047	372.93	307.356	857.798	734.696	711.694
+GO:0030976: [MF] thiamine pyrophosphate binding|g__Clostridium.s__Clostridium_thermocellum	34.6043	296.207	197.136	815.991	684.099	659
+GO:0030976: [MF] thiamine pyrophosphate binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	140.286	75.2662	108.498	40.4161	49.8643	52.1933
+GO:0030976: [MF] thiamine pyrophosphate binding|g__Escherichia.s__Escherichia_coli	0.213511	0	0.225667	0	0	0.0616379
+GO:0030976: [MF] thiamine pyrophosphate binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.942924	1.45645	1.49627	1.39118	0.732539	0.439162
+GO:0030980: [BP] alpha-glucan catabolic process	0.168573	0	0.129139	0	0	0
+GO:0030980: [BP] alpha-glucan catabolic process|g__Escherichia.s__Escherichia_coli	0.168573	0	0.129139	0	0	0
+GO:0030983: [MF] mismatched DNA binding	37.764	54.4805	44.2317	91.8449	100.232	96.6145
+GO:0030983: [MF] mismatched DNA binding|g__Clostridium.s__Clostridium_thermocellum	2.98984	19.5161	13.0179	52.0287	52.5978	53.8572
+GO:0030983: [MF] mismatched DNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	34.6387	33.8197	30.2089	39.5389	47.3924	42.4149
+GO:0030983: [MF] mismatched DNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.135471	1.14467	1.00474	0.277252	0.241922	0.342437
+GO:0031071: [MF] cysteine desulfurase activity	4.05751	56.0209	51.7516	114.906	99.4755	130.986
+GO:0031071: [MF] cysteine desulfurase activity|g__Clostridium.s__Clostridium_thermocellum	3.91947	55.9324	51.6661	114.788	99.4343	130.863
+GO:0031071: [MF] cysteine desulfurase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.138023	0.0884932	0.0854314	0.118083	0.0412138	0.122855
+GO:0031119: [BP] tRNA pseudouridine synthesis	3.29281	13.1071	9.93864	29.9147	30.6453	21.9864
+GO:0031119: [BP] tRNA pseudouridine synthesis|g__Clostridium.s__Clostridium_thermocellum	1.44257	11.3463	8.44567	28.0432	29.1417	20.7401
+GO:0031119: [BP] tRNA pseudouridine synthesis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.964506	0.884605	0.57055	1.30193	0.757714	0.359253
+GO:0031119: [BP] tRNA pseudouridine synthesis|g__Escherichia.s__Escherichia_coli	0.133186	0	0	0	0	0
+GO:0031119: [BP] tRNA pseudouridine synthesis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.752551	0.87625	0.922425	0.569526	0.745864	0.887056
+GO:0031154: [BP] culmination involved in sorocarp development	0.0403933	0	0.0750119	0	0	0
+GO:0031154: [BP] culmination involved in sorocarp development|g__Escherichia.s__Escherichia_coli	0.0403933	0	0.0750119	0	0	0
+GO:0031160: [CC] spore wall	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0031160: [CC] spore wall|g__Clostridium.s__Clostridium_thermocellum	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0031167: [BP] rRNA methylation	5.43679	17.2148	17.3638	40.546	37.9954	59.0436
+GO:0031167: [BP] rRNA methylation|g__Clostridium.s__Clostridium_thermocellum	2.10947	15.9748	14.7093	39.1462	36.2457	56.1881
+GO:0031167: [BP] rRNA methylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.26581	1.00339	2.54012	1.33674	1.74978	2.77348
+GO:0031167: [BP] rRNA methylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0615379	0.236635	0.11439	0.0630458	0	0.0819791
+GO:0031176: [MF] endo-1,4-beta-xylanase activity	39.2754	60.4228	57.7899	127.287	102.867	96.3288
+GO:0031176: [MF] endo-1,4-beta-xylanase activity|g__Clostridium.s__Clostridium_thermocellum	39.2754	60.4228	57.7899	127.287	102.867	96.3288
+GO:0031218: [MF] arabinogalactan endo-1,4-beta-galactosidase activity	1.0845	6.84132	6.44917	14.4016	15.454	20.6395
+GO:0031218: [MF] arabinogalactan endo-1,4-beta-galactosidase activity|g__Clostridium.s__Clostridium_thermocellum	1.0845	6.84132	6.44917	14.4016	15.454	20.6395
+GO:0031220: [MF] maltodextrin phosphorylase activity	0.0643814	0	0.0803795	0	0	0
+GO:0031220: [MF] maltodextrin phosphorylase activity|g__Escherichia.s__Escherichia_coli	0.0643814	0	0.0803795	0	0	0
+GO:0031222: [BP] arabinan catabolic process	0.249773	2.9802	2.21887	5.951	5.87756	6.05251
+GO:0031222: [BP] arabinan catabolic process|g__Clostridium.s__Clostridium_thermocellum	0.249773	2.9802	2.21887	5.951	5.87756	6.05251
+GO:0031226: [CC] intrinsic component of plasma membrane	3.09009	12.201	9.36259	38.7485	36.6992	33.1583
+GO:0031226: [CC] intrinsic component of plasma membrane|g__Clostridium.s__Clostridium_thermocellum	2.40139	11.7983	8.61342	38.0245	36.3482	32.7064
+GO:0031226: [CC] intrinsic component of plasma membrane|g__Escherichia.s__Escherichia_coli	0.454389	0	0.262835	0	0	0
+GO:0031226: [CC] intrinsic component of plasma membrane|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.23434	0.402747	0.486382	0.724044	0.350958	0.451871
+GO:0031233: [CC] intrinsic component of external side of plasma membrane	0.0426293	0	0	0	0	0
+GO:0031233: [CC] intrinsic component of external side of plasma membrane|g__Escherichia.s__Escherichia_coli	0.0426293	0	0	0	0	0
+GO:0031234: [CC] extrinsic component of cytoplasmic side of plasma membrane	0.0155303	0	0	0	0	0
+GO:0031234: [CC] extrinsic component of cytoplasmic side of plasma membrane|g__Escherichia.s__Escherichia_coli	0.0155303	0	0	0	0	0
+GO:0031237: [CC] intrinsic component of periplasmic side of plasma membrane	0.175281	0	0	0	0	0
+GO:0031237: [CC] intrinsic component of periplasmic side of plasma membrane|g__Escherichia.s__Escherichia_coli	0.175281	0	0	0	0	0
+GO:0031240: [CC] external side of cell outer membrane	0.0514031	0	0	0	0	0
+GO:0031240: [CC] external side of cell outer membrane|g__Escherichia.s__Escherichia_coli	0.0514031	0	0	0	0	0
+GO:0031241: [CC] periplasmic side of cell outer membrane	0	0	0	0	0	0.0514188
+GO:0031241: [CC] periplasmic side of cell outer membrane|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0514188
+GO:0031248: [CC] protein acetyltransferase complex	0.0736413	0	0.135454	0	0	0
+GO:0031248: [CC] protein acetyltransferase complex|g__Escherichia.s__Escherichia_coli	0.0736413	0	0.135454	0	0	0
+GO:0031280: [BP] negative regulation of cyclase activity	0.108493	0	0	0	0	0
+GO:0031280: [BP] negative regulation of cyclase activity|g__Escherichia.s__Escherichia_coli	0.108493	0	0	0	0	0
+GO:0031297: [BP] replication fork processing	0.0241582	0	0	0	0	0
+GO:0031297: [BP] replication fork processing|g__Escherichia.s__Escherichia_coli	0.0241582	0	0	0	0	0
+GO:0031388: [BP] organic acid phosphorylation	42.9862	9.93042	11.9993	14.1016	15.5978	11.5215
+GO:0031388: [BP] organic acid phosphorylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	42.8886	9.93042	11.9993	14.1016	15.5978	11.3916
+GO:0031388: [BP] organic acid phosphorylation|g__Escherichia.s__Escherichia_coli	0.0976051	0	0	0	0	0.129873
+GO:0031402: [MF] sodium ion binding	0.200047	0	0	0	0	0
+GO:0031402: [MF] sodium ion binding|g__Escherichia.s__Escherichia_coli	0.200047	0	0	0	0	0
+GO:0031418: [MF] L-ascorbic acid binding	0.0692422	0	0	0	0	0
+GO:0031418: [MF] L-ascorbic acid binding|g__Escherichia.s__Escherichia_coli	0.0692422	0	0	0	0	0
+GO:0031419: [MF] cobalamin binding	154.579	221.709	240.23	253.182	238.668	170.708
+GO:0031419: [MF] cobalamin binding|g__Clostridium.s__Clostridium_thermocellum	8.41394	130.346	127.939	169.82	136.309	98.5787
+GO:0031419: [MF] cobalamin binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	144.278	89.4375	110.055	81.7648	101.578	70.7379
+GO:0031419: [MF] cobalamin binding|g__Escherichia.s__Escherichia_coli	0.0381088	0	0.0127651	0	0	0.0549114
+GO:0031419: [MF] cobalamin binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.84983	1.92543	2.22374	1.59718	0.781131	1.3366
+GO:0031460: [BP] glycine betaine transport	0.328907	0	0.042851	0	0	0
+GO:0031460: [BP] glycine betaine transport|g__Escherichia.s__Escherichia_coli	0.328907	0	0.042851	0	0	0
+GO:0031515: [CC] tRNA (m1A) methyltransferase complex	0.495997	0.158597	0.153407	0.169191	0	0
+GO:0031515: [CC] tRNA (m1A) methyltransferase complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.495997	0.158597	0.153407	0.169191	0	0
+GO:0031564: [BP] transcription antitermination	86.1381	170.16	128.306	326.122	359.305	290.429
+GO:0031564: [BP] transcription antitermination|g__Clostridium.s__Clostridium_thermocellum	12.7564	60.6285	41.9023	224.412	224.981	181.282
+GO:0031564: [BP] transcription antitermination|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	73.3022	109.531	86.4041	101.71	134.323	109.123
+GO:0031564: [BP] transcription antitermination|g__Escherichia.s__Escherichia_coli	0.0795229	0	0	0	0	0.0241572
+GO:0031669: [BP] cellular response to nutrient levels	0.25614	0	0	0	0	0
+GO:0031669: [BP] cellular response to nutrient levels|g__Escherichia.s__Escherichia_coli	0.25614	0	0	0	0	0
+GO:0031956: [MF] medium-chain fatty acid-CoA ligase activity	0.0767036	0	0	0	0	0.0216994
+GO:0031956: [MF] medium-chain fatty acid-CoA ligase activity|g__Escherichia.s__Escherichia_coli	0.0767036	0	0	0	0	0.0216994
+GO:0031992: [MF] energy transducer activity	0.0426293	0	0	0	0	0
+GO:0031992: [MF] energy transducer activity|g__Escherichia.s__Escherichia_coli	0.0426293	0	0	0	0	0
+GO:0032026: [BP] response to magnesium ion	0	0	0.244476	0	0	0.175277
+GO:0032026: [BP] response to magnesium ion|g__Escherichia.s__Escherichia_coli	0	0	0.244476	0	0	0.175277
+GO:0032049: [BP] cardiolipin biosynthetic process	0.17618	3.14249	2.99236	4.88365	5.64617	5.86957
+GO:0032049: [BP] cardiolipin biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.139359	3.14249	2.90972	4.88365	5.64617	5.83995
+GO:0032049: [BP] cardiolipin biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0368206	0	0.0826348	0	0	0.0296224
+GO:0032135: [MF] DNA insertion or deletion binding	0.315175	0	0	0	0	0
+GO:0032135: [MF] DNA insertion or deletion binding|g__Escherichia.s__Escherichia_coli	0.315175	0	0	0	0	0
+GO:0032153: [CC] cell division site	63.2322	136.956	112.466	249.214	229.757	272.368
+GO:0032153: [CC] cell division site|g__Clostridium.s__Clostridium_thermocellum	11.9535	81.6634	59.739	203.112	181.141	232.215
+GO:0032153: [CC] cell division site|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	43.0316	45.2198	45.1907	42.857	46.1551	35.4182
+GO:0032153: [CC] cell division site|g__Escherichia.s__Escherichia_coli	0.294201	0	0.0662161	0	0	0.0949793
+GO:0032153: [CC] cell division site|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	7.95292	10.0726	7.46988	3.24533	2.46094	4.63953
+GO:0032196: [BP] transposition	1.22062	0	0.559229	0	0	0.106039
+GO:0032196: [BP] transposition|g__Escherichia.s__Escherichia_coli	1.22062	0	0.559229	0	0	0.106039
+GO:0032238: [BP] adenosine transport	0.0219952	0	0	0	0	0.0584364
+GO:0032238: [BP] adenosine transport|g__Escherichia.s__Escherichia_coli	0.0219952	0	0	0	0	0.0584364
+GO:0032259: [BP] methylation	0.0764849	0	0	0	0	0
+GO:0032259: [BP] methylation|g__Escherichia.s__Escherichia_coli	0.0764849	0	0	0	0	0
+GO:0032264: [BP] IMP salvage	0.125603	0.634761	0.54087	0.0564054	0.0984227	0.309904
+GO:0032264: [BP] IMP salvage|g__Escherichia.s__Escherichia_coli	0.125603	0	0.23311	0	0	0.309904
+GO:0032264: [BP] IMP salvage|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.634761	0.307761	0.0564054	0.0984227	0
+GO:0032297: [BP] negative regulation of DNA-dependent DNA replication initiation	0.12276	0	0.227832	0	0	0
+GO:0032297: [BP] negative regulation of DNA-dependent DNA replication initiation|g__Escherichia.s__Escherichia_coli	0.12276	0	0.227832	0	0	0
+GO:0032324: [BP] molybdopterin cofactor biosynthetic process	86.0071	34.7013	28.6731	35.9442	36.881	25.9151
+GO:0032324: [BP] molybdopterin cofactor biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	85.9615	34.4384	28.4195	35.6175	36.5763	25.4597
+GO:0032324: [BP] molybdopterin cofactor biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.045643	0.262912	0.253543	0.326694	0.304774	0.455429
+GO:0032450: [MF] maltose alpha-glucosidase activity	0.016867	0	0	0	0	0
+GO:0032450: [MF] maltose alpha-glucosidase activity|g__Escherichia.s__Escherichia_coli	0.016867	0	0	0	0	0
+GO:0032467: [BP] positive regulation of cytokinesis	0.0424106	0	0	0	0	0
+GO:0032467: [BP] positive regulation of cytokinesis|g__Escherichia.s__Escherichia_coli	0.0424106	0	0	0	0	0
+GO:0032508: [BP] DNA duplex unwinding	0.234704	0	0.0936859	0	0	0.0384186
+GO:0032508: [BP] DNA duplex unwinding|g__Escherichia.s__Escherichia_coli	0.234704	0	0.0936859	0	0	0.0384186
+GO:0032543: [BP] mitochondrial translation	0.0469554	0	0	0	0	0
+GO:0032543: [BP] mitochondrial translation|g__Escherichia.s__Escherichia_coli	0.0469554	0	0	0	0	0
+GO:0032549: [MF] ribonucleoside binding	35.0364	32.9571	22.0045	74.5482	73.3699	59.6743
+GO:0032549: [MF] ribonucleoside binding|g__Clostridium.s__Clostridium_thermocellum	4.13446	16.7218	9.551	60.1148	58.1994	51.541
+GO:0032549: [MF] ribonucleoside binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	30.8268	15.7939	11.9398	13.5998	14.9322	7.92765
+GO:0032549: [MF] ribonucleoside binding|g__Escherichia.s__Escherichia_coli	0.0313279	0	0.0232749	0	0	0.0166869
+GO:0032549: [MF] ribonucleoside binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0438688	0.441299	0.490441	0.833547	0.23832	0.189021
+GO:0032775: [BP] DNA methylation on adenine	0.0768494	0	0.071268	0	0	0
+GO:0032775: [BP] DNA methylation on adenine|g__Escherichia.s__Escherichia_coli	0.0768494	0	0.071268	0	0	0
+GO:0032781: [BP] positive regulation of ATPase activity	0.0933276	0	0	0	0	0
+GO:0032781: [BP] positive regulation of ATPase activity|g__Escherichia.s__Escherichia_coli	0.0933276	0	0	0	0	0
+GO:0032784: [BP] regulation of DNA-templated transcription, elongation	130.454	227.407	165.567	492.175	498.609	433.19
+GO:0032784: [BP] regulation of DNA-templated transcription, elongation|g__Clostridium.s__Clostridium_thermocellum	14.6136	76.1035	52.063	280.642	256.965	244.417
+GO:0032784: [BP] regulation of DNA-templated transcription, elongation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	115.488	151.304	113.504	211.533	241.643	188.773
+GO:0032784: [BP] regulation of DNA-templated transcription, elongation|g__Escherichia.s__Escherichia_coli	0.351534	0	0	0	0	0
+GO:0032955: [BP] regulation of barrier septum assembly	57.2966	189.028	160.35	360.639	349.388	259.476
+GO:0032955: [BP] regulation of barrier septum assembly|g__Clostridium.s__Clostridium_thermocellum	15.7858	124.745	96.0914	298.916	275.98	215.301
+GO:0032955: [BP] regulation of barrier septum assembly|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	41.0953	64.2831	64.2589	61.723	73.4074	44.1752
+GO:0032955: [BP] regulation of barrier septum assembly|g__Escherichia.s__Escherichia_coli	0.415453	0	0	0	0	0
+GO:0032973: [BP] amino acid export	0.162035	0	0	0	0	0.215603
+GO:0032973: [BP] amino acid export|g__Escherichia.s__Escherichia_coli	0.162035	0	0	0	0	0.215603
+GO:0032993: [CC] protein-DNA complex	0.721806	0	0.140191	0	0	0
+GO:0032993: [CC] protein-DNA complex|g__Escherichia.s__Escherichia_coli	0.721806	0	0.140191	0	0	0
+GO:0033094: [MF] butane-1,4-diamine:2-oxoglutarate aminotransferase activity	176.201	53.7552	61.3663	40.5953	46.613	27.8609
+GO:0033094: [MF] butane-1,4-diamine:2-oxoglutarate aminotransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	176.201	53.7552	61.3663	40.5953	46.613	27.8041
+GO:0033094: [MF] butane-1,4-diamine:2-oxoglutarate aminotransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0567224
+GO:0033177: [CC] proton-transporting two-sector ATPase complex, proton-transporting domain	2.82758	7.04141	4.11212	60.1808	53.6711	43.6947
+GO:0033177: [CC] proton-transporting two-sector ATPase complex, proton-transporting domain|g__Clostridium.s__Clostridium_thermocellum	2.82758	7.04141	4.11212	60.1808	53.6711	43.6947
+GO:0033178: [CC] proton-transporting two-sector ATPase complex, catalytic domain	79.3698	44.1755	34.4904	71.0285	83.0056	71.7752
+GO:0033178: [CC] proton-transporting two-sector ATPase complex, catalytic domain|g__Clostridium.s__Clostridium_thermocellum	0.733958	4.23862	2.6684	25.2718	23.3193	16.5768
+GO:0033178: [CC] proton-transporting two-sector ATPase complex, catalytic domain|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	78.4606	39.8621	31.5094	45.4648	59.3916	55.0429
+GO:0033178: [CC] proton-transporting two-sector ATPase complex, catalytic domain|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.175281	0.0748178	0.312587	0.291851	0.294682	0.155485
+GO:0033179: [CC] proton-transporting V-type ATPase, V0 domain	133.288	74.0117	69.1581	115.549	119.514	110.143
+GO:0033179: [CC] proton-transporting V-type ATPase, V0 domain|g__Clostridium.s__Clostridium_thermocellum	1.69475	7.13159	4.94257	42.9923	43.1629	37.2504
+GO:0033179: [CC] proton-transporting V-type ATPase, V0 domain|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	130.988	66.5817	62.9308	71.0865	75.4551	71.5928
+GO:0033179: [CC] proton-transporting V-type ATPase, V0 domain|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.605268	0.298384	1.28476	1.47035	0.896417	1.29996
+GO:0033181: [CC] plasma membrane proton-transporting V-type ATPase complex	0.85927	1.48119	1.15811	14.8812	12.7606	11.0413
+GO:0033181: [CC] plasma membrane proton-transporting V-type ATPase complex|g__Clostridium.s__Clostridium_thermocellum	0.844128	1.36483	0.989498	14.7573	12.6659	10.6787
+GO:0033181: [CC] plasma membrane proton-transporting V-type ATPase complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0151414	0.116311	0.168608	0.123953	0.0946464	0.362616
+GO:0033202: [CC] DNA helicase complex	0.0503094	0	0.0470459	0	0	0
+GO:0033202: [CC] DNA helicase complex|g__Escherichia.s__Escherichia_coli	0.0503094	0	0.0470459	0	0	0
+GO:0033212: [BP] iron assimilation	0	0	0.198062	0	0	0
+GO:0033212: [BP] iron assimilation|g__Escherichia.s__Escherichia_coli	0	0	0.198062	0	0	0
+GO:0033228: [BP] cysteine export	0.090168	0	0.0573753	0	0	0.0861185
+GO:0033228: [BP] cysteine export|g__Escherichia.s__Escherichia_coli	0.090168	0	0.0573753	0	0	0.0861185
+GO:0033281: [CC] TAT protein transport complex	0.621406	0	0	0	0	0
+GO:0033281: [CC] TAT protein transport complex|g__Escherichia.s__Escherichia_coli	0.621406	0	0	0	0	0
+GO:0033362: [BP] lysine biosynthetic process via diaminopimelate, diaminopimelate-aminotransferase pathway	0.157101	6.67792	14.7784	14.832	20.9314	21.7579
+GO:0033362: [BP] lysine biosynthetic process via diaminopimelate, diaminopimelate-aminotransferase pathway|g__Clostridium.s__Clostridium_thermocellum	0.112212	6.54863	14.2787	14.7861	20.8913	21.728
+GO:0033362: [BP] lysine biosynthetic process via diaminopimelate, diaminopimelate-aminotransferase pathway|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0448896	0.129286	0.499643	0.0459351	0.0400853	0.0298488
+GO:0033384: [BP] geranyl diphosphate biosynthetic process	0.129589	0	0	0	0	0
+GO:0033384: [BP] geranyl diphosphate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.129589	0	0	0	0	0
+GO:0033387: [BP] putrescine biosynthetic process from ornithine	0.0726691	0	0.0220119	0	0	0
+GO:0033387: [BP] putrescine biosynthetic process from ornithine|g__Escherichia.s__Escherichia_coli	0.0726691	0	0.0220119	0	0	0
+GO:0033388: [BP] putrescine biosynthetic process from arginine	1.78679	13.4693	13.2085	36.5505	39.1243	37.5637
+GO:0033388: [BP] putrescine biosynthetic process from arginine|g__Clostridium.s__Clostridium_thermocellum	1.78679	13.4693	13.2085	36.5505	39.1243	37.5637
+GO:0033499: [BP] galactose catabolic process via UDP-galactose	0.0545626	0	0	0	0	0
+GO:0033499: [BP] galactose catabolic process via UDP-galactose|g__Escherichia.s__Escherichia_coli	0.0545626	0	0	0	0	0
+GO:0033539: [BP] fatty acid beta-oxidation using acyl-CoA dehydrogenase	0.12327	0	0.0611642	0	0	0
+GO:0033539: [BP] fatty acid beta-oxidation using acyl-CoA dehydrogenase|g__Escherichia.s__Escherichia_coli	0.12327	0	0.0611642	0	0	0
+GO:0033543: [BP] fatty acid beta-oxidation, unsaturated, even number, reductase/isomerase pathway	0.039008	0	0.144836	0	0	0
+GO:0033543: [BP] fatty acid beta-oxidation, unsaturated, even number, reductase/isomerase pathway|g__Escherichia.s__Escherichia_coli	0.039008	0	0.144836	0	0	0
+GO:0033554: [BP] cellular response to stress	18.2676	26.4392	23.0705	51.9233	53.0269	60.8482
+GO:0033554: [BP] cellular response to stress|g__Clostridium.s__Clostridium_thermocellum	3.384	11.554	11.2844	33.3054	26.5787	30.8817
+GO:0033554: [BP] cellular response to stress|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.3745	14.8853	9.86895	18.6179	26.4482	29.9665
+GO:0033554: [BP] cellular response to stress|g__Escherichia.s__Escherichia_coli	0.509097	0	1.91711	0	0	0
+GO:0033567: [BP] DNA replication, Okazaki fragment processing	0.0401017	0	0	0	0	0
+GO:0033567: [BP] DNA replication, Okazaki fragment processing|g__Escherichia.s__Escherichia_coli	0.0401017	0	0	0	0	0
+GO:0033592: [MF] RNA strand annealing activity	0	0	0	0	0	0.027294
+GO:0033592: [MF] RNA strand annealing activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.027294
+GO:0033608: [MF] formyl-CoA transferase activity	0.0441605	0	0	0	0	0
+GO:0033608: [MF] formyl-CoA transferase activity|g__Escherichia.s__Escherichia_coli	0.0441605	0	0	0	0	0
+GO:0033611: [BP] oxalate catabolic process	0.0441605	0	0	0	0	0.0418465
+GO:0033611: [BP] oxalate catabolic process|g__Escherichia.s__Escherichia_coli	0.0441605	0	0	0	0	0.0418465
+GO:0033644: [CC] host cell membrane	0	0	0.847052	0	0	0
+GO:0033644: [CC] host cell membrane|g__Escherichia.s__Escherichia_coli	0	0	0.847052	0	0	0
+GO:0033680: [MF] ATP-dependent DNA/RNA helicase activity	0.0579166	0	0.0179072	0	0	0.0256771
+GO:0033680: [MF] ATP-dependent DNA/RNA helicase activity|g__Escherichia.s__Escherichia_coli	0.0579166	0	0.0179072	0	0	0.0256771
+GO:0033721: [MF] aldehyde dehydrogenase (NADP+) activity	0.0479276	0	0	0	0	0
+GO:0033721: [MF] aldehyde dehydrogenase (NADP+) activity|g__Escherichia.s__Escherichia_coli	0.0479276	0	0	0	0	0
+GO:0033726: [MF] aldehyde ferredoxin oxidoreductase activity	209.021	34.6766	39.8562	70.1212	80.2354	39.5824
+GO:0033726: [MF] aldehyde ferredoxin oxidoreductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	209.021	34.6766	39.8562	70.1212	80.2354	39.5824
+GO:0033739: [MF] preQ1 synthase activity	0.0694853	0	0.129049	0	0	0
+GO:0033739: [MF] preQ1 synthase activity|g__Escherichia.s__Escherichia_coli	0.0694853	0	0.129049	0	0	0
+GO:0033743: [MF] peptide-methionine (R)-S-oxide reductase activity	2.37813	2.10927	1.97737	1.99371	1.68072	1.40121
+GO:0033743: [MF] peptide-methionine (R)-S-oxide reductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.85163	2.10927	1.80651	1.83144	1.68072	1.29517
+GO:0033743: [MF] peptide-methionine (R)-S-oxide reductase activity|g__Escherichia.s__Escherichia_coli	0.36789	0	0.170863	0	0	0
+GO:0033743: [MF] peptide-methionine (R)-S-oxide reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.158584	0	0	0.162278	0	0.106039
+GO:0033748: [MF] hydrogenase (acceptor) activity	0.0312793	0	0.0465498	0	0	0
+GO:0033748: [MF] hydrogenase (acceptor) activity|g__Escherichia.s__Escherichia_coli	0.0312793	0	0.0465498	0	0	0
+GO:0033764: [MF] steroid dehydrogenase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor	1.43953	0	0	0	0	0
+GO:0033764: [MF] steroid dehydrogenase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor|g__Escherichia.s__Escherichia_coli	1.43953	0	0	0	0	0
+GO:0033785: [MF] heptose 7-phosphate kinase activity	0.0189329	0	0.0702306	0	0	0
+GO:0033785: [MF] heptose 7-phosphate kinase activity|g__Escherichia.s__Escherichia_coli	0.0189329	0	0.0702306	0	0	0
+GO:0033786: [MF] heptose-1-phosphate adenylyltransferase activity	0.0189329	0	0.0702306	0	0	0
+GO:0033786: [MF] heptose-1-phosphate adenylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0189329	0	0.0702306	0	0	0
+GO:0033794: [MF] sarcosine reductase activity	39.2407	35.7679	37.5771	30.153	31.4085	22.4047
+GO:0033794: [MF] sarcosine reductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.2407	35.7679	37.5771	30.153	31.4085	22.4047
+GO:0033795: [MF] betaine reductase activity	39.2407	35.7679	37.5771	30.153	31.4085	22.4047
+GO:0033795: [MF] betaine reductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.2407	35.7679	37.5771	30.153	31.4085	22.4047
+GO:0033817: [MF] beta-ketoacyl-acyl-carrier-protein synthase II activity	66.4879	3.17819	4.16665	18.499	28.3962	21.9105
+GO:0033817: [MF] beta-ketoacyl-acyl-carrier-protein synthase II activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	66.4879	3.17819	4.16665	18.499	28.3962	21.9105
+GO:0033818: [MF] beta-ketoacyl-acyl-carrier-protein synthase III activity	4.04767	19.5069	7.83488	91.367	62.7221	37.8774
+GO:0033818: [MF] beta-ketoacyl-acyl-carrier-protein synthase III activity|g__Clostridium.s__Clostridium_thermocellum	4.04767	19.5069	7.83488	91.367	62.7221	37.8774
+GO:0033819: [MF] lipoyl(octanoyl) transferase activity	0.341083	0	0	0	0	0
+GO:0033819: [MF] lipoyl(octanoyl) transferase activity|g__Escherichia.s__Escherichia_coli	0.341083	0	0	0	0	0
+GO:0033856: [MF] pyridoxine 5'-phosphate synthase activity	0	0	0	0	0	0.0555582
+GO:0033856: [MF] pyridoxine 5'-phosphate synthase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0555582
+GO:0033862: [MF] UMP kinase activity	43.472	107.429	80.7567	190.647	224.319	333.813
+GO:0033862: [MF] UMP kinase activity|g__Clostridium.s__Clostridium_thermocellum	11.3218	67.1234	51.461	159.51	193.93	308.74
+GO:0033862: [MF] UMP kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	31.9732	40.3057	29.2957	30.9004	30.1003	24.9502
+GO:0033862: [MF] UMP kinase activity|g__Escherichia.s__Escherichia_coli	0.0843837	0	0	0	0	0
+GO:0033862: [MF] UMP kinase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0925984	0	0	0.236316	0.289365	0.123082
+GO:0033883: [MF] pyridoxal phosphatase activity	0.0746134	0	0.138477	0	0	0.0419435
+GO:0033883: [MF] pyridoxal phosphatase activity|g__Escherichia.s__Escherichia_coli	0.0746134	0	0.138477	0	0	0.0419435
+GO:0033897: [MF] ribonuclease T2 activity	0.0369908	0	0	0	0	0
+GO:0033897: [MF] ribonuclease T2 activity|g__Escherichia.s__Escherichia_coli	0.0369908	0	0	0	0	0
+GO:0033905: [MF] xylan endo-1,3-beta-xylosidase activity	16.3941	19.9949	19.8209	38.1925	25.6185	20.6253
+GO:0033905: [MF] xylan endo-1,3-beta-xylosidase activity|g__Clostridium.s__Clostridium_thermocellum	16.3941	19.9949	19.8209	38.1925	25.6185	20.6253
+GO:0033971: [MF] hydroxyisourate hydrolase activity	0	0	0	0	0	0.246875
+GO:0033971: [MF] hydroxyisourate hydrolase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.246875
+GO:0033990: [MF] ectoine synthase activity	0.395184	0.94332	0	0	0	0.131458
+GO:0033990: [MF] ectoine synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.395184	0.94332	0	0	0	0.131458
+GO:0034015: [MF] L-ribulose-5-phosphate 3-epimerase activity	0.0683187	0	0	0	0	0
+GO:0034015: [MF] L-ribulose-5-phosphate 3-epimerase activity|g__Escherichia.s__Escherichia_coli	0.0683187	0	0	0	0	0
+GO:0034023: [MF] 5-(carboxyamino)imidazole ribonucleotide mutase activity	5.36721	5.34754	4.64663	28.6754	36.4129	35.6437
+GO:0034023: [MF] 5-(carboxyamino)imidazole ribonucleotide mutase activity|g__Clostridium.s__Clostridium_thermocellum	2.61281	3.63587	3.39479	26.268	33.4033	33.0155
+GO:0034023: [MF] 5-(carboxyamino)imidazole ribonucleotide mutase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.53017	1.38868	0.939701	2.2926	2.8344	2.40446
+GO:0034023: [MF] 5-(carboxyamino)imidazole ribonucleotide mutase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.224229	0.322981	0.312136	0.114751	0.175186	0.223753
+GO:0034028: [MF] 5-(carboxyamino)imidazole ribonucleotide synthase activity	0.0529585	0	0.0982867	0	0	0
+GO:0034028: [MF] 5-(carboxyamino)imidazole ribonucleotide synthase activity|g__Escherichia.s__Escherichia_coli	0.0529585	0	0.0982867	0	0	0
+GO:0034038: [MF] deoxyhypusine synthase activity	0.125603	0	0	0.28919	0	0.0417172
+GO:0034038: [MF] deoxyhypusine synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.125603	0	0	0.28919	0	0.0417172
+GO:0034039: [MF] 8-oxo-7,8-dihydroguanine DNA N-glycosylase activity	0	0	0	0.189038	0.0550169	0.0819791
+GO:0034039: [MF] 8-oxo-7,8-dihydroguanine DNA N-glycosylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0.189038	0.0550169	0.0819791
+GO:0034040: [MF] lipid-transporting ATPase activity	0.150977	0	0	0	0	0.040456
+GO:0034040: [MF] lipid-transporting ATPase activity|g__Escherichia.s__Escherichia_coli	0.150977	0	0	0	0	0.040456
+GO:0034194: [BP] D-galactonate catabolic process	0.216379	0	0	0	0	0
+GO:0034194: [BP] D-galactonate catabolic process|g__Escherichia.s__Escherichia_coli	0.216379	0	0	0	0	0
+GO:0034198: [BP] cellular response to amino acid starvation	0	0	0	0	0	0.0362842
+GO:0034198: [BP] cellular response to amino acid starvation|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0362842
+GO:0034200: [MF] D,D-heptose 1,7-bisphosphate phosphatase activity	0.114108	0	0.21227	0	0	0
+GO:0034200: [MF] D,D-heptose 1,7-bisphosphate phosphatase activity|g__Escherichia.s__Escherichia_coli	0.114108	0	0.21227	0	0	0
+GO:0034213: [BP] quinolinate catabolic process	0.0653293	0	0	0	0	0
+GO:0034213: [BP] quinolinate catabolic process|g__Escherichia.s__Escherichia_coli	0.0653293	0	0	0	0	0
+GO:0034219: [BP] carbohydrate transmembrane transport	0.699835	0	0.245965	0	0	0.108206
+GO:0034219: [BP] carbohydrate transmembrane transport|g__Escherichia.s__Escherichia_coli	0.699835	0	0.245965	0	0	0.108206
+GO:0034220: [BP] ion transmembrane transport	0.466103	0	0	0	0	0.102676
+GO:0034220: [BP] ion transmembrane transport|g__Escherichia.s__Escherichia_coli	0.466103	0	0	0	0	0.102676
+GO:0034224: [BP] cellular response to zinc ion starvation	0.0484137	0	0	0	0	0
+GO:0034224: [BP] cellular response to zinc ion starvation|g__Escherichia.s__Escherichia_coli	0.0484137	0	0	0	0	0
+GO:0034227: [BP] tRNA thio-modification	2.03138	8.16051	7.27895	27.6894	29.1535	21.9688
+GO:0034227: [BP] tRNA thio-modification|g__Clostridium.s__Clostridium_thermocellum	1.60429	7.88873	6.48377	27.1068	28.7997	21.395
+GO:0034227: [BP] tRNA thio-modification|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.427095	0.271734	0.79518	0.582508	0.353779	0.573821
+GO:0034257: [MF] nicotinamide riboside transmembrane transporter activity	0.0875918	4.78624	2.8431	6.88935	7.03481	9.66661
+GO:0034257: [MF] nicotinamide riboside transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	0.0875918	4.78624	2.8431	6.88935	7.03481	9.66661
+GO:0034567: [MF] chromate reductase activity	0.165389	0	0	0	0	0
+GO:0034567: [MF] chromate reductase activity|g__Escherichia.s__Escherichia_coli	0.165389	0	0	0	0	0
+GO:0034599: [BP] cellular response to oxidative stress	0.0685131	0	0	0	0	0
+GO:0034599: [BP] cellular response to oxidative stress|g__Escherichia.s__Escherichia_coli	0.0685131	0	0	0	0	0
+GO:0034618: [MF] arginine binding	60.3777	60.9099	61.8876	46.3072	57.1298	66.983
+GO:0034618: [MF] arginine binding|g__Clostridium.s__Clostridium_thermocellum	1.71324	12.8289	13.414	29.8852	32.2591	32.9507
+GO:0034618: [MF] arginine binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	58.4295	48.081	48.3186	16.422	24.8708	34.0323
+GO:0034618: [MF] arginine binding|g__Escherichia.s__Escherichia_coli	0.234947	0	0.154985	0	0	0
+GO:0034628: [BP] 'de novo' NAD biosynthetic process from aspartate	0.0653293	0	0	0	0	0
+GO:0034628: [BP] 'de novo' NAD biosynthetic process from aspartate|g__Escherichia.s__Escherichia_coli	0.0653293	0	0	0	0	0
+GO:0034639: [MF] L-amino acid efflux transmembrane transporter activity	0.162035	0	0	0	0	0.215603
+GO:0034639: [MF] L-amino acid efflux transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.162035	0	0	0	0	0.215603
+GO:0034661: [BP] ncRNA catabolic process	0.0135617	0	0	0	0	0.0352171
+GO:0034661: [BP] ncRNA catabolic process|g__Escherichia.s__Escherichia_coli	0.0135617	0	0	0	0	0.0352171
+GO:0034700: [MF] allulose 6-phosphate 3-epimerase activity	0.0890257	0	0	0	0	0
+GO:0034700: [MF] allulose 6-phosphate 3-epimerase activity|g__Escherichia.s__Escherichia_coli	0.0890257	0	0	0	0	0
+GO:0034775: [BP] glutathione transmembrane transport	0.090168	0	0.0573753	0	0	0
+GO:0034775: [BP] glutathione transmembrane transport|g__Escherichia.s__Escherichia_coli	0.090168	0	0.0573753	0	0	0
+GO:0034979: [MF] NAD-dependent protein deacetylase activity	45.9588	119.606	131.267	111.654	132.763	170.964
+GO:0034979: [MF] NAD-dependent protein deacetylase activity|g__Clostridium.s__Clostridium_thermocellum	6.95135	45.9196	41.1006	72.7585	83.0025	129.835
+GO:0034979: [MF] NAD-dependent protein deacetylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.0074	73.6862	90.1666	38.8953	49.7602	41.129
+GO:0035312: [MF] 5'-3' exodeoxyribonuclease activity	0	0	0.116555	0	0	0.0883498
+GO:0035312: [MF] 5'-3' exodeoxyribonuclease activity|g__Escherichia.s__Escherichia_coli	0	0	0.116555	0	0	0.0883498
+GO:0035344: [BP] hypoxanthine transport	0.0803249	0	0	0	0	0.0530681
+GO:0035344: [BP] hypoxanthine transport|g__Escherichia.s__Escherichia_coli	0.0803249	0	0	0	0	0.0530681
+GO:0035350: [BP] FAD transmembrane transport	0.0959524	0	0	0	0	0.0780984
+GO:0035350: [BP] FAD transmembrane transport|g__Escherichia.s__Escherichia_coli	0.0959524	0	0	0	0	0.0780984
+GO:0035368: [MF] selenocysteine insertion sequence binding	0.0286545	0	0	0	0	0
+GO:0035368: [MF] selenocysteine insertion sequence binding|g__Escherichia.s__Escherichia_coli	0.0286545	0	0	0	0	0
+GO:0035429: [BP] gluconate transmembrane transport	0.285791	0	0	0	0	0.164637
+GO:0035429: [BP] gluconate transmembrane transport|g__Escherichia.s__Escherichia_coli	0.285791	0	0	0	0	0.164637
+GO:0035435: [BP] phosphate ion transmembrane transport	64.8398	13.1457	11.0697	18.7107	19.8673	11.59
+GO:0035435: [BP] phosphate ion transmembrane transport|g__Clostridium.s__Clostridium_thermocellum	0.234388	1.02869	0.931852	0.376733	0.179353	0.534271
+GO:0035435: [BP] phosphate ion transmembrane transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	64.3583	11.8514	9.56327	18.2278	19.6262	11.0557
+GO:0035435: [BP] phosphate ion transmembrane transport|g__Escherichia.s__Escherichia_coli	0.247148	0	0.446147	0	0	0
+GO:0035435: [BP] phosphate ion transmembrane transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.265573	0.128418	0.10622	0.0618316	0
+GO:0035438: [MF] cyclic-di-GMP binding	200.484	528.744	669.018	1387.52	1436.29	1947.91
+GO:0035438: [MF] cyclic-di-GMP binding|g__Clostridium.s__Clostridium_thermocellum	182.668	464.075	616.926	1359.23	1402.17	1913.17
+GO:0035438: [MF] cyclic-di-GMP binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	17.7769	64.669	52.0921	28.2876	34.1113	34.4956
+GO:0035438: [MF] cyclic-di-GMP binding|g__Escherichia.s__Escherichia_coli	0.0393726	0	0	0	0	0.24639
+GO:0035442: [BP] dipeptide transmembrane transport	0.217035	0	0	0	0	0.0780984
+GO:0035442: [BP] dipeptide transmembrane transport|g__Escherichia.s__Escherichia_coli	0.217035	0	0	0	0	0.0780984
+GO:0035444: [BP] nickel cation transmembrane transport	0.0848698	0	0.0220119	0	0	0
+GO:0035444: [BP] nickel cation transmembrane transport|g__Escherichia.s__Escherichia_coli	0.0848698	0	0.0220119	0	0	0
+GO:0035527: [MF] 3-hydroxypropionate dehydrogenase (NADP+) activity	0	0	0.151106	0	0	0
+GO:0035527: [MF] 3-hydroxypropionate dehydrogenase (NADP+) activity|g__Escherichia.s__Escherichia_coli	0	0	0.151106	0	0	0
+GO:0035556: [BP] intracellular signal transduction	0	0	0.442223	0	0	0
+GO:0035556: [BP] intracellular signal transduction|g__Escherichia.s__Escherichia_coli	0	0	0.442223	0	0	0
+GO:0035725: [BP] sodium ion transmembrane transport	0.38189	0	0.0880025	0	0	0.212208
+GO:0035725: [BP] sodium ion transmembrane transport|g__Escherichia.s__Escherichia_coli	0.38189	0	0.0880025	0	0	0.212208
+GO:0035998: [BP] 7,8-dihydroneopterin 3'-triphosphate biosynthetic process	23.8375	54.1174	39.3276	81.2648	80.2505	84.8721
+GO:0035998: [BP] 7,8-dihydroneopterin 3'-triphosphate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.75064	26.1507	22.8737	59.1885	55.363	59.7911
+GO:0035998: [BP] 7,8-dihydroneopterin 3'-triphosphate biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.0869	27.9668	16.4539	22.0763	24.8876	25.081
+GO:0035999: [BP] tetrahydrofolate interconversion	158.735	143.081	157.319	322.067	344.398	315.873
+GO:0035999: [BP] tetrahydrofolate interconversion|g__Clostridium.s__Clostridium_thermocellum	9.03581	91.7583	67.1625	285.092	292.207	268.813
+GO:0035999: [BP] tetrahydrofolate interconversion|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	149.569	51.323	89.7913	36.9756	52.1917	47.0604
+GO:0035999: [BP] tetrahydrofolate interconversion|g__Escherichia.s__Escherichia_coli	0.130318	0	0.365136	0	0	0
+GO:0036009: [MF] protein-glutamine N-methyltransferase activity	1.75908	8.97286	6.41728	11.9222	13.9485	13.8792
+GO:0036009: [MF] protein-glutamine N-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.69703	8.97286	6.41728	11.9222	13.9485	13.8792
+GO:0036009: [MF] protein-glutamine N-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0620482	0	0	0	0	0
+GO:0036094: [MF] small molecule binding	0.912593	1.12829	1.69573	1.86282	1.3843	2.54177
+GO:0036094: [MF] small molecule binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.912593	1.12829	1.69573	1.86282	1.3843	2.54177
+GO:0036104: [BP] Kdo2-lipid A biosynthetic process	0.0942025	0	0	0	0	0
+GO:0036104: [BP] Kdo2-lipid A biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0942025	0	0	0	0	0
+GO:0036108: [BP] 4-amino-4-deoxy-alpha-L-arabinopyranosyl undecaprenyl phosphate biosynthetic process	0	0	0	0	0	0.0872827
+GO:0036108: [BP] 4-amino-4-deoxy-alpha-L-arabinopyranosyl undecaprenyl phosphate biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0872827
+GO:0036125: [CC] fatty acid beta-oxidation multienzyme complex	0.0357513	0	0	0	0	0.0158461
+GO:0036125: [CC] fatty acid beta-oxidation multienzyme complex|g__Escherichia.s__Escherichia_coli	0.0357513	0	0	0	0	0.0158461
+GO:0036131: [MF] prostaglandin D2 11-ketoreductase activity	0.143394	0	0	0	0	0
+GO:0036131: [MF] prostaglandin D2 11-ketoreductase activity|g__Escherichia.s__Escherichia_coli	0.143394	0	0	0	0	0
+GO:0036355: [MF] 2-iminoacetate synthase activity	0.235895	3.02095	6.31945	2.49507	2.07163	1.83132
+GO:0036355: [MF] 2-iminoacetate synthase activity|g__Clostridium.s__Clostridium_thermocellum	0.235895	3.02095	6.27362	2.49507	2.07163	1.83132
+GO:0036355: [MF] 2-iminoacetate synthase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0458281	0	0	0
+GO:0036356: [MF] cyclic 2,3-diphosphoglycerate synthetase activity	0.156226	0.374836	0.253588	0.199235	0.174296	0.363424
+GO:0036356: [MF] cyclic 2,3-diphosphoglycerate synthetase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.156226	0.374836	0.253588	0.199235	0.174296	0.363424
+GO:0036361: [MF] racemase activity, acting on amino acids and derivatives	53.0678	40.5321	36.5296	34.0965	36.1008	39.929
+GO:0036361: [MF] racemase activity, acting on amino acids and derivatives|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	53.023	40.5321	36.5296	34.0965	36.1008	39.929
+GO:0036361: [MF] racemase activity, acting on amino acids and derivatives|g__Escherichia.s__Escherichia_coli	0.0447681	0	0	0	0	0
+GO:0036374: [MF] glutathione hydrolase activity	0.0455458	0	0	0	0	0
+GO:0036374: [MF] glutathione hydrolase activity|g__Escherichia.s__Escherichia_coli	0.0455458	0	0	0	0	0
+GO:0036380: [MF] UDP-N-acetylglucosamine-undecaprenyl-phosphate N-acetylglucosaminephosphotransferase activity	0.0765578	0	0.0472715	0	0	0
+GO:0036380: [MF] UDP-N-acetylglucosamine-undecaprenyl-phosphate N-acetylglucosaminephosphotransferase activity|g__Escherichia.s__Escherichia_coli	0.0765578	0	0.0472715	0	0	0
+GO:0036381: [MF] pyridoxal 5'-phosphate synthase (glutamine hydrolysing) activity	0.996102	1.67288	1.284	2.39159	0.79411	2.81018
+GO:0036381: [MF] pyridoxal 5'-phosphate synthase (glutamine hydrolysing) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.996102	1.67288	1.284	2.39159	0.79411	2.81018
+GO:0036406: [CC] anchored component of periplasmic side of cell outer membrane	0	0	0.442223	0	0	0
+GO:0036406: [CC] anchored component of periplasmic side of cell outer membrane|g__Escherichia.s__Escherichia_coli	0	0	0.442223	0	0	0
+GO:0036439: [MF] glycerol-3-phosphate dehydrogenase [NADP+] activity	1.81461	8.36484	5.71376	33.8568	32.5297	24.5134
+GO:0036439: [MF] glycerol-3-phosphate dehydrogenase [NADP+] activity|g__Clostridium.s__Clostridium_thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0036439: [MF] glycerol-3-phosphate dehydrogenase [NADP+] activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0039615: [CC] T=1 icosahedral viral capsid	14.8234	0	17.7881	0	0	18.4252
+GO:0039615: [CC] T=1 icosahedral viral capsid|g__Escherichia.s__Escherichia_coli	14.8234	0	17.7881	0	0	18.4252
+GO:0040008: [BP] regulation of growth	0.0489484	0	0.0452868	0	0	0
+GO:0040008: [BP] regulation of growth|g__Escherichia.s__Escherichia_coli	0.0489484	0	0.0452868	0	0	0
+GO:0042026: [BP] protein refolding	54.7863	136.348	154.791	135.119	153.925	144.907
+GO:0042026: [BP] protein refolding|g__Clostridium.s__Clostridium_thermocellum	4.49499	69.5112	74.5146	100.37	105.77	104.092
+GO:0042026: [BP] protein refolding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	50.2588	66.8372	80.2765	34.749	48.1546	40.7722
+GO:0042026: [BP] protein refolding|g__Escherichia.s__Escherichia_coli	0.0325674	0	0	0	0	0.0432048
+GO:0042126: [BP] nitrate metabolic process	0.033734	0	0	0	0	0
+GO:0042126: [BP] nitrate metabolic process|g__Escherichia.s__Escherichia_coli	0.033734	0	0	0	0	0
+GO:0042128: [BP] nitrate assimilation	0.887876	0	0.482954	0	0	0
+GO:0042128: [BP] nitrate assimilation|g__Escherichia.s__Escherichia_coli	0.887876	0	0.482954	0	0	0
+GO:0042132: [MF] fructose 1,6-bisphosphate 1-phosphatase activity	0.157174	0.06735	0.260354	0.0717752	0.156587	0
+GO:0042132: [MF] fructose 1,6-bisphosphate 1-phosphatase activity|g__Escherichia.s__Escherichia_coli	0.0870328	0	0	0	0	0
+GO:0042132: [MF] fructose 1,6-bisphosphate 1-phosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0701415	0.06735	0.260354	0.0717752	0.156587	0
+GO:0042158: [BP] lipoprotein biosynthetic process	48.0586	70.3409	80.3992	44.6553	44.9929	49.183
+GO:0042158: [BP] lipoprotein biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.97208	5.6224	2.38586	18.0107	13.9535	12.5643
+GO:0042158: [BP] lipoprotein biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	45.9846	64.7185	78.0134	26.6446	31.0394	36.6187
+GO:0042158: [BP] lipoprotein biosynthetic process|g__Escherichia.s__Escherichia_coli	0.101931	0	0	0	0	0
+GO:0042168: [BP] heme metabolic process	0	0	0.0861531	0	0	0
+GO:0042168: [BP] heme metabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.0861531	0	0	0
+GO:0042173: [BP] regulation of sporulation resulting in formation of a cellular spore	4.93358	18.9337	16.2534	63.1571	73.0955	145.364
+GO:0042173: [BP] regulation of sporulation resulting in formation of a cellular spore|g__Clostridium.s__Clostridium_thermocellum	4.93358	18.9337	16.2534	63.1571	73.0955	145.364
+GO:0042182: [BP] ketone catabolic process	0	0	0	0	0	0.0350877
+GO:0042182: [BP] ketone catabolic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0350877
+GO:0042242: [MF] cobyrinic acid a,c-diamide synthase activity	0.14247	0.234488	0.151106	0.208287	0.127222	0.0271
+GO:0042242: [MF] cobyrinic acid a,c-diamide synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.14247	0.234488	0.151106	0.208287	0.127222	0.0271
+GO:0042244: [BP] spore wall assembly	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0042244: [BP] spore wall assembly|g__Clostridium.s__Clostridium_thermocellum	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0042245: [BP] RNA repair	0.112552	0.15365	0.409295	0.0614043	0.0178615	0
+GO:0042245: [BP] RNA repair|g__Escherichia.s__Escherichia_coli	0.112552	0	0.33505	0	0	0
+GO:0042245: [BP] RNA repair|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0042254: [BP] ribosome biogenesis	90.5366	149.361	101.133	498.353	422.023	306.142
+GO:0042254: [BP] ribosome biogenesis|g__Clostridium.s__Clostridium_thermocellum	15.3837	60.1888	32.9736	405.225	311.67	206.171
+GO:0042254: [BP] ribosome biogenesis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	73.1743	80.7309	66.0647	89.0777	108.378	94.9032
+GO:0042254: [BP] ribosome biogenesis|g__Escherichia.s__Escherichia_coli	0.0475144	0	0	0	0	0.189668
+GO:0042254: [BP] ribosome biogenesis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.93103	8.44153	2.0946	4.04985	1.97499	4.878
+GO:0042256: [BP] mature ribosome assembly	6.04631	25.0691	19.5015	53.3668	50.5327	76.8763
+GO:0042256: [BP] mature ribosome assembly|g__Clostridium.s__Clostridium_thermocellum	1.39243	22.0746	15.9619	51.3402	47.5091	73.1241
+GO:0042256: [BP] mature ribosome assembly|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.65391	2.99453	3.27865	1.59564	2.6893	3.31622
+GO:0042256: [BP] mature ribosome assembly|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.260895	0.430999	0.334377	0.436058
+GO:0042274: [BP] ribosomal small subunit biogenesis	34.962	85.0196	68.6769	133.842	135.724	110.401
+GO:0042274: [BP] ribosomal small subunit biogenesis|g__Clostridium.s__Clostridium_thermocellum	6.82691	38.931	27.5294	102.83	100.473	77.8864
+GO:0042274: [BP] ribosomal small subunit biogenesis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	28.1351	46.0887	41.1475	31.0127	35.2509	32.5146
+GO:0042277: [MF] peptide binding	0.066666	0	0	0	0	0
+GO:0042277: [MF] peptide binding|g__Escherichia.s__Escherichia_coli	0.066666	0	0	0	0	0
+GO:0042278: [BP] purine nucleoside metabolic process	0.0852829	0	0	0	0	0
+GO:0042278: [BP] purine nucleoside metabolic process|g__Escherichia.s__Escherichia_coli	0.0852829	0	0	0	0	0
+GO:0042279: [MF] nitrite reductase (cytochrome, ammonia-forming) activity	0.188502	0	0.139875	0	0	0
+GO:0042279: [MF] nitrite reductase (cytochrome, ammonia-forming) activity|g__Escherichia.s__Escherichia_coli	0.188502	0	0.139875	0	0	0
+GO:0042286: [MF] glutamate-1-semialdehyde 2,1-aminomutase activity	0.46885	6.25604	6.42752	13.6374	10.7565	11.4639
+GO:0042286: [MF] glutamate-1-semialdehyde 2,1-aminomutase activity|g__Clostridium.s__Clostridium_thermocellum	0.235652	6.17217	6.24254	13.548	10.6005	11.2315
+GO:0042286: [MF] glutamate-1-semialdehyde 2,1-aminomutase activity|g__Escherichia.s__Escherichia_coli	0.124024	0	0.0634195	0	0	0
+GO:0042286: [MF] glutamate-1-semialdehyde 2,1-aminomutase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.109174	0.0838725	0.121562	0.0893584	0.155979	0.232452
+GO:0042301: [MF] phosphate ion binding	0.109077	0	0.202663	0	0	0
+GO:0042301: [MF] phosphate ion binding|g__Escherichia.s__Escherichia_coli	0.109077	0	0.202663	0	0	0
+GO:0042355: [BP] L-fucose catabolic process	0.0539064	0	0.0554808	0	0	0
+GO:0042355: [BP] L-fucose catabolic process|g__Escherichia.s__Escherichia_coli	0.0539064	0	0.0554808	0	0	0
+GO:0042398: [BP] cellular modified amino acid biosynthetic process	0.0496775	0	0	0	0	0
+GO:0042398: [BP] cellular modified amino acid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0496775	0	0	0	0	0
+GO:0042450: [BP] arginine biosynthetic process via ornithine	1.85894	2.88611	1.32504	13.0639	7.671	6.69098
+GO:0042450: [BP] arginine biosynthetic process via ornithine|g__Clostridium.s__Clostridium_thermocellum	1.62409	2.70049	1.06591	12.8661	7.55014	6.66527
+GO:0042450: [BP] arginine biosynthetic process via ornithine|g__Escherichia.s__Escherichia_coli	0.0416328	0	0.079748	0	0	0
+GO:0042450: [BP] arginine biosynthetic process via ornithine|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.193217	0.185668	0.179343	0.197842	0.120864	0.0257418
+GO:0042493: [BP] response to drug	0.678982	0	0.178802	0	0	0
+GO:0042493: [BP] response to drug|g__Escherichia.s__Escherichia_coli	0.678982	0	0.178802	0	0	0
+GO:0042542: [BP] response to hydrogen peroxide	0.198613	0	0.071674	0	0	0
+GO:0042542: [BP] response to hydrogen peroxide|g__Escherichia.s__Escherichia_coli	0.198613	0	0.071674	0	0	0
+GO:0042545: [BP] cell wall modification	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0042545: [BP] cell wall modification|g__Clostridium.s__Clostridium_thermocellum	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0042558: [BP] pteridine-containing compound metabolic process	7.74466	2.41881	7.82649	5.41403	4.73477	6.22433
+GO:0042558: [BP] pteridine-containing compound metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.21198	0.0857394	0.124268	0.0228308	0.0398466	0.0594065
+GO:0042558: [BP] pteridine-containing compound metabolic process|g__Escherichia.s__Escherichia_coli	0.0137561	0	0.0127651	0	0	0.0549114
+GO:0042558: [BP] pteridine-containing compound metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	7.51892	2.33312	7.68946	5.3912	4.69493	6.11001
+GO:0042577: [MF] lipid phosphatase activity	0	0	0.244476	0	0	0.175277
+GO:0042577: [MF] lipid phosphatase activity|g__Escherichia.s__Escherichia_coli	0	0	0.244476	0	0	0.175277
+GO:0042586: [MF] peptide deformylase activity	10.0293	35.8297	26.3327	78.8803	86.829	107.225
+GO:0042586: [MF] peptide deformylase activity|g__Clostridium.s__Clostridium_thermocellum	3.26197	24.2374	17.2553	68.291	73.0949	91.0747
+GO:0042586: [MF] peptide deformylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.56953	11.5923	8.82682	10.5893	13.7341	15.6364
+GO:0042586: [MF] peptide deformylase activity|g__Escherichia.s__Escherichia_coli	0.197835	0	0.250611	0	0	0.513671
+GO:0042597: [CC] periplasmic space	7.24421	14.2759	12.0567	83.8084	72.8267	33.9657
+GO:0042597: [CC] periplasmic space|g__Clostridium.s__Clostridium_thermocellum	2.86812	14.2759	7.34115	83.8084	72.8267	32.8495
+GO:0042597: [CC] periplasmic space|g__Escherichia.s__Escherichia_coli	4.37609	0	4.71555	0	0	1.11624
+GO:0042601: [CC] endospore-forming forespore	1.17816	19.9785	5.35124	48.954	41.348	44.015
+GO:0042601: [CC] endospore-forming forespore|g__Clostridium.s__Clostridium_thermocellum	1.17816	19.9785	5.35124	48.954	41.348	44.015
+GO:0042602: [MF] riboflavin reductase (NADPH) activity	0.086012	0	0.23753	0	0	0
+GO:0042602: [MF] riboflavin reductase (NADPH) activity|g__Escherichia.s__Escherichia_coli	0.086012	0	0.23753	0	0	0
+GO:0042623: [MF] ATPase activity, coupled	0.0375984	0	0.0348672	0	0	0
+GO:0042623: [MF] ATPase activity, coupled|g__Escherichia.s__Escherichia_coli	0.0375984	0	0.0348672	0	0	0
+GO:0042626: [MF] ATPase activity, coupled to transmembrane movement of substances	90.2097	150.678	142.996	232.597	232.65	259.123
+GO:0042626: [MF] ATPase activity, coupled to transmembrane movement of substances|g__Clostridium.s__Clostridium_thermocellum	15.7479	83.9402	64.7572	181.149	178.438	211.38
+GO:0042626: [MF] ATPase activity, coupled to transmembrane movement of substances|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	73.818	66.7374	77.9893	51.3728	54.2119	47.4494
+GO:0042626: [MF] ATPase activity, coupled to transmembrane movement of substances|g__Escherichia.s__Escherichia_coli	0.275608	0	0.112991	0	0	0
+GO:0042626: [MF] ATPase activity, coupled to transmembrane movement of substances|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.368182	0	0.136672	0.0751824	0	0.293993
+GO:0042732: [BP] D-xylose metabolic process	0	0	0.0769063	0	0	0
+GO:0042732: [BP] D-xylose metabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.0769063	0	0	0
+GO:0042742: [BP] defense response to bacterium	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0042742: [BP] defense response to bacterium|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0042744: [BP] hydrogen peroxide catabolic process	0.0460319	0	0	0	0	0
+GO:0042744: [BP] hydrogen peroxide catabolic process|g__Escherichia.s__Escherichia_coli	0.0460319	0	0	0	0	0
+GO:0042773: [BP] ATP synthesis coupled electron transport	102.057	96.495	68.4726	314.813	295.65	225.54
+GO:0042773: [BP] ATP synthesis coupled electron transport|g__Clostridium.s__Clostridium_thermocellum	6.02553	37.0278	21.7994	232.123	203.359	171.832
+GO:0042773: [BP] ATP synthesis coupled electron transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	95.862	59.029	46.6078	82.6894	92.291	53.6019
+GO:0042773: [BP] ATP synthesis coupled electron transport|g__Escherichia.s__Escherichia_coli	0.169156	0	0.0653591	0	0	0.106557
+GO:0042773: [BP] ATP synthesis coupled electron transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.438265	0	0	0	0
+GO:0042777: [BP] plasma membrane ATP synthesis coupled proton transport	207.599	525.102	423.201	1060.89	1015.48	822.622
+GO:0042777: [BP] plasma membrane ATP synthesis coupled proton transport|g__Clostridium.s__Clostridium_thermocellum	39.0864	407.387	328.627	946.847	865.463	694.314
+GO:0042777: [BP] plasma membrane ATP synthesis coupled proton transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	167.471	117.226	92.5601	112.581	148.865	126.627
+GO:0042777: [BP] plasma membrane ATP synthesis coupled proton transport|g__Escherichia.s__Escherichia_coli	0.280274	0	0.376683	0	0	0
+GO:0042777: [BP] plasma membrane ATP synthesis coupled proton transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.76062	0.488906	1.63768	1.46582	1.1552	1.68208
+GO:0042781: [MF] 3'-tRNA processing endoribonuclease activity	0.0942025	0.241209	0.524361	0.321024	0	0.208812
+GO:0042781: [MF] 3'-tRNA processing endoribonuclease activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0942025	0.241209	0.524361	0.321024	0	0.208812
+GO:0042802: [MF] identical protein binding	21.2888	29.5114	30.7923	80.3926	73.2713	83.1425
+GO:0042802: [MF] identical protein binding|g__Clostridium.s__Clostridium_thermocellum	19.4642	29.2946	29.3989	79.9306	72.7924	81.907
+GO:0042802: [MF] identical protein binding|g__Escherichia.s__Escherichia_coli	1.71166	0	1.18499	0	0	0.583846
+GO:0042802: [MF] identical protein binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.112917	0.216846	0.208346	0.461987	0.478897	0.651629
+GO:0042803: [MF] protein homodimerization activity	0.0800576	0.184127	1.33312	0.689474	0.256333	0.748484
+GO:0042803: [MF] protein homodimerization activity|g__Escherichia.s__Escherichia_coli	0.0323973	0	0	0	0	0.112378
+GO:0042803: [MF] protein homodimerization activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0476602	0.184127	1.33312	0.689474	0.256333	0.636106
+GO:0042819: [BP] vitamin B6 biosynthetic process	0.996102	1.67288	1.284	2.39159	0.79411	2.81018
+GO:0042819: [BP] vitamin B6 biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.996102	1.67288	1.284	2.39159	0.79411	2.81018
+GO:0042823: [BP] pyridoxal phosphate biosynthetic process	5.93274	13.1833	12.1403	14.2349	11.4887	17.5151
+GO:0042823: [BP] pyridoxal phosphate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.806992	4.3834	5.1142	9.48325	7.42947	10.5914
+GO:0042823: [BP] pyridoxal phosphate biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.07375	7.12706	5.74208	2.3601	3.26514	4.11351
+GO:0042823: [BP] pyridoxal phosphate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.055875	0	0	0	0	0
+GO:0042823: [BP] pyridoxal phosphate biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.996102	1.67288	1.284	2.39159	0.79411	2.81018
+GO:0042834: [MF] peptidoglycan binding	0.0633607	0	0	0	0	0
+GO:0042834: [MF] peptidoglycan binding|g__Escherichia.s__Escherichia_coli	0.0633607	0	0	0	0	0
+GO:0042838: [BP] D-glucarate catabolic process	0.217886	0	0	0	0	0.129873
+GO:0042838: [BP] D-glucarate catabolic process|g__Escherichia.s__Escherichia_coli	0.217886	0	0	0	0	0.129873
+GO:0042840: [BP] D-glucuronate catabolic process	1.49497	0	0	0	0	0
+GO:0042840: [BP] D-glucuronate catabolic process|g__Escherichia.s__Escherichia_coli	1.49497	0	0	0	0	0
+GO:0042843: [BP] D-xylose catabolic process	0.0744919	0	0	0	0	0.0247716
+GO:0042843: [BP] D-xylose catabolic process|g__Escherichia.s__Escherichia_coli	0.0744919	0	0	0	0	0.0247716
+GO:0042867: [BP] pyruvate catabolic process	0.046445	0	0	0	0	0
+GO:0042867: [BP] pyruvate catabolic process|g__Escherichia.s__Escherichia_coli	0.046445	0	0	0	0	0
+GO:0042882: [BP] L-arabinose transport	1.68101	4.31054	6.05995	3.25868	3.82395	4.79958
+GO:0042882: [BP] L-arabinose transport|g__Clostridium.s__Clostridium_thermocellum	0.899031	2.69643	3.67495	3.0391	3.53656	4.19044
+GO:0042882: [BP] L-arabinose transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.518649	1.61411	2.1228	0.219578	0.28739	0.499668
+GO:0042882: [BP] L-arabinose transport|g__Escherichia.s__Escherichia_coli	0.26331	0	0.262158	0	0	0.109467
+GO:0042884: [BP] microcin transport	0.0769709	0	0.214075	0	0	0
+GO:0042884: [BP] microcin transport|g__Escherichia.s__Escherichia_coli	0.0769709	0	0.214075	0	0	0
+GO:0042888: [MF] molybdenum ion transmembrane transporter activity	0.106914	0	0	0	0	0
+GO:0042888: [MF] molybdenum ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.106914	0	0	0	0	0
+GO:0042906: [BP] xanthine transport	0.0374282	0	0.0694638	0	0	0
+GO:0042906: [BP] xanthine transport|g__Escherichia.s__Escherichia_coli	0.0374282	0	0.0694638	0	0	0
+GO:0042907: [MF] xanthine transmembrane transporter activity	0.0374282	0	0.0694638	0	0	0
+GO:0042907: [MF] xanthine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0374282	0	0.0694638	0	0	0
+GO:0042912: [MF] colicin transmembrane transporter activity	0	0	0.117682	0	0	0
+GO:0042912: [MF] colicin transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0	0	0.117682	0	0	0
+GO:0042914: [BP] colicin transport	0.0426293	0	0	0	0	0
+GO:0042914: [BP] colicin transport|g__Escherichia.s__Escherichia_coli	0.0426293	0	0	0	0	0
+GO:0042925: [MF] benzoate transporter activity	0.0475144	0	0	0	0	0
+GO:0042925: [MF] benzoate transporter activity|g__Escherichia.s__Escherichia_coli	0.0475144	0	0	0	0	0
+GO:0042931: [MF] enterobactin transporter activity	0.0882966	0	0.0819582	0	0	0.0587598
+GO:0042931: [MF] enterobactin transporter activity|g__Escherichia.s__Escherichia_coli	0.0882966	0	0.0819582	0	0	0.0587598
+GO:0042936: [MF] dipeptide transporter activity	0.115323	0	0.253047	0	0	0
+GO:0042936: [MF] dipeptide transporter activity|g__Escherichia.s__Escherichia_coli	0.115323	0	0.253047	0	0	0
+GO:0042937: [MF] tripeptide transporter activity	0.0781618	0	0.218585	0	0	0
+GO:0042937: [MF] tripeptide transporter activity|g__Escherichia.s__Escherichia_coli	0.0781618	0	0.218585	0	0	0
+GO:0042938: [BP] dipeptide transport	0.0402232	0	0	0	0	0
+GO:0042938: [BP] dipeptide transport|g__Escherichia.s__Escherichia_coli	0.0402232	0	0	0	0	0
+GO:0042939: [BP] tripeptide transport	0.0347305	0	0	0	0	0
+GO:0042939: [BP] tripeptide transport|g__Escherichia.s__Escherichia_coli	0.0347305	0	0	0	0	0
+GO:0042942: [BP] D-serine transport	0.098796	0	0	0	0	0
+GO:0042942: [BP] D-serine transport|g__Escherichia.s__Escherichia_coli	0.098796	0	0	0	0	0
+GO:0042945: [MF] D-serine transmembrane transporter activity	0.098796	0	0	0	0	0
+GO:0042945: [MF] D-serine transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.098796	0	0	0	0	0
+GO:0042953: [BP] lipoprotein transport	0.600091	0	0	0	0	0
+GO:0042953: [BP] lipoprotein transport|g__Escherichia.s__Escherichia_coli	0.600091	0	0	0	0	0
+GO:0042954: [MF] lipoprotein transporter activity	0.600091	0	0	0	0	0
+GO:0042954: [MF] lipoprotein transporter activity|g__Escherichia.s__Escherichia_coli	0.600091	0	0	0	0	0
+GO:0042958: [MF] maltodextrin transmembrane transporter activity	0.0408065	0	0	0	0	0
+GO:0042958: [MF] maltodextrin transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0408065	0	0	0	0	0
+GO:0042972: [MF] licheninase activity	1.13682	8.18688	5.5922	7.09522	7.08042	10.4741
+GO:0042972: [MF] licheninase activity|g__Clostridium.s__Clostridium_thermocellum	1.13682	8.18688	5.5922	7.09522	7.08042	10.4741
+GO:0043022: [MF] ribosome binding	146.566	275.026	238.198	534.163	495.458	480.474
+GO:0043022: [MF] ribosome binding|g__Clostridium.s__Clostridium_thermocellum	27.5289	152.981	146.049	415.092	385.992	382.287
+GO:0043022: [MF] ribosome binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	118.63	120.893	91.2068	117.719	108.775	96.5542
+GO:0043022: [MF] ribosome binding|g__Escherichia.s__Escherichia_coli	0.108202	0	0.681061	0	0	0
+GO:0043022: [MF] ribosome binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.299645	1.15242	0.260895	1.35169	0.69126	1.63324
+GO:0043023: [MF] ribosomal large subunit binding	3.59783	14.764	9.49006	44.2985	44.8502	38.8289
+GO:0043023: [MF] ribosomal large subunit binding|g__Clostridium.s__Clostridium_thermocellum	2.44149	14.764	9.49006	44.2985	44.8502	38.8289
+GO:0043023: [MF] ribosomal large subunit binding|g__Escherichia.s__Escherichia_coli	1.15634	0	0	0	0	0
+GO:0043024: [MF] ribosomal small subunit binding	0.0375984	0	0.0348672	0	0	0
+GO:0043024: [MF] ribosomal small subunit binding|g__Escherichia.s__Escherichia_coli	0.0375984	0	0.0348672	0	0	0
+GO:0043039: [BP] tRNA aminoacylation	27.0738	37.966	41.1948	36.6099	54.6363	39.6919
+GO:0043039: [BP] tRNA aminoacylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	27.0738	37.966	41.1948	36.6099	54.6363	39.6919
+GO:0043086: [BP] negative regulation of catalytic activity	0.180142	0	0.072937	0	0	0
+GO:0043086: [BP] negative regulation of catalytic activity|g__Escherichia.s__Escherichia_coli	0.180142	0	0.072937	0	0	0
+GO:0043093: [BP] FtsZ-dependent cytokinesis	249.217	676.977	564.927	1651.68	1701.78	2069.27
+GO:0043093: [BP] FtsZ-dependent cytokinesis|g__Clostridium.s__Clostridium_thermocellum	84.3489	514.78	368.702	1529.03	1554.37	1943.26
+GO:0043093: [BP] FtsZ-dependent cytokinesis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	156.589	152.124	188.689	119.405	144.955	121.273
+GO:0043093: [BP] FtsZ-dependent cytokinesis|g__Escherichia.s__Escherichia_coli	0.32689	0	0.0662161	0	0	0.0949793
+GO:0043093: [BP] FtsZ-dependent cytokinesis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	7.95292	10.0726	7.46988	3.24533	2.46094	4.63953
+GO:0043094: [BP] cellular metabolic compound salvage	15.6617	14.8909	14.3173	23.2114	28.232	22.4618
+GO:0043094: [BP] cellular metabolic compound salvage|g__Clostridium.s__Clostridium_thermocellum	0.81263	4.4486	5.05268	10.4408	12.9069	10.716
+GO:0043094: [BP] cellular metabolic compound salvage|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.6687	10.4423	9.26466	12.7706	15.3251	11.6857
+GO:0043094: [BP] cellular metabolic compound salvage|g__Escherichia.s__Escherichia_coli	0.180458	0	0	0	0	0.060215
+GO:0043103: [BP] hypoxanthine salvage	0	0.634761	0.307761	0.0564054	0.0984227	0
+GO:0043103: [BP] hypoxanthine salvage|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.634761	0.307761	0.0564054	0.0984227	0
+GO:0043115: [MF] precorrin-2 dehydrogenase activity	1.40405	15.0646	9.34062	24.9796	24.1863	34.0244
+GO:0043115: [MF] precorrin-2 dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	0.0182523	12.9279	7.92212	23.4066	22.693	32.3801
+GO:0043115: [MF] precorrin-2 dehydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.38579	2.13658	1.4185	1.57299	1.49333	1.6443
+GO:0043136: [MF] glycerol-3-phosphatase activity	0	0	0.180065	0	0	0.193645
+GO:0043136: [MF] glycerol-3-phosphatase activity|g__Escherichia.s__Escherichia_coli	0	0	0.180065	0	0	0.193645
+GO:0043137: [BP] DNA replication, removal of RNA primer	0.232128	0	0.32251	0.475343	0.103718	0.0772576
+GO:0043137: [BP] DNA replication, removal of RNA primer|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.232128	0	0.32251	0.475343	0.103718	0.0772576
+GO:0043140: [MF] ATP-dependent 3'-5' DNA helicase activity	0.136953	0	0.0470459	0	0	0.0384186
+GO:0043140: [MF] ATP-dependent 3'-5' DNA helicase activity|g__Escherichia.s__Escherichia_coli	0.136953	0	0.0470459	0	0	0.0384186
+GO:0043141: [MF] ATP-dependent 5'-3' DNA helicase activity	1.90991	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0043141: [MF] ATP-dependent 5'-3' DNA helicase activity|g__Clostridium.s__Clostridium_thermocellum	1.90991	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0043142: [MF] single-stranded DNA-dependent ATPase activity	0.0289947	0	0	0	0	0
+GO:0043142: [MF] single-stranded DNA-dependent ATPase activity|g__Escherichia.s__Escherichia_coli	0.0289947	0	0	0	0	0
+GO:0043150: [BP] DNA synthesis involved in double-strand break repair via homologous recombination	0.0735927	0	0	0	0	0
+GO:0043150: [BP] DNA synthesis involved in double-strand break repair via homologous recombination|g__Escherichia.s__Escherichia_coli	0.0735927	0	0	0	0	0
+GO:0043164: [BP] Gram-negative-bacterium-type cell wall biogenesis	0.0143151	0	0	0	0	0
+GO:0043164: [BP] Gram-negative-bacterium-type cell wall biogenesis|g__Escherichia.s__Escherichia_coli	0.0143151	0	0	0	0	0
+GO:0043165: [BP] Gram-negative-bacterium-type cell outer membrane assembly	0.350149	0	0.694818	0	0	0
+GO:0043165: [BP] Gram-negative-bacterium-type cell outer membrane assembly|g__Escherichia.s__Escherichia_coli	0.350149	0	0.694818	0	0	0
+GO:0043169: [MF] cation binding	73.3805	17.9424	25.2186	36.1533	40.772	44.7865
+GO:0043169: [MF] cation binding|g__Clostridium.s__Clostridium_thermocellum	1.36577	4.09104	3.84514	25.4212	28.2393	28.5431
+GO:0043169: [MF] cation binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	71.8698	13.8513	20.8748	10.7321	12.5328	16.2434
+GO:0043169: [MF] cation binding|g__Escherichia.s__Escherichia_coli	0.144876	0	0.498696	0	0	0
+GO:0043171: [BP] peptide catabolic process	3.49947	3.40423	4.12114	2.4798	3.00514	1.70061
+GO:0043171: [BP] peptide catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.49947	3.40423	4.12114	2.4798	3.00514	1.70061
+GO:0043190: [CC] ATP-binding cassette (ABC) transporter complex	20.6257	81.1564	60.4507	217.914	198.086	144.804
+GO:0043190: [CC] ATP-binding cassette (ABC) transporter complex|g__Clostridium.s__Clostridium_thermocellum	6.35184	76.1094	51.6639	213.328	194.498	139.475
+GO:0043190: [CC] ATP-binding cassette (ABC) transporter complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	12.2182	4.67166	6.3231	3.30735	3.33674	2.63646
+GO:0043190: [CC] ATP-binding cassette (ABC) transporter complex|g__Escherichia.s__Escherichia_coli	1.32822	0	1.33803	0	0	0.401843
+GO:0043190: [CC] ATP-binding cassette (ABC) transporter complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.727469	0.375303	1.12563	1.27865	0.25145	2.28979
+GO:0043213: [BP] bacteriocin transport	0.0230889	0	0.654358	0	0	0
+GO:0043213: [BP] bacteriocin transport|g__Escherichia.s__Escherichia_coli	0.0230889	0	0.654358	0	0	0
+GO:0043215: [BP] daunorubicin transport	0	0.391685	0.32851	0.1772	0	0.225143
+GO:0043215: [BP] daunorubicin transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.391685	0.32851	0.1772	0	0.225143
+GO:0043231: [CC] intracellular membrane-bounded organelle	0.279618	0.163638	0.338568	0.0871947	0	0.11338
+GO:0043231: [CC] intracellular membrane-bounded organelle|g__Escherichia.s__Escherichia_coli	0.0237208	0	0.0220119	0	0	0
+GO:0043231: [CC] intracellular membrane-bounded organelle|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.255897	0.163638	0.316556	0.0871947	0	0.11338
+GO:0043234: [CC] protein complex	64.0094	136.956	112.803	249.214	229.757	272.273
+GO:0043234: [CC] protein complex|g__Clostridium.s__Clostridium_thermocellum	11.9535	81.6634	59.739	203.112	181.141	232.215
+GO:0043234: [CC] protein complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	43.0316	45.2198	45.1907	42.857	46.1551	35.4182
+GO:0043234: [CC] protein complex|g__Escherichia.s__Escherichia_coli	1.07137	0	0.403612	0	0	0
+GO:0043234: [CC] protein complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	7.95292	10.0726	7.46988	3.24533	2.46094	4.63953
+GO:0043263: [CC] cellulosome	12.308	25.1432	19.6989	72.6349	63.3432	73.1776
+GO:0043263: [CC] cellulosome|g__Clostridium.s__Clostridium_thermocellum	12.308	25.1432	19.6989	72.6349	63.3432	73.1776
+GO:0043266: [BP] regulation of potassium ion transport	0.208748	0	0.176185	0	0	0.0427844
+GO:0043266: [BP] regulation of potassium ion transport|g__Escherichia.s__Escherichia_coli	0.208748	0	0.176185	0	0	0.0427844
+GO:0043295: [MF] glutathione binding	0.0403933	0	0.0750119	0	0	0
+GO:0043295: [MF] glutathione binding|g__Escherichia.s__Escherichia_coli	0.0403933	0	0.0750119	0	0	0
+GO:0043335: [BP] protein unfolding	0.828574	2.49783	0.874477	1.07929	0.741198	1.48685
+GO:0043335: [BP] protein unfolding|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0547174
+GO:0043335: [BP] protein unfolding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.828574	2.49783	0.874477	1.07929	0.741198	1.43213
+GO:0043365: [MF] [formate-C-acetyltransferase]-activating enzyme activity	19.565	128.33	125.265	326.89	276.162	251.047
+GO:0043365: [MF] [formate-C-acetyltransferase]-activating enzyme activity|g__Clostridium.s__Clostridium_thermocellum	19.3677	128.33	125.145	326.89	276.162	251.047
+GO:0043365: [MF] [formate-C-acetyltransferase]-activating enzyme activity|g__Escherichia.s__Escherichia_coli	0.1973	0	0.120299	0	0	0
+GO:0043419: [BP] urea catabolic process	0.0309634	0.628694	1.87584	1.02724	1.13578	2.2221
+GO:0043419: [BP] urea catabolic process|g__Clostridium.s__Clostridium_thermocellum	0.0309634	0.628694	1.87584	1.02724	1.13578	2.2221
+GO:0043433: [BP] negative regulation of sequence-specific DNA binding transcription factor activity	0.0888556	0	0.0854314	0	0	0.0304632
+GO:0043433: [BP] negative regulation of sequence-specific DNA binding transcription factor activity|g__Escherichia.s__Escherichia_coli	0.0888556	0	0.0854314	0	0	0.0304632
+GO:0043462: [BP] regulation of ATPase activity	0	0	0.835325	0	0	0
+GO:0043462: [BP] regulation of ATPase activity|g__Escherichia.s__Escherichia_coli	0	0	0.835325	0	0	0
+GO:0043470: [BP] regulation of carbohydrate catabolic process	0.068659	0	0	0	0	0
+GO:0043470: [BP] regulation of carbohydrate catabolic process|g__Escherichia.s__Escherichia_coli	0.068659	0	0	0	0	0
+GO:0043488: [BP] regulation of mRNA stability	0.16534	0	0	0	0	0
+GO:0043488: [BP] regulation of mRNA stability|g__Escherichia.s__Escherichia_coli	0.16534	0	0	0	0	0
+GO:0043492: [MF] ATPase activity, coupled to movement of substances	0.0432126	0	0.214075	0	0	0
+GO:0043492: [MF] ATPase activity, coupled to movement of substances|g__Escherichia.s__Escherichia_coli	0.0432126	0	0.214075	0	0	0
+GO:0043531: [MF] ADP binding	0.0324945	0	0	0	0	0.0418465
+GO:0043531: [MF] ADP binding|g__Escherichia.s__Escherichia_coli	0.0324945	0	0	0	0	0.0418465
+GO:0043546: [MF] molybdopterin cofactor binding	0.128252	0	0	0	0	0.0230576
+GO:0043546: [MF] molybdopterin cofactor binding|g__Escherichia.s__Escherichia_coli	0.128252	0	0	0	0	0.0230576
+GO:0043565: [MF] sequence-specific DNA binding	46.4134	248.628	173.836	298.457	285.679	319.185
+GO:0043565: [MF] sequence-specific DNA binding|g__Clostridium.s__Clostridium_thermocellum	16.3948	223.15	153.314	270.899	253.281	279.903
+GO:0043565: [MF] sequence-specific DNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	24.3213	16.6139	14.0454	23.2988	30.4672	32.9608
+GO:0043565: [MF] sequence-specific DNA binding|g__Escherichia.s__Escherichia_coli	4.04643	0	3.42208	0	0	0.861831
+GO:0043565: [MF] sequence-specific DNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.65093	8.86467	3.05429	4.25921	1.93126	5.45939
+GO:0043571: [BP] maintenance of CRISPR repeat elements	14.1343	6.87586	3.31347	19.3701	16.8093	22.7483
+GO:0043571: [BP] maintenance of CRISPR repeat elements|g__Clostridium.s__Clostridium_thermocellum	8.10355	3.93972	1.40096	17.8139	13.038	20.0466
+GO:0043571: [BP] maintenance of CRISPR repeat elements|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.5248	2.45653	1.18021	1.52713	3.02595	2.5506
+GO:0043571: [BP] maintenance of CRISPR repeat elements|g__Escherichia.s__Escherichia_coli	0.0633364	0	0.374338	0	0	0
+GO:0043571: [BP] maintenance of CRISPR repeat elements|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.442625	0.479618	0.358009	0.029098	0.745387	0.151152
+GO:0043590: [CC] bacterial nucleoid	10.1914	47.3166	29.5325	145.123	155.946	230.382
+GO:0043590: [CC] bacterial nucleoid|g__Clostridium.s__Clostridium_thermocellum	9.99618	47.3166	29.5325	145.123	155.946	230.199
+GO:0043590: [CC] bacterial nucleoid|g__Escherichia.s__Escherichia_coli	0.195259	0	0	0	0	0.183135
+GO:0043595: [CC] endospore cortex	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0043595: [CC] endospore cortex|g__Clostridium.s__Clostridium_thermocellum	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0043621: [MF] protein self-association	0.0255679	0	0	0	0	0
+GO:0043621: [MF] protein self-association|g__Escherichia.s__Escherichia_coli	0.0255679	0	0	0	0	0
+GO:0043687: [BP] post-translational protein modification	0.0500177	0	0	0	0	0
+GO:0043687: [BP] post-translational protein modification|g__Escherichia.s__Escherichia_coli	0.0500177	0	0	0	0	0
+GO:0043708: [BP] cell adhesion involved in biofilm formation	0.0270747	0	0.0635097	0	0	0.0755436
+GO:0043708: [BP] cell adhesion involved in biofilm formation|g__Escherichia.s__Escherichia_coli	0.0270747	0	0.0635097	0	0	0.0755436
+GO:0043709: [BP] cell adhesion involved in single-species biofilm formation	0.237767	0	0.0414076	0	0	0.251952
+GO:0043709: [BP] cell adhesion involved in single-species biofilm formation|g__Escherichia.s__Escherichia_coli	0.237767	0	0.0414076	0	0	0.251952
+GO:0043711: [BP] pilus organization	0.912131	0	0.704742	0	0	0.104067
+GO:0043711: [BP] pilus organization|g__Escherichia.s__Escherichia_coli	0.912131	0	0.704742	0	0	0.104067
+GO:0043714: [MF] (R)-citramalate synthase activity	0.0362373	0.139181	0.0672536	0.222513	0	0.192837
+GO:0043714: [MF] (R)-citramalate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0362373	0.139181	0.0672536	0.222513	0	0.192837
+GO:0043726: [MF] 5-amino-6-(5-phosphoribitylamino)uracil phosphatase activity	0.114885	0	0.131891	0	0	0
+GO:0043726: [MF] 5-amino-6-(5-phosphoribitylamino)uracil phosphatase activity|g__Escherichia.s__Escherichia_coli	0.114885	0	0.131891	0	0	0
+GO:0043737: [MF] deoxyribonuclease V activity	8.41664	5.77819	4.71772	5.81506	8.1438	8.24891
+GO:0043737: [MF] deoxyribonuclease V activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.41664	5.77819	4.71772	5.81506	8.1438	8.24891
+GO:0043740: [MF] GTP cyclohydrolase IIa activity	0.526596	0.388931	0.751788	0.828871	0.469695	2.42383
+GO:0043740: [MF] GTP cyclohydrolase IIa activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.526596	0.388931	0.751788	0.828871	0.469695	2.42383
+GO:0043752: [MF] adenosylcobinamide kinase activity	0.176107	3.3816	2.72149	10.0231	7.27764	13.1028
+GO:0043752: [MF] adenosylcobinamide kinase activity|g__Clostridium.s__Clostridium_thermocellum	0.176107	3.3816	2.72149	10.0231	7.27764	13.1028
+GO:0043755: [MF] alpha-ribazole phosphatase activity	0.550997	2.53531	1.5333	6.70068	5.21243	4.3977
+GO:0043755: [MF] alpha-ribazole phosphatase activity|g__Clostridium.s__Clostridium_thermocellum	0.550997	2.53531	1.5333	6.70068	5.21243	4.3977
+GO:0043761: [MF] archaetidylserine synthase activity	1.22575	1.77486	1.71368	1.3061	1.02104	1.75351
+GO:0043761: [MF] archaetidylserine synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.22575	1.77486	1.71368	1.3061	1.02104	1.75351
+GO:0043765: [MF] T/G mismatch-specific endonuclease activity	0.150029	0	0	0	0	0
+GO:0043765: [MF] T/G mismatch-specific endonuclease activity|g__Escherichia.s__Escherichia_coli	0.150029	0	0	0	0	0
+GO:0043766: [MF] Sep-tRNA:Cys-tRNA synthase activity	0.320984	0.664072	0.412452	0.379046	0.154329	0.262915
+GO:0043766: [MF] Sep-tRNA:Cys-tRNA synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.320984	0.664072	0.412452	0.379046	0.154329	0.262915
+GO:0043768: [MF] S-ribosylhomocysteine lyase activity	0	0	0.492967	0	0	0
+GO:0043768: [MF] S-ribosylhomocysteine lyase activity|g__Escherichia.s__Escherichia_coli	0	0	0.492967	0	0	0
+GO:0043772: [MF] acyl-phosphate glycerol-3-phosphate acyltransferase activity	302.318	110.993	96.964	122.632	142.067	125.987
+GO:0043772: [MF] acyl-phosphate glycerol-3-phosphate acyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.9589	11.5427	11.783	46.3819	56.3684	42.4494
+GO:0043772: [MF] acyl-phosphate glycerol-3-phosphate acyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	299.256	99.4498	85.1809	76.2499	85.699	83.538
+GO:0043772: [MF] acyl-phosphate glycerol-3-phosphate acyltransferase activity|g__Escherichia.s__Escherichia_coli	0.103876	0	0	0	0	0
+GO:0043773: [MF] coenzyme F420-0 gamma-glutamyl ligase activity	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0043773: [MF] coenzyme F420-0 gamma-glutamyl ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0043781: [MF] cobalt-factor II C20-methyltransferase activity	0.177006	0.170032	0	0.226492	0.513556	0.471145
+GO:0043781: [MF] cobalt-factor II C20-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.177006	0.170032	0	0.226492	0.513556	0.471145
+GO:0043801: [MF] hexulose-6-phosphate synthase activity	0.0453757	0.172926	0.0842136	0.742945	0.162121	0.332153
+GO:0043801: [MF] hexulose-6-phosphate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0453757	0.172926	0.0842136	0.742945	0.162121	0.332153
+GO:0043805: [MF] indolepyruvate ferredoxin oxidoreductase activity	137.869	67.4283	101.111	48.3755	53.7129	79.4731
+GO:0043805: [MF] indolepyruvate ferredoxin oxidoreductase activity|g__Clostridium.s__Clostridium_thermocellum	2.93977	15.4651	10.6259	35.8904	33.2201	36.3226
+GO:0043805: [MF] indolepyruvate ferredoxin oxidoreductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	134.735	51.7516	89.4588	11.2984	20.3181	42.559
+GO:0043805: [MF] indolepyruvate ferredoxin oxidoreductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.193801	0.211665	1.02649	1.18665	0.174708	0.591543
+GO:0043807: [MF] 3-methyl-2-oxobutanoate dehydrogenase (ferredoxin) activity	108.753	61.7926	47.705	59.1111	66.9468	93.9611
+GO:0043807: [MF] 3-methyl-2-oxobutanoate dehydrogenase (ferredoxin) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	108.699	61.6366	47.053	58.4475	66.6334	93.9611
+GO:0043807: [MF] 3-methyl-2-oxobutanoate dehydrogenase (ferredoxin) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0541494	0.156077	0.652057	0.663609	0.313477	0
+GO:0043814: [MF] phospholactate guanylyltransferase activity	0.465325	0	0.172802	0.238231	0	0
+GO:0043814: [MF] phospholactate guanylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.465325	0	0.172802	0.238231	0	0
+GO:0043815: [MF] phosphoribosylglycinamide formyltransferase 2 activity	0	0	0.26297	0	0	0.124181
+GO:0043815: [MF] phosphoribosylglycinamide formyltransferase 2 activity|g__Escherichia.s__Escherichia_coli	0	0	0.26297	0	0	0.124181
+GO:0043817: [MF] phosphosulfolactate synthase activity	0.232565	0.595509	0.863065	1.54662	0.415307	0.670579
+GO:0043817: [MF] phosphosulfolactate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.232565	0.595509	0.863065	1.54662	0.415307	0.670579
+GO:0043821: [MF] propionyl-CoA:succinate CoA-transferase activity	0.0623156	0	0	0	0	0.0829169
+GO:0043821: [MF] propionyl-CoA:succinate CoA-transferase activity|g__Escherichia.s__Escherichia_coli	0.0623156	0	0	0	0	0.0829169
+GO:0043825: [MF] succinylornithine transaminase activity	0.0680757	0	0	0	0	0
+GO:0043825: [MF] succinylornithine transaminase activity|g__Escherichia.s__Escherichia_coli	0.0680757	0	0	0	0	0
+GO:0043838: [MF] phosphatidylethanolamine:Kdo2-lipid A phosphoethanolamine transferase activity	0.0630447	0	0	0	0	0
+GO:0043838: [MF] phosphatidylethanolamine:Kdo2-lipid A phosphoethanolamine transferase activity|g__Escherichia.s__Escherichia_coli	0.0630447	0	0	0	0	0
+GO:0043846: [CC] DNA polymerase III, clamp loader complex	0.0136346	0	0	0	0	0
+GO:0043846: [CC] DNA polymerase III, clamp loader complex|g__Escherichia.s__Escherichia_coli	0.0136346	0	0	0	0	0
+GO:0043884: [MF] CO-methylating acetyl-CoA synthase activity	0.0394212	0	0	0	0.0704043	0.0524537
+GO:0043884: [MF] CO-methylating acetyl-CoA synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0394212	0	0	0	0.0704043	0.0524537
+GO:0043887: [MF] melibiose:sodium symporter activity	0.142252	0	0.0880025	0	0	0.212208
+GO:0043887: [MF] melibiose:sodium symporter activity|g__Escherichia.s__Escherichia_coli	0.142252	0	0.0880025	0	0	0.212208
+GO:0043917: [MF] ribose 1,5-bisphosphate isomerase activity	0.222333	0.573012	0.41146	0.532295	0.266599	0.446632
+GO:0043917: [MF] ribose 1,5-bisphosphate isomerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.222333	0.573012	0.41146	0.532295	0.266599	0.446632
+GO:0043934: [BP] sporulation	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0043934: [BP] sporulation|g__Clostridium.s__Clostridium_thermocellum	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0043937: [BP] regulation of sporulation	0.816179	4.93041	4.15096	24.8279	21.9791	19.7016
+GO:0043937: [BP] regulation of sporulation|g__Clostridium.s__Clostridium_thermocellum	0.816179	4.93041	4.15096	24.8279	21.9791	19.7016
+GO:0043952: [BP] protein transport by the Sec complex	95.2524	101.751	87.5394	245.802	195.747	155.367
+GO:0043952: [BP] protein transport by the Sec complex|g__Clostridium.s__Clostridium_thermocellum	13.7304	31.2207	19.5836	185.679	124.807	93.6323
+GO:0043952: [BP] protein transport by the Sec complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	81.4106	70.5303	67.6728	60.1239	70.9404	61.7074
+GO:0043952: [BP] protein transport by the Sec complex|g__Escherichia.s__Escherichia_coli	0.111458	0	0.283087	0	0	0.0273587
+GO:0043953: [BP] protein transport by the Tat complex	0.621406	0	0	0	0	0
+GO:0043953: [BP] protein transport by the Tat complex|g__Escherichia.s__Escherichia_coli	0.621406	0	0	0	0	0
+GO:0043957: [MF] acryloyl-CoA reductase (NADP+) activity	0.117777	0	0.21845	0	0	0
+GO:0043957: [MF] acryloyl-CoA reductase (NADP+) activity|g__Escherichia.s__Escherichia_coli	0.117777	0	0.21845	0	0	0
+GO:0044010: [BP] single-species biofilm formation	0.214726	0	0.526166	0	0	1.27302
+GO:0044010: [BP] single-species biofilm formation|g__Escherichia.s__Escherichia_coli	0.214726	0	0.526166	0	0	1.27302
+GO:0044036: [BP] cell wall macromolecule metabolic process	0.0143151	0	0	0	0	0
+GO:0044036: [BP] cell wall macromolecule metabolic process|g__Escherichia.s__Escherichia_coli	0.0143151	0	0	0	0	0
+GO:0044038: [BP] cell wall macromolecule biosynthetic process	0.0765578	0	0.0472715	0	0	0
+GO:0044038: [BP] cell wall macromolecule biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0765578	0	0.0472715	0	0	0
+GO:0044092: [BP] negative regulation of molecular function	0.168767	0	0	0	0	0
+GO:0044092: [BP] negative regulation of molecular function|g__Escherichia.s__Escherichia_coli	0.168767	0	0	0	0	0
+GO:0044179: [BP] hemolysis in other organism	0	0	0	0	0	0.0424286
+GO:0044179: [BP] hemolysis in other organism|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0424286
+GO:0044183: [MF] protein binding involved in protein folding	0.702582	0	0.704742	0	0	0
+GO:0044183: [MF] protein binding involved in protein folding|g__Escherichia.s__Escherichia_coli	0.702582	0	0.704742	0	0	0
+GO:0044205: [BP] 'de novo' UMP biosynthetic process	19.4928	44.1653	39.3358	99.6152	108.781	109.723
+GO:0044205: [BP] 'de novo' UMP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	4.99385	32.0568	27.8071	93.7942	102.431	103.234
+GO:0044205: [BP] 'de novo' UMP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.9763	7.93176	8.68739	2.85556	3.98222	3.30685
+GO:0044205: [BP] 'de novo' UMP biosynthetic process|g__Escherichia.s__Escherichia_coli	0.234145	0	0.0147047	0	0	0
+GO:0044205: [BP] 'de novo' UMP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.28852	4.17673	2.82659	2.96541	2.36777	3.1826
+GO:0044206: [BP] UMP salvage	34.539	101.442	94.9208	154.13	149.831	165.571
+GO:0044206: [BP] UMP salvage|g__Clostridium.s__Clostridium_thermocellum	10.1241	63.2315	62.446	131.224	128.121	141.808
+GO:0044206: [BP] UMP salvage|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	24.2382	38.2105	32.2957	22.7568	21.5793	23.6577
+GO:0044206: [BP] UMP salvage|g__Escherichia.s__Escherichia_coli	0.0792312	0	0	0	0	0.105683
+GO:0044206: [BP] UMP salvage|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0975079	0	0.179027	0.149818	0.130738	0
+GO:0044208: [BP] 'de novo' AMP biosynthetic process	37.488	46.8342	42.4175	116.478	132.705	106.66
+GO:0044208: [BP] 'de novo' AMP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	3.47798	25.0905	23.5623	91.833	104.184	82.8417
+GO:0044208: [BP] 'de novo' AMP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	33.6181	21.2865	17.5166	22.9178	27.6806	22.5992
+GO:0044208: [BP] 'de novo' AMP biosynthetic process|g__Escherichia.s__Escherichia_coli	0.103268	0	0	0	0	0
+GO:0044208: [BP] 'de novo' AMP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.288538	0.457168	1.33862	1.72706	0.84025	1.21901
+GO:0044209: [BP] AMP salvage	92.9624	95.0476	63.2241	179.437	139.521	142.404
+GO:0044209: [BP] AMP salvage|g__Clostridium.s__Clostridium_thermocellum	9.88801	36.4396	19.4887	142.417	93.9552	92.2094
+GO:0044209: [BP] AMP salvage|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	82.9271	58.608	43.511	37.0193	45.5653	50.1944
+GO:0044209: [BP] AMP salvage|g__Escherichia.s__Escherichia_coli	0.147307	0	0.224404	0	0	0
+GO:0044210: [BP] 'de novo' CTP biosynthetic process	128.517	156.367	124.671	267.003	311.013	400.72
+GO:0044210: [BP] 'de novo' CTP biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	14.3125	84.6314	61.1861	206.548	245.317	356.629
+GO:0044210: [BP] 'de novo' CTP biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	113.73	71.2217	63.299	59.6361	65.3162	43.5671
+GO:0044210: [BP] 'de novo' CTP biosynthetic process|g__Escherichia.s__Escherichia_coli	0.247707	0	0	0	0	0
+GO:0044210: [BP] 'de novo' CTP biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.226489	0.514297	0.186334	0.818675	0.379063	0.523955
+GO:0044211: [BP] CTP salvage	10.1265	24.3598	14.7753	15.3747	16.4329	16.4033
+GO:0044211: [BP] CTP salvage|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.1265	24.3598	14.7753	15.3747	16.4329	16.4033
+GO:0044212: [MF] transcription regulatory region DNA binding	0.423012	0	0.411956	0	0	0.379206
+GO:0044212: [MF] transcription regulatory region DNA binding|g__Escherichia.s__Escherichia_coli	0.423012	0	0.411956	0	0	0.379206
+GO:0044237: [BP] cellular metabolic process	9.47532	8.33493	8.53972	5.25356	5.34	5.49489
+GO:0044237: [BP] cellular metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.47532	8.33493	8.53972	5.25356	5.34	5.49489
+GO:0044238: [BP] primary metabolic process	99.9982	257.672	217.979	871.723	621.865	821.805
+GO:0044238: [BP] primary metabolic process|g__Clostridium.s__Clostridium_thermocellum	57.9763	215.103	127.475	832.845	569.085	772.994
+GO:0044238: [BP] primary metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	42.0218	42.5692	90.504	38.8777	52.7804	48.8106
+GO:0044260: [BP] cellular macromolecule metabolic process	0	0	0.267977	0	0.0645879	0.240537
+GO:0044260: [BP] cellular macromolecule metabolic process|g__Clostridium.s__Clostridium_thermocellum	0	0	0.267977	0	0.0645879	0.240537
+GO:0044262: [BP] cellular carbohydrate metabolic process	0.0890257	0	0.0933701	0	0	0
+GO:0044262: [BP] cellular carbohydrate metabolic process|g__Escherichia.s__Escherichia_coli	0.0890257	0	0.0933701	0	0	0
+GO:0044281: [BP] small molecule metabolic process	0.0604685	0	0	0	0	0
+GO:0044281: [BP] small molecule metabolic process|g__Escherichia.s__Escherichia_coli	0.0604685	0	0	0	0	0
+GO:0044283: [BP] small molecule biosynthetic process	0.143856	0	0.138477	0	0	0.0419435
+GO:0044283: [BP] small molecule biosynthetic process|g__Escherichia.s__Escherichia_coli	0.143856	0	0.138477	0	0	0.0419435
+GO:0044318: [MF] L-aspartate:fumarate oxidoreductase activity	2.06198	11.9143	6.784	25.377	25.8602	20.0365
+GO:0044318: [MF] L-aspartate:fumarate oxidoreductase activity|g__Clostridium.s__Clostridium_thermocellum	2.029	11.9143	6.784	25.377	25.8602	20.0365
+GO:0044318: [MF] L-aspartate:fumarate oxidoreductase activity|g__Escherichia.s__Escherichia_coli	0.0330049	0	0	0	0	0
+GO:0044349: [BP] DNA excision	1.42047	0	0	0	0	0
+GO:0044349: [BP] DNA excision|g__Escherichia.s__Escherichia_coli	1.42047	0	0	0	0	0
+GO:0044571: [BP] [2Fe-2S] cluster assembly	3.91947	55.9324	51.6661	114.788	99.4343	130.863
+GO:0044571: [BP] [2Fe-2S] cluster assembly|g__Clostridium.s__Clostridium_thermocellum	3.91947	55.9324	51.6661	114.788	99.4343	130.863
+GO:0044610: [MF] FMN transmembrane transporter activity	0.0959524	0	0	0	0	0.0780984
+GO:0044610: [MF] FMN transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.0959524	0	0	0	0	0.0780984
+GO:0044667: [MF] (R)-carnitine:4-(trimethylammonio)butanoate antiporter activity	0.0349249	0	0	0	0	0
+GO:0044667: [MF] (R)-carnitine:4-(trimethylammonio)butanoate antiporter activity|g__Escherichia.s__Escherichia_coli	0.0349249	0	0	0	0	0
+GO:0044689: [MF] 7,8-didemethyl-8-hydroxy-5-deazariboflavin synthase activity	0.120913	0.263659	0.169871	0.81472	0.656687	1.09606
+GO:0044689: [MF] 7,8-didemethyl-8-hydroxy-5-deazariboflavin synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.120913	0.263659	0.169871	0.81472	0.656687	1.09606
+GO:0044718: [BP] siderophore transmembrane transport	0	0	0.117682	0	0	0
+GO:0044718: [BP] siderophore transmembrane transport|g__Escherichia.s__Escherichia_coli	0	0	0.117682	0	0	0
+GO:0044780: [BP] bacterial-type flagellum assembly	33.6046	88.8166	65.9186	967.809	899.021	747.623
+GO:0044780: [BP] bacterial-type flagellum assembly|g__Clostridium.s__Clostridium_thermocellum	33.414	88.8166	65.5319	967.809	899.021	747.531
+GO:0044780: [BP] bacterial-type flagellum assembly|g__Escherichia.s__Escherichia_coli	0.190665	0	0.386697	0	0	0.0924892
+GO:0044781: [BP] bacterial-type flagellum organization	15.8754	45.6453	37.7114	405.282	394.889	280.533
+GO:0044781: [BP] bacterial-type flagellum organization|g__Clostridium.s__Clostridium_thermocellum	15.7928	45.6453	37.7114	405.282	394.889	280.533
+GO:0044781: [BP] bacterial-type flagellum organization|g__Escherichia.s__Escherichia_coli	0.0825852	0	0	0	0	0
+GO:0044822: [MF] poly(A) RNA binding	1.45856	0.187441	1.44701	1.9968	1.30741	2.72633
+GO:0044822: [MF] poly(A) RNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.45856	0.187441	1.44701	1.9968	1.30741	2.72633
+GO:0045127: [MF] N-acetylglucosamine kinase activity	0.0637981	0	0	0	0	0.0424286
+GO:0045127: [MF] N-acetylglucosamine kinase activity|g__Escherichia.s__Escherichia_coli	0.0637981	0	0	0	0	0.0424286
+GO:0045148: [MF] tripeptide aminopeptidase activity	3.49947	3.40423	4.12114	2.4798	3.00514	1.70061
+GO:0045148: [MF] tripeptide aminopeptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.49947	3.40423	4.12114	2.4798	3.00514	1.70061
+GO:0045150: [BP] acetoin catabolic process	115.779	6.00386	9.3934	2.61932	4.8924	1.93923
+GO:0045150: [BP] acetoin catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	115.779	6.00386	9.3934	2.61932	4.8924	1.93923
+GO:0045226: [BP] extracellular polysaccharide biosynthetic process	7.5669	45.7342	42.6538	85.2588	100.104	158.167
+GO:0045226: [BP] extracellular polysaccharide biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	3.49648	43.6705	36.7416	84.3769	98.3134	155.723
+GO:0045226: [BP] extracellular polysaccharide biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.26015	1.99964	4.92832	0.722029	1.58891	1.92271
+GO:0045226: [BP] extracellular polysaccharide biosynthetic process|g__Escherichia.s__Escherichia_coli	0.599459	0	0.25873	0	0	0.134045
+GO:0045226: [BP] extracellular polysaccharide biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.210813	0.0640362	0.72522	0.15989	0.20162	0.387873
+GO:0045227: [BP] capsule polysaccharide biosynthetic process	3.35204	16.584	8.70638	40.1594	35.961	49.9037
+GO:0045227: [BP] capsule polysaccharide biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	3.00262	16.584	8.70638	40.1594	35.961	49.9037
+GO:0045227: [BP] capsule polysaccharide biosynthetic process|g__Escherichia.s__Escherichia_coli	0.349419	0	0	0	0	0
+GO:0045228: [BP] slime layer polysaccharide biosynthetic process	0.232954	0	0.37745	0	0	0
+GO:0045228: [BP] slime layer polysaccharide biosynthetic process|g__Escherichia.s__Escherichia_coli	0.232954	0	0.37745	0	0	0
+GO:0045261: [CC] proton-transporting ATP synthase complex, catalytic core F(1)	85.8779	283.812	220.322	648.292	582.796	410.656
+GO:0045261: [CC] proton-transporting ATP synthase complex, catalytic core F(1)|g__Clostridium.s__Clostridium_thermocellum	25.5101	244.926	185.521	603.219	524.557	371.999
+GO:0045261: [CC] proton-transporting ATP synthase complex, catalytic core F(1)|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	60.197	38.8859	34.5492	45.0736	58.2389	38.6567
+GO:0045261: [CC] proton-transporting ATP synthase complex, catalytic core F(1)|g__Escherichia.s__Escherichia_coli	0.170785	0	0.252415	0	0	0
+GO:0045263: [CC] proton-transporting ATP synthase complex, coupling factor F(o)	150.759	915.527	629.329	1261.03	1264.1	1120.12
+GO:0045263: [CC] proton-transporting ATP synthase complex, coupling factor F(o)|g__Clostridium.s__Clostridium_thermocellum	49.4319	817.603	559.07	1147.11	1114.3	1031.6
+GO:0045263: [CC] proton-transporting ATP synthase complex, coupling factor F(o)|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	101.007	97.924	69.6329	113.925	149.799	88.5222
+GO:0045263: [CC] proton-transporting ATP synthase complex, coupling factor F(o)|g__Escherichia.s__Escherichia_coli	0.319914	0	0.625445	0	0	0
+GO:0045281: [CC] succinate dehydrogenase complex	0.190617	0	0	0	0	0
+GO:0045281: [CC] succinate dehydrogenase complex|g__Escherichia.s__Escherichia_coli	0.190617	0	0	0	0	0
+GO:0045330: [MF] aspartyl esterase activity	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0045330: [MF] aspartyl esterase activity|g__Clostridium.s__Clostridium_thermocellum	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0045333: [BP] cellular respiration	0.0717456	0	0.122734	0	0	0.0111569
+GO:0045333: [BP] cellular respiration|g__Escherichia.s__Escherichia_coli	0.0717456	0	0.122734	0	0	0.0111569
+GO:0045337: [BP] farnesyl diphosphate biosynthetic process	0.129589	0	0	0	0	0
+GO:0045337: [BP] farnesyl diphosphate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.129589	0	0	0	0	0
+GO:0045437: [MF] uridine nucleosidase activity	0.153577	0	0	0	0	0
+GO:0045437: [MF] uridine nucleosidase activity|g__Escherichia.s__Escherichia_coli	0.153577	0	0	0	0	0
+GO:0045454: [BP] cell redox homeostasis	153.79	952.077	856.77	2014.43	1580.85	2320.96
+GO:0045454: [BP] cell redox homeostasis|g__Clostridium.s__Clostridium_thermocellum	75.2534	772.464	610.22	1880.1	1429.21	2212.82
+GO:0045454: [BP] cell redox homeostasis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	75.4945	173.534	241.865	130.534	149.926	105.491
+GO:0045454: [BP] cell redox homeostasis|g__Escherichia.s__Escherichia_coli	0.953399	0	0.750344	0	0	0.0517099
+GO:0045454: [BP] cell redox homeostasis|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.08901	6.07896	3.93481	3.80195	1.70492	2.5984
+GO:0045471: [BP] response to ethanol	0.269994	0	0.200453	0	0	0
+GO:0045471: [BP] response to ethanol|g__Escherichia.s__Escherichia_coli	0.269994	0	0.200453	0	0	0
+GO:0045490: [BP] pectin catabolic process	0.218955	0.150196	0.268834	0.495139	0.349135	0.332929
+GO:0045490: [BP] pectin catabolic process|g__Clostridium.s__Clostridium_thermocellum	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0045490: [BP] pectin catabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.0656748	0	0	0
+GO:0045493: [BP] xylan catabolic process	29.4383	51.7107	53.1545	97.1435	79.9344	78.4948
+GO:0045493: [BP] xylan catabolic process|g__Clostridium.s__Clostridium_thermocellum	29.2106	51.6523	53.1545	97.1435	79.9208	78.4948
+GO:0045493: [BP] xylan catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.227778	0.058342	0	0	0.0135643	0
+GO:0045550: [MF] geranylgeranyl reductase activity	0.266154	1.40968	0.781738	1.31692	1.02676	1.37405
+GO:0045550: [MF] geranylgeranyl reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.266154	1.40968	0.781738	1.31692	1.02676	1.37405
+GO:0045717: [BP] negative regulation of fatty acid biosynthetic process	2.61811	19.529	5.98408	62.2942	58.1151	35.9727
+GO:0045717: [BP] negative regulation of fatty acid biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.48606	19.529	5.98408	62.2942	58.1151	35.9727
+GO:0045717: [BP] negative regulation of fatty acid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.132044	0	0	0	0	0
+GO:0045727: [BP] positive regulation of translation	4.98386	17.2294	11.4699	31.2616	34.3021	35.1088
+GO:0045727: [BP] positive regulation of translation|g__Clostridium.s__Clostridium_thermocellum	1.05275	13.504	8.41166	25.5348	28.3919	30.655
+GO:0045727: [BP] positive regulation of translation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.84932	3.72544	2.99596	5.72677	5.91025	4.45378
+GO:0045727: [BP] positive regulation of translation|g__Escherichia.s__Escherichia_coli	0.0817831	0	0.0622017	0	0	0
+GO:0045828: [BP] positive regulation of isoprenoid metabolic process	0.0932304	0	0	0	0	0
+GO:0045828: [BP] positive regulation of isoprenoid metabolic process|g__Escherichia.s__Escherichia_coli	0.0932304	0	0	0	0	0
+GO:0045862: [BP] positive regulation of proteolysis	0.0281198	0	0	0	0	0
+GO:0045862: [BP] positive regulation of proteolysis|g__Escherichia.s__Escherichia_coli	0.0281198	0	0	0	0	0
+GO:0045892: [BP] negative regulation of transcription, DNA-templated	90.9291	289.743	245.239	1148.45	1201.22	1573.41
+GO:0045892: [BP] negative regulation of transcription, DNA-templated|g__Clostridium.s__Clostridium_thermocellum	61.3857	237.87	183.623	1112.24	1159.02	1531.92
+GO:0045892: [BP] negative regulation of transcription, DNA-templated|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	27.5553	51.8725	59.3377	36.2145	42.1951	41.0816
+GO:0045892: [BP] negative regulation of transcription, DNA-templated|g__Escherichia.s__Escherichia_coli	1.98819	0	2.27895	0	0	0.404204
+GO:0045893: [BP] positive regulation of transcription, DNA-templated	2.81635	0	0.931942	0	0	1.34226
+GO:0045893: [BP] positive regulation of transcription, DNA-templated|g__Escherichia.s__Escherichia_coli	2.81635	0	0.931942	0	0	1.34226
+GO:0045901: [BP] positive regulation of translational elongation	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0045901: [BP] positive regulation of translational elongation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0045905: [BP] positive regulation of translational termination	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0045905: [BP] positive regulation of translational termination|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0045910: [BP] negative regulation of DNA recombination	21.7637	28.6087	23.2871	45.1221	50.631	46.856
+GO:0045910: [BP] negative regulation of DNA recombination|g__Clostridium.s__Clostridium_thermocellum	1.79646	9.59572	7.45549	24.5317	25.6271	27.6692
+GO:0045910: [BP] negative regulation of DNA recombination|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	19.9673	19.013	15.8316	20.5905	25.004	19.1869
+GO:0045936: [BP] negative regulation of phosphate metabolic process	135.519	181.203	114.123	130.628	159.54	130.57
+GO:0045936: [BP] negative regulation of phosphate metabolic process|g__Clostridium.s__Clostridium_thermocellum	0.873002	8.92465	7.92108	11.9012	13.2486	11.9292
+GO:0045936: [BP] negative regulation of phosphate metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	134.535	172.094	104.632	117.972	146.035	117.723
+GO:0045936: [BP] negative regulation of phosphate metabolic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.112378
+GO:0045936: [BP] negative regulation of phosphate metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.111434	0.184127	1.56966	0.754758	0.256333	0.805659
+GO:0045947: [BP] negative regulation of translational initiation	0.168767	0	0	0	0	0
+GO:0045947: [BP] negative regulation of translational initiation|g__Escherichia.s__Escherichia_coli	0.168767	0	0	0	0	0
+GO:0045982: [BP] negative regulation of purine nucleobase metabolic process	1.63228	13.8764	9.70138	49.8668	49.5821	67.5221
+GO:0045982: [BP] negative regulation of purine nucleobase metabolic process|g__Clostridium.s__Clostridium_thermocellum	1.63228	13.8764	9.70138	49.8668	49.5821	67.5221
+GO:0046026: [MF] precorrin-4 C11-methyltransferase activity	0.0830956	0.0797652	0	0.0849563	0.111293	0.0551701
+GO:0046026: [MF] precorrin-4 C11-methyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0830956	0.0797652	0	0.0849563	0.111293	0.0551701
+GO:0046034: [BP] ATP metabolic process	0.85927	1.48119	1.15811	14.8812	12.7606	11.0413
+GO:0046034: [BP] ATP metabolic process|g__Clostridium.s__Clostridium_thermocellum	0.844128	1.36483	0.989498	14.7573	12.6659	10.6787
+GO:0046034: [BP] ATP metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0151414	0.116311	0.168608	0.123953	0.0946464	0.362616
+GO:0046039: [BP] GTP metabolic process	1.32146	7.17098	4.90211	16.84	15.7692	21.3615
+GO:0046039: [BP] GTP metabolic process|g__Clostridium.s__Clostridium_thermocellum	1.23528	7.17098	4.74217	16.84	15.7692	21.3615
+GO:0046039: [BP] GTP metabolic process|g__Escherichia.s__Escherichia_coli	0.0861822	0	0.159947	0	0	0
+GO:0046080: [BP] dUTP metabolic process	11.2078	30.0108	19.2557	52.7854	62.0241	79.491
+GO:0046080: [BP] dUTP metabolic process|g__Clostridium.s__Clostridium_thermocellum	4.346	16.0451	11.3653	45.9244	54.2822	67.5313
+GO:0046080: [BP] dUTP metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.62402	13.6576	7.89036	6.861	7.59871	11.9597
+GO:0046080: [BP] dUTP metabolic process|g__Escherichia.s__Escherichia_coli	0.0786479	0	0	0	0	0
+GO:0046080: [BP] dUTP metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.159119	0.308093	0	0	0.143261	0
+GO:0046104: [BP] thymidine metabolic process	0.0414384	0	0	0	0	0
+GO:0046104: [BP] thymidine metabolic process|g__Escherichia.s__Escherichia_coli	0.0414384	0	0	0	0	0
+GO:0046113: [BP] nucleobase catabolic process	2.14196	3.38192	3.26796	1.73579	2.60042	1.87404
+GO:0046113: [BP] nucleobase catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.07992	3.38192	3.26796	1.73579	2.60042	1.87404
+GO:0046113: [BP] nucleobase catabolic process|g__Escherichia.s__Escherichia_coli	0.0620482	0	0	0	0	0
+GO:0046133: [BP] pyrimidine ribonucleoside catabolic process	0	0	0.0567438	0	0	0.040844
+GO:0046133: [BP] pyrimidine ribonucleoside catabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.0567438	0	0	0.040844
+GO:0046140: [BP] corrin biosynthetic process	0.581693	1.30481	0.516017	0.416077	0.164313	0.0683321
+GO:0046140: [BP] corrin biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.581693	1.30481	0.516017	0.416077	0.164313	0.0683321
+GO:0046167: [BP] glycerol-3-phosphate biosynthetic process	16.9865	23.3632	20.8785	44.1572	45.8344	36.5379
+GO:0046167: [BP] glycerol-3-phosphate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0046167: [BP] glycerol-3-phosphate biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0046167: [BP] glycerol-3-phosphate biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0046168: [BP] glycerol-3-phosphate catabolic process	1.81461	8.36484	5.71376	33.8568	32.5297	24.5134
+GO:0046168: [BP] glycerol-3-phosphate catabolic process|g__Clostridium.s__Clostridium_thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0046168: [BP] glycerol-3-phosphate catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0046176: [BP] aldonic acid catabolic process	0.0899007	0	0	0	0	0
+GO:0046176: [BP] aldonic acid catabolic process|g__Escherichia.s__Escherichia_coli	0.0899007	0	0	0	0	0
+GO:0046177: [BP] D-gluconate catabolic process	0.100206	0	0	0	0	0
+GO:0046177: [BP] D-gluconate catabolic process|g__Escherichia.s__Escherichia_coli	0.100206	0	0	0	0	0
+GO:0046183: [BP] L-idonate catabolic process	0.431421	0	0	0	0	0.128612
+GO:0046183: [BP] L-idonate catabolic process|g__Escherichia.s__Escherichia_coli	0.431421	0	0	0	0	0.128612
+GO:0046214: [BP] enterobactin catabolic process	0	0	0	0	0	0.0307219
+GO:0046214: [BP] enterobactin catabolic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0307219
+GO:0046256: [BP] 2,4,6-trinitrotoluene catabolic process	0.165389	0	0	0	0	0
+GO:0046256: [BP] 2,4,6-trinitrotoluene catabolic process|g__Escherichia.s__Escherichia_coli	0.165389	0	0	0	0	0
+GO:0046279: [BP] 3,4-dihydroxybenzoate biosynthetic process	1.38574	7.35655	3.7173	17.0606	15.9985	19.0732
+GO:0046279: [BP] 3,4-dihydroxybenzoate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.38574	7.35655	3.7173	17.0606	15.9985	19.0732
+GO:0046294: [BP] formaldehyde catabolic process	0.0710651	0	0	0	0	0
+GO:0046294: [BP] formaldehyde catabolic process|g__Escherichia.s__Escherichia_coli	0.0710651	0	0	0	0	0
+GO:0046296: [BP] glycolate catabolic process	0.0297725	0	0.0829055	0	0	0.0197914
+GO:0046296: [BP] glycolate catabolic process|g__Escherichia.s__Escherichia_coli	0.0297725	0	0.0829055	0	0	0.0197914
+GO:0046316: [MF] gluconokinase activity	0.247318	0	0	0	0	0
+GO:0046316: [MF] gluconokinase activity|g__Escherichia.s__Escherichia_coli	0.247318	0	0	0	0	0
+GO:0046336: [BP] ethanolamine catabolic process	0.0953205	0	0.27339	0	0	0.221715
+GO:0046336: [BP] ethanolamine catabolic process|g__Escherichia.s__Escherichia_coli	0.0953205	0	0.27339	0	0	0.221715
+GO:0046348: [BP] amino sugar catabolic process	0.071381	0	0	0	0	0.0951734
+GO:0046348: [BP] amino sugar catabolic process|g__Escherichia.s__Escherichia_coli	0.071381	0	0	0	0	0.0951734
+GO:0046356: [BP] acetyl-CoA catabolic process	0.0396156	0	0.0734782	0.0405383	0	0
+GO:0046356: [BP] acetyl-CoA catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0396156	0	0.0734782	0.0405383	0	0
+GO:0046365: [BP] monosaccharide catabolic process	0	0	0	0	0	0.0350877
+GO:0046365: [BP] monosaccharide catabolic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0350877
+GO:0046373: [BP] L-arabinose metabolic process	4.20574	10.9966	12.1554	20.5277	18.1504	28.5563
+GO:0046373: [BP] L-arabinose metabolic process|g__Clostridium.s__Clostridium_thermocellum	4.20574	10.9966	12.1554	20.5277	18.1504	28.5563
+GO:0046386: [BP] deoxyribose phosphate catabolic process	21.7813	36.7928	23.142	73.7219	53.9873	77.8534
+GO:0046386: [BP] deoxyribose phosphate catabolic process|g__Clostridium.s__Clostridium_thermocellum	2.09353	22.1003	15.1099	60.3665	37.74	60.8098
+GO:0046386: [BP] deoxyribose phosphate catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	19.2405	14.345	7.7744	13.2134	16.1646	16.8584
+GO:0046386: [BP] deoxyribose phosphate catabolic process|g__Escherichia.s__Escherichia_coli	0.0771654	0	0	0	0	0
+GO:0046386: [BP] deoxyribose phosphate catabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.370175	0.347438	0.257738	0.142033	0.0826881	0.18514
+GO:0046392: [BP] galactarate catabolic process	0.266859	0	0	0	0	0.129873
+GO:0046392: [BP] galactarate catabolic process|g__Escherichia.s__Escherichia_coli	0.266859	0	0	0	0	0.129873
+GO:0046416: [BP] D-amino acid metabolic process	13.9579	8.65483	7.72546	10.4077	13.1879	9.88361
+GO:0046416: [BP] D-amino acid metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	13.8998	8.65483	7.6177	10.4077	13.1879	9.88361
+GO:0046416: [BP] D-amino acid metabolic process|g__Escherichia.s__Escherichia_coli	0.0580624	0	0.107759	0	0	0
+GO:0046417: [BP] chorismate metabolic process	0.237451	0	0.306859	0	0.420168	0.432759
+GO:0046417: [BP] chorismate metabolic process|g__Escherichia.s__Escherichia_coli	0.0721101	0	0	0	0	0
+GO:0046417: [BP] chorismate metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.16534	0	0.306859	0	0.420168	0.432759
+GO:0046429: [MF] 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase activity	18.231	45.0118	33.4474	82.3387	81.4814	85.8727
+GO:0046429: [MF] 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase activity|g__Clostridium.s__Clostridium_thermocellum	4.0625	26.2796	22.4198	63.5567	64.0331	72.5068
+GO:0046429: [MF] 4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.1685	18.7323	11.0275	18.782	17.4483	13.3658
+GO:0046444: [BP] FMN metabolic process	0.0794256	0.457588	0.588683	1.70599	0.70834	0.422734
+GO:0046444: [BP] FMN metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0794256	0.457588	0.588683	1.70599	0.70834	0.422734
+GO:0046459: [BP] short-chain fatty acid metabolic process	0.0336125	0	0.211098	0	0	0.24694
+GO:0046459: [BP] short-chain fatty acid metabolic process|g__Escherichia.s__Escherichia_coli	0.0336125	0	0.211098	0	0	0.24694
+GO:0046467: [BP] membrane lipid biosynthetic process	0.266154	1.40968	0.781738	1.31692	1.02676	1.37405
+GO:0046467: [BP] membrane lipid biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.266154	1.40968	0.781738	1.31692	1.02676	1.37405
+GO:0046474: [BP] glycerophospholipid biosynthetic process	0.162837	0	0.622107	0.291528	0.327171	0.554192
+GO:0046474: [BP] glycerophospholipid biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0.244476	0	0	0.175277
+GO:0046474: [BP] glycerophospholipid biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.162837	0	0.37763	0.291528	0.327171	0.378915
+GO:0046487: [BP] glyoxylate metabolic process	0.0661313	0	0	0	0	0
+GO:0046487: [BP] glyoxylate metabolic process|g__Escherichia.s__Escherichia_coli	0.0661313	0	0	0	0	0
+GO:0046523: [MF] S-methyl-5-thioribose-1-phosphate isomerase activity	24.8705	22.4835	33.9172	42.5619	38.2325	44.7121
+GO:0046523: [MF] S-methyl-5-thioribose-1-phosphate isomerase activity|g__Clostridium.s__Clostridium_thermocellum	1.90797	8.33124	5.07952	33.3417	25.5352	24.3338
+GO:0046523: [MF] S-methyl-5-thioribose-1-phosphate isomerase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	22.4369	12.727	27.7473	8.96712	12.2831	20.0084
+GO:0046523: [MF] S-methyl-5-thioribose-1-phosphate isomerase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.525672	1.42523	1.09036	0.253054	0.414178	0.369989
+GO:0046537: [MF] 2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity	14.1345	126.064	107.908	490.414	487.742	613.033
+GO:0046537: [MF] 2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity|g__Clostridium.s__Clostridium_thermocellum	13.9913	125.801	107.824	489.74	487.58	612.883
+GO:0046537: [MF] 2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity|g__Escherichia.s__Escherichia_coli	0.052278	0	0	0	0	0
+GO:0046537: [MF] 2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0908972	0.262726	0.0834919	0.673582	0.16236	0.150829
+GO:0046538: [MF] 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase activity	55.8674	437.949	223.846	234.611	312.144	253.308
+GO:0046538: [MF] 2,3-bisphosphoglycerate-dependent phosphoglycerate mutase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	55.8674	437.949	223.846	234.611	312.144	253.308
+GO:0046553: [MF] D-malate dehydrogenase (decarboxylating) activity	0	0	0.0963923	0	0	0
+GO:0046553: [MF] D-malate dehydrogenase (decarboxylating) activity|g__Escherichia.s__Escherichia_coli	0	0	0.0963923	0	0	0
+GO:0046555: [MF] acetylxylan esterase activity	7.87794	11.7939	11.5945	20.9763	16.3192	17.9495
+GO:0046555: [MF] acetylxylan esterase activity|g__Clostridium.s__Clostridium_thermocellum	7.87794	11.7939	11.5945	20.9763	16.3192	17.9495
+GO:0046556: [MF] alpha-L-arabinofuranosidase activity	4.20574	10.9966	12.1554	20.5277	18.1504	28.5563
+GO:0046556: [MF] alpha-L-arabinofuranosidase activity|g__Clostridium.s__Clostridium_thermocellum	4.20574	10.9966	12.1554	20.5277	18.1504	28.5563
+GO:0046618: [BP] drug export	0.265619	0	0	0	0	0
+GO:0046618: [BP] drug export|g__Escherichia.s__Escherichia_coli	0.265619	0	0	0	0	0
+GO:0046654: [BP] tetrahydrofolate biosynthetic process	5.06829	33.8886	29.322	80.9409	73.8015	74.2593
+GO:0046654: [BP] tetrahydrofolate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	4.67126	33.8886	28.8079	80.9409	73.8015	74.2593
+GO:0046654: [BP] tetrahydrofolate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.397031	0	0.514032	0	0	0
+GO:0046656: [BP] folic acid biosynthetic process	2.25223	7.73797	6.08304	21.7524	18.4385	14.4682
+GO:0046656: [BP] folic acid biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.92063	7.73797	5.93419	21.7524	18.4385	14.4682
+GO:0046656: [BP] folic acid biosynthetic process|g__Escherichia.s__Escherichia_coli	0.331605	0	0.148851	0	0	0
+GO:0046657: [BP] folic acid catabolic process	0	0	0	0	0	0.0557199
+GO:0046657: [BP] folic acid catabolic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0557199
+GO:0046677: [BP] response to antibiotic	211876	95946.2	117427	37702.5	49725.5	24957.5
+GO:0046677: [BP] response to antibiotic|g__Clostridium.s__Clostridium_thermocellum	133937	95941.1	83198.5	37694.8	49718	17106.2
+GO:0046677: [BP] response to antibiotic|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.94741	5.0141	2.59939	7.62938	7.53182	5.54085
+GO:0046677: [BP] response to antibiotic|g__Escherichia.s__Escherichia_coli	77929.1	0	34225.6	0	0	7845.75
+GO:0046685: [BP] response to arsenic-containing substance	0	0.295351	0.134733	0.209879	0	0.63575
+GO:0046685: [BP] response to arsenic-containing substance|g__Escherichia.s__Escherichia_coli	0	0	0.0395583	0	0	0.185755
+GO:0046685: [BP] response to arsenic-containing substance|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.295351	0.0951744	0.209879	0	0.449996
+GO:0046686: [BP] response to cadmium ion	0.0721344	0	0.0220119	0	0	0
+GO:0046686: [BP] response to cadmium ion|g__Escherichia.s__Escherichia_coli	0.0721344	0	0.0220119	0	0	0
+GO:0046688: [BP] response to copper ion	0.316682	0	0	0	0	0
+GO:0046688: [BP] response to copper ion|g__Escherichia.s__Escherichia_coli	0.316682	0	0	0	0	0
+GO:0046718: [BP] viral entry into host cell	15.5896	0	16.7385	0	0	15.7476
+GO:0046718: [BP] viral entry into host cell|g__Escherichia.s__Escherichia_coli	15.5896	0	16.7385	0	0	15.7476
+GO:0046777: [BP] protein autophosphorylation	0.542758	0	0.142265	0	0	0
+GO:0046777: [BP] protein autophosphorylation|g__Escherichia.s__Escherichia_coli	0.542758	0	0.142265	0	0	0
+GO:0046790: [MF] virion binding	0.0348277	0	0	0	0	0
+GO:0046790: [MF] virion binding|g__Escherichia.s__Escherichia_coli	0.0348277	0	0	0	0	0
+GO:0046797: [BP] viral procapsid maturation	15.7062	0	20.3094	0	0	17.5375
+GO:0046797: [BP] viral procapsid maturation|g__Escherichia.s__Escherichia_coli	15.7062	0	20.3094	0	0	17.5375
+GO:0046820: [MF] 4-amino-4-deoxychorismate synthase activity	0.0401017	0	0.148851	0	0	0
+GO:0046820: [MF] 4-amino-4-deoxychorismate synthase activity|g__Escherichia.s__Escherichia_coli	0.0401017	0	0.148851	0	0	0
+GO:0046834: [BP] lipid phosphorylation	0	0	0.300724	0	0	0
+GO:0046834: [BP] lipid phosphorylation|g__Escherichia.s__Escherichia_coli	0	0	0.300724	0	0	0
+GO:0046835: [BP] carbohydrate phosphorylation	0.460051	0	1.23943	0	0	0.0247716
+GO:0046835: [BP] carbohydrate phosphorylation|g__Escherichia.s__Escherichia_coli	0.460051	0	1.23943	0	0	0.0247716
+GO:0046839: [BP] phospholipid dephosphorylation	0	0	0.244476	0	0	0.175277
+GO:0046839: [BP] phospholipid dephosphorylation|g__Escherichia.s__Escherichia_coli	0	0	0.244476	0	0	0.175277
+GO:0046854: [BP] phosphatidylinositol phosphorylation	37.4463	42.6245	34.9784	32.6609	40.6059	39.8263
+GO:0046854: [BP] phosphatidylinositol phosphorylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	37.3761	42.5571	34.4422	32.5891	40.4493	39.8263
+GO:0046854: [BP] phosphatidylinositol phosphorylation|g__Escherichia.s__Escherichia_coli	0	0	0.27587	0	0	0
+GO:0046854: [BP] phosphatidylinositol phosphorylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0701415	0.06735	0.260354	0.0717752	0.156587	0
+GO:0046855: [BP] inositol phosphate dephosphorylation	0	0	0.27587	0	0	0
+GO:0046855: [BP] inositol phosphate dephosphorylation|g__Escherichia.s__Escherichia_coli	0	0	0.27587	0	0	0
+GO:0046857: [MF] oxidoreductase activity, acting on other nitrogenous compounds as donors, with NAD or NADP as acceptor	0.234874	0	0.129049	0	0	0
+GO:0046857: [MF] oxidoreductase activity, acting on other nitrogenous compounds as donors, with NAD or NADP as acceptor|g__Escherichia.s__Escherichia_coli	0.234874	0	0.129049	0	0	0
+GO:0046870: [MF] cadmium ion binding	0.0484137	0	0	0	0	0
+GO:0046870: [MF] cadmium ion binding|g__Escherichia.s__Escherichia_coli	0.0484137	0	0	0	0	0
+GO:0046872: [MF] metal ion binding	3270.97	5844.48	5119.37	11565.1	10502	11534.1
+GO:0046872: [MF] metal ion binding|g__Clostridium.s__Clostridium_thermocellum	637.316	3232.35	2454.26	9667.48	8203.48	9482.64
+GO:0046872: [MF] metal ion binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2580.65	2572.22	2601.62	1853.15	2273.33	1995.7
+GO:0046872: [MF] metal ion binding|g__Escherichia.s__Escherichia_coli	23.5591	0	27.1815	0	0	17.6502
+GO:0046872: [MF] metal ion binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	29.4427	39.9169	36.3039	44.4933	25.18	38.1282
+GO:0046873: [MF] metal ion transmembrane transporter activity	43.7174	107.347	92.5615	204.958	200.241	243.191
+GO:0046873: [MF] metal ion transmembrane transporter activity|g__Clostridium.s__Clostridium_thermocellum	10.2384	85.9525	69.6178	190.811	184.224	229.896
+GO:0046873: [MF] metal ion transmembrane transporter activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.9464	21.2467	22.6546	14.1468	16.0176	13.2948
+GO:0046873: [MF] metal ion transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.532599	0	0.289132	0	0	0
+GO:0046873: [MF] metal ion transmembrane transporter activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.148189	0	0	0	0
+GO:0046892: [BP] peptidyl-S-carbamoyl-L-cysteine dehydration	0	0	0	0	0	0.0375455
+GO:0046892: [BP] peptidyl-S-carbamoyl-L-cysteine dehydration|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0375455
+GO:0046912: [MF] transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer	6.10508	49.202	32.0363	101.227	94.517	107.523
+GO:0046912: [MF] transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer|g__Clostridium.s__Clostridium_thermocellum	6.07001	49.1346	31.9077	100.8	94.2191	107.021
+GO:0046912: [MF] transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0350707	0.06735	0.128598	0.427244	0.297894	0.5019
+GO:0046914: [MF] transition metal ion binding	18.102	63.9075	43.5643	97.9464	98.1613	189.499
+GO:0046914: [MF] transition metal ion binding|g__Clostridium.s__Clostridium_thermocellum	8.52696	48.5364	33.3028	91.0216	90.0693	179.452
+GO:0046914: [MF] transition metal ion binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.6478	11.8481	7.42383	5.30415	6.56615	7.80654
+GO:0046914: [MF] transition metal ion binding|g__Escherichia.s__Escherichia_coli	0.120767	0	0	0	0	0.0384186
+GO:0046914: [MF] transition metal ion binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.80653	3.52302	2.83773	1.62066	1.52589	2.20179
+GO:0046917: [MF] triphosphoribosyl-dephospho-CoA synthase activity	0.0632878	0	0.0587285	0.0645628	0.113029	0.0842105
+GO:0046917: [MF] triphosphoribosyl-dephospho-CoA synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0632878	0	0.0587285	0.0645628	0.113029	0.0842105
+GO:0046930: [CC] pore complex	1.52537	0	0.928875	0	0	0.781017
+GO:0046930: [CC] pore complex|g__Escherichia.s__Escherichia_coli	1.52537	0	0.928875	0	0	0.781017
+GO:0046933: [MF] proton-transporting ATP synthase activity, rotational mechanism	223.331	534.62	430.882	1075.64	1035.43	832.309
+GO:0046933: [MF] proton-transporting ATP synthase activity, rotational mechanism|g__Clostridium.s__Clostridium_thermocellum	39.0864	407.387	328.627	946.847	865.463	694.314
+GO:0046933: [MF] proton-transporting ATP synthase activity, rotational mechanism|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	183.204	126.744	100.241	127.327	168.807	136.313
+GO:0046933: [MF] proton-transporting ATP synthase activity, rotational mechanism|g__Escherichia.s__Escherichia_coli	0.280274	0	0.376683	0	0	0
+GO:0046933: [MF] proton-transporting ATP synthase activity, rotational mechanism|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.76062	0.488906	1.63768	1.46582	1.1552	1.68208
+GO:0046944: [BP] protein carbamoylation	6.11293	12.0109	6.4719	16.6064	14.7058	16.8578
+GO:0046944: [BP] protein carbamoylation|g__Clostridium.s__Clostridium_thermocellum	0.241607	3.27014	1.08914	9.48984	7.39755	8.80261
+GO:0046944: [BP] protein carbamoylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.79985	8.39756	4.91912	6.8849	7.22312	7.9444
+GO:0046944: [BP] protein carbamoylation|g__Escherichia.s__Escherichia_coli	0	0	0.0214706	0	0	0
+GO:0046944: [BP] protein carbamoylation|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0714782	0.343191	0.442223	0.231615	0.0850971	0.110825
+GO:0046952: [BP] ketone body catabolic process	0.0336125	0	0.0312136	0	0	0.24694
+GO:0046952: [BP] ketone body catabolic process|g__Escherichia.s__Escherichia_coli	0.0336125	0	0.0312136	0	0	0.24694
+GO:0046961: [MF] proton-transporting ATPase activity, rotational mechanism	67.2136	185.241	145.185	433.771	412.093	300.262
+GO:0046961: [MF] proton-transporting ATPase activity, rotational mechanism|g__Clostridium.s__Clostridium_thermocellum	15.4849	150.642	114.174	394.142	360.224	266.265
+GO:0046961: [MF] proton-transporting ATPase activity, rotational mechanism|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	51.5972	34.4361	30.137	39.0334	51.421	33.217
+GO:0046961: [MF] proton-transporting ATPase activity, rotational mechanism|g__Escherichia.s__Escherichia_coli	0.0680757	0	0.252415	0	0	0
+GO:0046961: [MF] proton-transporting ATPase activity, rotational mechanism|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0633607	0.162611	0.622377	0.595192	0.44823	0.779594
+GO:0046982: [MF] protein heterodimerization activity	1.06967	1.02038	0.93077	0.713151	0.591752	1.73427
+GO:0046982: [MF] protein heterodimerization activity|g__Escherichia.s__Escherichia_coli	0.0735441	0	0.0675693	0	0	0.0557199
+GO:0046982: [MF] protein heterodimerization activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.996102	1.02038	0.8632	0.713151	0.591752	1.67855
+GO:0046983: [MF] protein dimerization activity	4.28099	23.3423	17.1938	71.7053	61.57	63.4518
+GO:0046983: [MF] protein dimerization activity|g__Clostridium.s__Clostridium_thermocellum	4.03843	22.7861	16.3044	71.33	61.2833	62.8522
+GO:0046983: [MF] protein dimerization activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.242554	0.556256	0.889407	0.37529	0.286609	0.599692
+GO:0047001: [MF] 2-dehydro-3-deoxy-D-gluconate 5-dehydrogenase activity	1.43953	0	0	0	0	0
+GO:0047001: [MF] 2-dehydro-3-deoxy-D-gluconate 5-dehydrogenase activity|g__Escherichia.s__Escherichia_coli	1.43953	0	0	0	0	0
+GO:0047017: [MF] prostaglandin-F synthase activity	0.143394	0	0	0	0	0
+GO:0047017: [MF] prostaglandin-F synthase activity|g__Escherichia.s__Escherichia_coli	0.143394	0	0	0	0	0
+GO:0047068: [MF] N5,N10-methenyltetrahydromethanopterin hydrogenase activity	0.932547	1.73215	2.1757	2.31429	2.1895	5.72751
+GO:0047068: [MF] N5,N10-methenyltetrahydromethanopterin hydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.932547	1.73215	2.1757	2.31429	2.1895	5.72751
+GO:0047111: [MF] formate dehydrogenase (cytochrome-c-553) activity	0.0717456	0	0	0	0	0.0111569
+GO:0047111: [MF] formate dehydrogenase (cytochrome-c-553) activity|g__Escherichia.s__Escherichia_coli	0.0717456	0	0	0	0	0.0111569
+GO:0047134: [MF] protein-disulfide reductase activity	0.0314008	0	0	0	0	0
+GO:0047134: [MF] protein-disulfide reductase activity|g__Escherichia.s__Escherichia_coli	0.0314008	0	0	0	0	0
+GO:0047138: [MF] aquacobalamin reductase activity	0.086012	0	0.23753	0	0	0
+GO:0047138: [MF] aquacobalamin reductase activity|g__Escherichia.s__Escherichia_coli	0.086012	0	0.23753	0	0	0
+GO:0047151: [MF] methylenetetrahydrofolate-tRNA-(uracil-5-)-methyltransferase (FADH2-oxidizing) activity	16.943	33.2904	24.8852	49.5534	49.4214	42.0487
+GO:0047151: [MF] methylenetetrahydrofolate-tRNA-(uracil-5-)-methyltransferase (FADH2-oxidizing) activity|g__Clostridium.s__Clostridium_thermocellum	1.54783	8.23481	3.57378	33.2139	32.0653	25.7839
+GO:0047151: [MF] methylenetetrahydrofolate-tRNA-(uracil-5-)-methyltransferase (FADH2-oxidizing) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.3952	25.0556	21.3114	16.3395	17.3561	16.2648
+GO:0047154: [MF] methylmalonyl-CoA carboxytransferase activity	9.46407	45.2124	18.9764	191.309	126.004	123.774
+GO:0047154: [MF] methylmalonyl-CoA carboxytransferase activity|g__Clostridium.s__Clostridium_thermocellum	9.46407	45.2124	18.9764	191.309	126.004	123.774
+GO:0047241: [MF] lipopolysaccharide N-acetylmannosaminouronosyltransferase activity	0.0822449	0	0	0	0	0
+GO:0047241: [MF] lipopolysaccharide N-acetylmannosaminouronosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0822449	0	0	0	0	0
+GO:0047244: [MF] N-acetylglucosaminyldiphosphoundecaprenol N-acetyl-beta-D-mannosaminyltransferase activity	0.405076	2.40616	2.02437	5.00743	5.81415	7.05007
+GO:0047244: [MF] N-acetylglucosaminyldiphosphoundecaprenol N-acetyl-beta-D-mannosaminyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.405076	2.40616	2.02437	5.00743	5.81415	7.05007
+GO:0047270: [MF] lipopolysaccharide glucosyltransferase II activity	0.279254	0	0.0518272	0	0	0.148694
+GO:0047270: [MF] lipopolysaccharide glucosyltransferase II activity|g__Escherichia.s__Escherichia_coli	0.279254	0	0.0518272	0	0	0.148694
+GO:0047294: [MF] phosphoglycerol geranylgeranyltransferase activity	0.162837	0	0.37763	0.291528	0.327171	0.378915
+GO:0047294: [MF] phosphoglycerol geranylgeranyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.162837	0	0.37763	0.291528	0.327171	0.378915
+GO:0047295: [MF] geranylgeranylglycerol-phosphate geranylgeranyltransferase activity	0	0	0	0.10719	0.187014	0.092942
+GO:0047295: [MF] geranylgeranylglycerol-phosphate geranylgeranyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0.10719	0.187014	0.092942
+GO:0047298: [MF] (S)-3-amino-2-methylpropionate transaminase activity	0.0217764	0	0.079748	0	0	0
+GO:0047298: [MF] (S)-3-amino-2-methylpropionate transaminase activity|g__Escherichia.s__Escherichia_coli	0.0217764	0	0.079748	0	0	0
+GO:0047310: [MF] glutamine-scyllo-inositol transaminase activity	0.21441	2.05887	0.309565	6.04406	8.5926	8.3998
+GO:0047310: [MF] glutamine-scyllo-inositol transaminase activity|g__Clostridium.s__Clostridium_thermocellum	0.21441	2.05887	0.309565	6.04406	8.5926	8.3998
+GO:0047324: [MF] phosphoenolpyruvate-glycerone phosphotransferase activity	0	0	0	0	0	0.0350877
+GO:0047324: [MF] phosphoenolpyruvate-glycerone phosphotransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0350877
+GO:0047334: [MF] diphosphate-fructose-6-phosphate 1-phosphotransferase activity	7.50242	63.6197	37.5005	278.781	233.258	164.662
+GO:0047334: [MF] diphosphate-fructose-6-phosphate 1-phosphotransferase activity|g__Clostridium.s__Clostridium_thermocellum	7.50242	63.6197	37.5005	278.781	233.258	164.662
+GO:0047355: [MF] CDP-glycerol glycerophosphotransferase activity	10.9342	25.5153	10.5777	19.301	22.5462	21.648
+GO:0047355: [MF] CDP-glycerol glycerophosphotransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.0454972	0	0	0.0465569	0.0406062	0
+GO:0047355: [MF] CDP-glycerol glycerophosphotransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.8887	25.5153	10.5777	19.2544	22.5056	21.648
+GO:0047360: [MF] undecaprenyl-phosphate galactose phosphotransferase activity	3.31325	18.5234	21.8266	35.8816	36.2974	57.8469
+GO:0047360: [MF] undecaprenyl-phosphate galactose phosphotransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.31325	18.5234	21.8266	35.8816	36.2974	57.8469
+GO:0047372: [MF] acylglycerol lipase activity	130.308	180.976	306.722	127.162	177.056	100.76
+GO:0047372: [MF] acylglycerol lipase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	130.308	180.976	306.722	127.162	177.056	100.76
+GO:0047429: [MF] nucleoside-triphosphate diphosphatase activity	44.6282	107.691	98.1461	119.472	133.484	132.151
+GO:0047429: [MF] nucleoside-triphosphate diphosphatase activity|g__Clostridium.s__Clostridium_thermocellum	4.42378	27.4467	20.7349	59.5457	61.5965	71.5612
+GO:0047429: [MF] nucleoside-triphosphate diphosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.9694	79.6803	76.3232	58.9659	71.4159	58.7156
+GO:0047429: [MF] nucleoside-triphosphate diphosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.235117	0.564237	1.08797	0.960733	0.471539	1.87452
+GO:0047440: [MF] 2-dehydro-3-deoxy-D-pentonate aldolase activity	0.0899007	0	0	0	0	0
+GO:0047440: [MF] 2-dehydro-3-deoxy-D-pentonate aldolase activity|g__Escherichia.s__Escherichia_coli	0.0899007	0	0	0	0	0
+GO:0047451: [MF] 3-hydroxyoctanoyl-[acyl-carrier-protein] dehydratase activity	2.00445	17.7779	12.6864	52.541	46.1825	72.3142
+GO:0047451: [MF] 3-hydroxyoctanoyl-[acyl-carrier-protein] dehydratase activity|g__Clostridium.s__Clostridium_thermocellum	2.00445	17.7779	12.3916	52.541	46.1825	72.3142
+GO:0047451: [MF] 3-hydroxyoctanoyl-[acyl-carrier-protein] dehydratase activity|g__Escherichia.s__Escherichia_coli	0	0	0.294815	0	0	0
+GO:0047475: [MF] phenylacetate-CoA ligase activity	7.49318	54.0553	42.4283	103.56	95.1987	85.3541
+GO:0047475: [MF] phenylacetate-CoA ligase activity|g__Clostridium.s__Clostridium_thermocellum	7.14724	53.8933	41.7253	103.042	95.011	84.8779
+GO:0047475: [MF] phenylacetate-CoA ligase activity|g__Escherichia.s__Escherichia_coli	0.0514031	0	0	0	0	0
+GO:0047475: [MF] phenylacetate-CoA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.294541	0.161957	0.702937	0.517149	0.187709	0.47619
+GO:0047480: [MF] UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity	96.3775	104.522	111.311	118.453	117.118	103.798
+GO:0047480: [MF] UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.66061	18.9106	21.8839	51.6569	46.4233	52.6138
+GO:0047480: [MF] UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	93.6144	85.4518	89.3883	66.6686	70.5838	51.1285
+GO:0047480: [MF] UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity|g__Escherichia.s__Escherichia_coli	0.0401989	0	0	0	0	0
+GO:0047480: [MF] UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0623642	0.159577	0.0385659	0.127484	0.111271	0.0552672
+GO:0047484: [BP] regulation of response to osmotic stress	0.0815887	0	0	0	0	0
+GO:0047484: [BP] regulation of response to osmotic stress|g__Escherichia.s__Escherichia_coli	0.0815887	0	0	0	0	0
+GO:0047527: [MF] 2,3-dihydroxybenzoate-serine ligase activity	0	0	0.127425	0	0	0
+GO:0047527: [MF] 2,3-dihydroxybenzoate-serine ligase activity|g__Escherichia.s__Escherichia_coli	0	0	0.127425	0	0	0
+GO:0047553: [MF] 2-oxoglutarate synthase activity	71.6	160.133	152.736	302.593	296.317	244.684
+GO:0047553: [MF] 2-oxoglutarate synthase activity|g__Clostridium.s__Clostridium_thermocellum	10.2128	109.242	75.1143	275.178	259.948	203.582
+GO:0047553: [MF] 2-oxoglutarate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	61.2888	50.6646	77.3708	26.7822	35.8421	40.8824
+GO:0047553: [MF] 2-oxoglutarate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0984557	0.225854	0.251197	0.632696	0.527142	0.219355
+GO:0047617: [MF] acyl-CoA hydrolase activity	0.0976051	0	0	0	0	0
+GO:0047617: [MF] acyl-CoA hydrolase activity|g__Escherichia.s__Escherichia_coli	0.0976051	0	0	0	0	0
+GO:0047631: [MF] ADP-ribose diphosphatase activity	3.14524	23.2511	19.2002	64.0822	62.3987	82.9162
+GO:0047631: [MF] ADP-ribose diphosphatase activity|g__Clostridium.s__Clostridium_thermocellum	3.04396	23.2511	19.2002	64.0822	62.3987	82.9162
+GO:0047631: [MF] ADP-ribose diphosphatase activity|g__Escherichia.s__Escherichia_coli	0.101275	0	0	0	0	0
+GO:0047693: [MF] ATP diphosphatase activity	0.0150928	0	0	0	0	0
+GO:0047693: [MF] ATP diphosphatase activity|g__Escherichia.s__Escherichia_coli	0.0150928	0	0	0	0	0
+GO:0047760: [MF] butyrate-CoA ligase activity	2.2203	6.36735	3.39344	23.8122	21.0374	16.1112
+GO:0047760: [MF] butyrate-CoA ligase activity|g__Clostridium.s__Clostridium_thermocellum	2.00474	6.15989	3.39344	23.8122	21.0374	16.1112
+GO:0047760: [MF] butyrate-CoA ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.215553	0.207418	0	0	0	0
+GO:0047761: [MF] butyrate kinase activity	99.7304	47.3327	54.2261	18.4366	26.1416	51.9546
+GO:0047761: [MF] butyrate kinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	99.7304	47.3327	54.2261	18.4366	26.1416	51.9546
+GO:0047850: [MF] diaminopimelate dehydrogenase activity	2.37006	16.0535	10.7892	47.5035	45.7581	47.6459
+GO:0047850: [MF] diaminopimelate dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	2.37006	16.0535	10.7892	47.5035	45.7581	47.6459
+GO:0047952: [MF] glycerol-3-phosphate dehydrogenase [NAD(P)+] activity	1.81461	8.36484	5.71376	33.8568	32.5297	24.5134
+GO:0047952: [MF] glycerol-3-phosphate dehydrogenase [NAD(P)+] activity|g__Clostridium.s__Clostridium_thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0047952: [MF] glycerol-3-phosphate dehydrogenase [NAD(P)+] activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0048001: [MF] erythrose-4-phosphate dehydrogenase activity	0.055875	0	0	0	0	0
+GO:0048001: [MF] erythrose-4-phosphate dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.055875	0	0	0	0	0
+GO:0048029: [MF] monosaccharide binding	9.93008	21.712	19.6471	49.2977	49.5806	64.6015
+GO:0048029: [MF] monosaccharide binding|g__Clostridium.s__Clostridium_thermocellum	8.9723	20.5811	17.6418	48.8933	48.7887	64.0767
+GO:0048029: [MF] monosaccharide binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.691985	1.13095	2.00534	0.404388	0.791896	0.524763
+GO:0048029: [MF] monosaccharide binding|g__Escherichia.s__Escherichia_coli	0.265789	0	0	0	0	0
+GO:0048034: [BP] heme O biosynthetic process	0.0657425	0	0.122238	0	0	0
+GO:0048034: [BP] heme O biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0657425	0	0.122238	0	0	0
+GO:0048037: [MF] cofactor binding	23.7111	122.456	112.408	309.585	238.458	369.057
+GO:0048037: [MF] cofactor binding|g__Clostridium.s__Clostridium_thermocellum	23.4304	122.456	112.408	309.517	238.34	368.942
+GO:0048037: [MF] cofactor binding|g__Escherichia.s__Escherichia_coli	0.14772	0	0	0	0	0.114674
+GO:0048037: [MF] cofactor binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.132895	0	0	0.0679452	0.118585	0
+GO:0048038: [MF] quinone binding	116.008	136.706	144.934	177.225	169.089	97.0807
+GO:0048038: [MF] quinone binding|g__Clostridium.s__Clostridium_thermocellum	0.783927	6.16806	3.72998	19.1628	18.519	16.1259
+GO:0048038: [MF] quinone binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	114.64	130.538	140.443	157.122	149.942	80.4752
+GO:0048038: [MF] quinone binding|g__Escherichia.s__Escherichia_coli	0.460367	0	0.579391	0	0	0.228183
+GO:0048038: [MF] quinone binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.123683	0	0.181147	0.940688	0.628191	0.251338
+GO:0048040: [MF] UDP-glucuronate decarboxylase activity	0.0923797	0	0	0.0630458	0.0274976	0.0819791
+GO:0048040: [MF] UDP-glucuronate decarboxylase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0923797	0	0	0.0630458	0.0274976	0.0819791
+GO:0048046: [CC] apoplast	33.0322	36.5625	31.4973	44.0348	46.738	34.858
+GO:0048046: [CC] apoplast|g__Clostridium.s__Clostridium_thermocellum	0.235652	6.17217	6.24254	13.548	10.6005	11.2315
+GO:0048046: [CC] apoplast|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0048388: [BP] endosomal lumen acidification	0.85927	1.48119	1.15811	14.8812	12.7606	11.0413
+GO:0048388: [BP] endosomal lumen acidification|g__Clostridium.s__Clostridium_thermocellum	0.844128	1.36483	0.989498	14.7573	12.6659	10.6787
+GO:0048388: [BP] endosomal lumen acidification|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0151414	0.116311	0.168608	0.123953	0.0946464	0.362616
+GO:0048472: [MF] threonine-phosphate decarboxylase activity	1.54258	10.312	9.53233	28.0006	25.9179	34.9722
+GO:0048472: [MF] threonine-phosphate decarboxylase activity|g__Clostridium.s__Clostridium_thermocellum	1.31388	10.2492	9.35046	27.9337	25.8596	34.5376
+GO:0048472: [MF] threonine-phosphate decarboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.228701	0.0627293	0.181869	0.0668509	0.0583808	0.434602
+GO:0048473: [BP] D-methionine transport	0.291284	0	0.135454	0	0	0
+GO:0048473: [BP] D-methionine transport|g__Escherichia.s__Escherichia_coli	0.291284	0	0.135454	0	0	0
+GO:0048500: [CC] signal recognition particle	14.2021	33.6807	26.5458	42.0591	47.9919	48.3257
+GO:0048500: [CC] signal recognition particle|g__Clostridium.s__Clostridium_thermocellum	1.75473	21.6171	14.4992	36.0885	39.4842	42.3414
+GO:0048500: [CC] signal recognition particle|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.3594	11.5885	11.5127	5.29587	7.73811	5.73753
+GO:0048500: [CC] signal recognition particle|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.08797	0.475044	0.533924	0.674801	0.769651	0.246778
+GO:0048511: [BP] rhythmic process	1.62028	2.65867	0	0	0.824819	0
+GO:0048511: [BP] rhythmic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.62028	2.65867	0	0	0.824819	0
+GO:0048870: [BP] cell motility	0	0	0.142987	0	0	0
+GO:0048870: [BP] cell motility|g__Escherichia.s__Escherichia_coli	0	0	0.142987	0	0	0
+GO:0050081: [MF] maltose-6'-phosphate glucosidase activity	0.0207314	0	0.115382	0	0	0
+GO:0050081: [MF] maltose-6'-phosphate glucosidase activity|g__Escherichia.s__Escherichia_coli	0.0207314	0	0.115382	0	0	0
+GO:0050089: [MF] mannose isomerase activity	0	0	0.0826348	0	0	0
+GO:0050089: [MF] mannose isomerase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0826348	0	0	0
+GO:0050136: [MF] NADH dehydrogenase (quinone) activity	0.331191	4.92771	2.86822	9.38924	10.3754	12.6874
+GO:0050136: [MF] NADH dehydrogenase (quinone) activity|g__Clostridium.s__Clostridium_thermocellum	0.331191	4.92771	2.86822	9.38924	10.3754	12.6874
+GO:0050163: [MF] oxaloacetate tautomerase activity	0	0	0.06784	0	0	0.042752
+GO:0050163: [MF] oxaloacetate tautomerase activity|g__Escherichia.s__Escherichia_coli	0	0	0.06784	0	0	0.042752
+GO:0050182: [MF] phosphate butyryltransferase activity	84.1331	96.2858	106.577	80.2442	97.0631	110.934
+GO:0050182: [MF] phosphate butyryltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	84.1331	96.2858	106.577	80.2442	97.0631	110.934
+GO:0050225: [MF] pseudouridine kinase activity	0	0	0	0	0	0.112378
+GO:0050225: [MF] pseudouridine kinase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.112378
+GO:0050242: [MF] pyruvate, phosphate dikinase activity	56.0102	66.3887	55.8741	111.507	113.804	78.337
+GO:0050242: [MF] pyruvate, phosphate dikinase activity|g__Clostridium.s__Clostridium_thermocellum	2.59281	11.6392	13.25	49.2864	44.0848	41.199
+GO:0050242: [MF] pyruvate, phosphate dikinase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	53.4174	54.7495	42.6241	62.2203	69.7192	37.1381
+GO:0050263: [MF] ribosylpyrimidine nucleosidase activity	0	0	0.0567438	0	0	0.040844
+GO:0050263: [MF] ribosylpyrimidine nucleosidase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0567438	0	0	0.040844
+GO:0050270: [MF] S-adenosylhomocysteine deaminase activity	2.20426	9.32091	4.05384	40.4601	33.0883	28.9665
+GO:0050270: [MF] S-adenosylhomocysteine deaminase activity|g__Clostridium.s__Clostridium_thermocellum	2.16138	9.32091	3.97432	40.4601	33.0883	28.9094
+GO:0050270: [MF] S-adenosylhomocysteine deaminase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0428724	0	0.0795225	0	0	0.0570135
+GO:0050297: [MF] stizolobate synthase activity	0.109417	0	0	0	0	0
+GO:0050297: [MF] stizolobate synthase activity|g__Escherichia.s__Escherichia_coli	0.109417	0	0	0	0	0
+GO:0050308: [MF] sugar-phosphatase activity	0.549369	0	0.318541	0	0	0.235589
+GO:0050308: [MF] sugar-phosphatase activity|g__Escherichia.s__Escherichia_coli	0.549369	0	0.318541	0	0	0.235589
+GO:0050355: [MF] triphosphatase activity	0.338191	3.34197	2.52293	10.5247	8.16498	9.25041
+GO:0050355: [MF] triphosphatase activity|g__Clostridium.s__Clostridium_thermocellum	0.295999	3.34197	2.52293	10.5247	8.16498	9.25041
+GO:0050355: [MF] triphosphatase activity|g__Escherichia.s__Escherichia_coli	0.0421918	0	0	0	0	0
+GO:0050380: [MF] undecaprenyl-diphosphatase activity	11.5334	14.8895	8.18062	35.2135	27.3549	28.5416
+GO:0050380: [MF] undecaprenyl-diphosphatase activity|g__Clostridium.s__Clostridium_thermocellum	1.23491	9.13104	5.3175	27.0817	19.7135	23.0007
+GO:0050380: [MF] undecaprenyl-diphosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.94741	5.0141	2.59939	7.62938	7.53182	5.54085
+GO:0050380: [MF] undecaprenyl-diphosphatase activity|g__Escherichia.s__Escherichia_coli	0.0700686	0	0	0	0	0
+GO:0050380: [MF] undecaprenyl-diphosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.281003	0.744397	0.263782	0.502426	0.109621	0
+GO:0050418: [MF] hydroxylamine reductase activity	0.708658	1.0699	1.01462	1.06713	0.931467	0.667248
+GO:0050418: [MF] hydroxylamine reductase activity|g__Clostridium.s__Clostridium_thermocellum	0.0657425	0	0	0.672563	0.58702	0.524666
+GO:0050418: [MF] hydroxylamine reductase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0600366	0	0	0
+GO:0050418: [MF] hydroxylamine reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.642915	1.0699	0.954586	0.394565	0.344447	0.142582
+GO:0050454: [MF] coenzyme F420 hydrogenase activity	14.4802	5.58436	16.7493	14.0663	9.30224	8.95946
+GO:0050454: [MF] coenzyme F420 hydrogenase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	14.4802	5.58436	16.7493	14.0663	9.30224	8.95946
+GO:0050462: [MF] N-acetylneuraminate synthase activity	2.01823	7.02629	4.44239	48.2055	36.2254	39.8759
+GO:0050462: [MF] N-acetylneuraminate synthase activity|g__Clostridium.s__Clostridium_thermocellum	2.01823	7.02629	4.44239	48.2055	36.2254	39.8759
+GO:0050480: [MF] imidazolonepropionase activity	3.62478	1.16768	3.34324	0.222239	0.523626	0.722321
+GO:0050480: [MF] imidazolonepropionase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.62478	1.16768	3.34324	0.222239	0.523626	0.722321
+GO:0050485: [MF] oxidoreductase activity, acting on X-H and Y-H to form an X-Y bond, with a disulfide as acceptor	42.2174	67.3724	100.564	54.2061	62.3147	39.6642
+GO:0050485: [MF] oxidoreductase activity, acting on X-H and Y-H to form an X-Y bond, with a disulfide as acceptor|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	42.2174	67.3724	100.564	54.2061	62.3147	39.6642
+GO:0050492: [MF] glycerol-1-phosphate dehydrogenase [NAD(P)+] activity	27.602	29.9521	19.8093	34.4512	36.0669	26.5214
+GO:0050492: [MF] glycerol-1-phosphate dehydrogenase [NAD(P)+] activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	26.9496	29.1195	18.9011	34.0061	35.9212	26.0876
+GO:0050492: [MF] glycerol-1-phosphate dehydrogenase [NAD(P)+] activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.652467	0.832564	0.908126	0.445101	0.145627	0.433826
+GO:0050511: [MF] undecaprenyldiphospho-muramoylpentapeptide beta-N-acetylglucosaminyltransferase activity	1.59748	8.55392	5.82296	31.9707	23.7419	22.9967
+GO:0050511: [MF] undecaprenyldiphospho-muramoylpentapeptide beta-N-acetylglucosaminyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.54379	8.55392	5.82296	31.9707	23.7419	22.9967
+GO:0050511: [MF] undecaprenyldiphospho-muramoylpentapeptide beta-N-acetylglucosaminyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0536877	0	0	0	0	0
+GO:0050515: [MF] 4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity	0.848941	11.2061	6.29861	25.2185	22.7673	27.9916
+GO:0050515: [MF] 4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity|g__Clostridium.s__Clostridium_thermocellum	0.848941	11.2061	6.29861	25.2185	22.7673	27.9916
+GO:0050518: [MF] 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase activity	22.2779	26.5389	23.1429	32.7589	38.2172	30.9616
+GO:0050518: [MF] 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.344656	4.62774	3.83869	11.3675	8.69026	9.27282
+GO:0050518: [MF] 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.76	21.9113	19.3042	21.3913	29.527	21.6888
+GO:0050518: [MF] 2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.173288	0	0	0	0	0
+GO:0050524: [MF] coenzyme-B sulfoethylthiotransferase activity	13.3118	5.09979	12.4445	8.37245	5.00675	6.70278
+GO:0050524: [MF] coenzyme-B sulfoethylthiotransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	13.3118	5.09979	12.4445	8.37245	5.00675	6.70278
+GO:0050532: [MF] 2-phosphosulfolactate phosphatase activity	53.6896	49.2805	49.4914	34.7994	35.9121	36.6541
+GO:0050532: [MF] 2-phosphosulfolactate phosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	53.5065	48.6657	49.1516	34.1438	35.34	36.2278
+GO:0050532: [MF] 2-phosphosulfolactate phosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.183082	0.614785	0.339786	0.655626	0.572045	0.426324
+GO:0050545: [MF] sulfopyruvate decarboxylase activity	0.497091	0.362934	0.552778	0.060509	0.212775	0
+GO:0050545: [MF] sulfopyruvate decarboxylase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.497091	0.362934	0.552778	0.060509	0.212775	0
+GO:0050560: [MF] aspartate-tRNA(Asn) ligase activity	3.12655	10.6102	7.49032	31.8326	26.4339	21.7855
+GO:0050560: [MF] aspartate-tRNA(Asn) ligase activity|g__Clostridium.s__Clostridium_thermocellum	3.08479	10.53	7.33533	31.6193	26.3966	21.6467
+GO:0050560: [MF] aspartate-tRNA(Asn) ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0417544	0.0801853	0.154985	0.213386	0.0372856	0.138863
+GO:0050567: [MF] glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity	36.721	42.8338	38.5456	66.7557	76.0985	73.456
+GO:0050567: [MF] glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity|g__Clostridium.s__Clostridium_thermocellum	3.12545	15.906	14.9013	46.4618	52.7237	54.1587
+GO:0050567: [MF] glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.7495	26.3112	22.9783	19.8318	22.7685	18.6935
+GO:0050567: [MF] glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.846073	0.616558	0.66604	0.462137	0.606228	0.603799
+GO:0050568: [MF] protein-glutamine glutaminase activity	2.31897	4.866	4.02655	38.4534	35.0295	26.73
+GO:0050568: [MF] protein-glutamine glutaminase activity|g__Clostridium.s__Clostridium_thermocellum	2.16916	4.866	4.02655	38.4534	35.0295	26.73
+GO:0050568: [MF] protein-glutamine glutaminase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.14981	0	0	0	0	0
+GO:0050569: [MF] glycolaldehyde dehydrogenase activity	0.0389594	0	0	0	0	0
+GO:0050569: [MF] glycolaldehyde dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.0389594	0	0	0	0	0
+GO:0050570: [MF] 4-hydroxythreonine-4-phosphate dehydrogenase activity	4.88074	11.5105	10.8563	11.8434	10.6946	14.7049
+GO:0050570: [MF] 4-hydroxythreonine-4-phosphate dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	0.806992	4.3834	5.1142	9.48325	7.42947	10.5914
+GO:0050570: [MF] 4-hydroxythreonine-4-phosphate dehydrogenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.07375	7.12706	5.74208	2.3601	3.26514	4.11351
+GO:0050572: [MF] L-idonate 5-dehydrogenase activity	0.110219	0	0	0	0	0.0733446
+GO:0050572: [MF] L-idonate 5-dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.110219	0	0	0	0	0.0733446
+GO:0050583: [MF] hydrogen dehydrogenase (NADP+) activity	0.799117	5.95667	2.0352	64.6092	63.8474	70.9831
+GO:0050583: [MF] hydrogen dehydrogenase (NADP+) activity|g__Clostridium.s__Clostridium_thermocellum	0.799117	5.95667	2.0352	64.6092	63.8474	70.9831
+GO:0050605: [MF] superoxide reductase activity	101.378	70.6654	81.4959	72.8676	86.3606	90.5291
+GO:0050605: [MF] superoxide reductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	100.946	67.9705	80.2931	72.2024	85.5126	89.8118
+GO:0050605: [MF] superoxide reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.432564	2.69489	1.20285	0.665201	0.848041	0.717374
+GO:0050660: [MF] flavin adenine dinucleotide binding	187.618	441.77	401.997	966.175	863.082	775.812
+GO:0050660: [MF] flavin adenine dinucleotide binding|g__Clostridium.s__Clostridium_thermocellum	39.1212	295.226	284.114	849.572	733.461	667.203
+GO:0050660: [MF] flavin adenine dinucleotide binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	131.205	138.242	96.7743	100.84	119.205	97.7285
+GO:0050660: [MF] flavin adenine dinucleotide binding|g__Escherichia.s__Escherichia_coli	1.62823	0	1.70994	0	0	0.642768
+GO:0050660: [MF] flavin adenine dinucleotide binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	15.6636	8.30235	19.3987	15.7627	10.4154	10.2382
+GO:0050661: [MF] NADP binding	117.284	665.368	477.942	1327.78	1463.19	1198.88
+GO:0050661: [MF] NADP binding|g__Clostridium.s__Clostridium_thermocellum	41.3139	386.441	261.994	1141.59	1195.07	1007.27
+GO:0050661: [MF] NADP binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	72.6739	273.121	209.922	182.837	266.242	187.484
+GO:0050661: [MF] NADP binding|g__Escherichia.s__Escherichia_coli	0.938355	0	0.495403	0	0	0.0260975
+GO:0050661: [MF] NADP binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.35737	5.8061	5.53067	3.35175	1.88064	4.10507
+GO:0050662: [MF] coenzyme binding	95.1695	158.552	141.619	158.54	171.785	172.648
+GO:0050662: [MF] coenzyme binding|g__Clostridium.s__Clostridium_thermocellum	2.82547	21.2995	13.4876	47.656	36.4372	51.4067
+GO:0050662: [MF] coenzyme binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	92.0826	136.758	127.533	110.318	134.967	120.803
+GO:0050662: [MF] coenzyme binding|g__Escherichia.s__Escherichia_coli	0.143613	0	0.274968	0	0	0.0489934
+GO:0050662: [MF] coenzyme binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.117777	0.494647	0.323593	0.566069	0.380669	0.389457
+GO:0050782: [MF] galactose uniporter activity	0.172097	0	0.109022	0	0	0
+GO:0050782: [MF] galactose uniporter activity|g__Escherichia.s__Escherichia_coli	0.172097	0	0.109022	0	0	0
+GO:0050797: [MF] thymidylate synthase (FAD) activity	32.4181	24.5272	22.7811	26.6489	29.5605	19.1002
+GO:0050797: [MF] thymidylate synthase (FAD) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	32.4181	24.5272	22.7811	26.6489	29.5605	19.1002
+GO:0050821: [BP] protein stabilization	1.17768	0	0	0	0	0
+GO:0050821: [BP] protein stabilization|g__Escherichia.s__Escherichia_coli	1.17768	0	0	0	0	0
+GO:0050897: [MF] cobalt ion binding	2.20251	1.41622	6.73718	7.25927	8.9755	7.89793
+GO:0050897: [MF] cobalt ion binding|g__Escherichia.s__Escherichia_coli	0.141523	0	0.180065	0	0	0.288431
+GO:0050897: [MF] cobalt ion binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.06098	1.41622	6.55711	7.25927	8.9755	7.6095
+GO:0050911: [BP] detection of chemical stimulus involved in sensory perception of smell	0.361523	0	0.379841	0	0	0.0899345
+GO:0050911: [BP] detection of chemical stimulus involved in sensory perception of smell|g__Escherichia.s__Escherichia_coli	0.361523	0	0.379841	0	0	0.0899345
+GO:0050919: [BP] negative chemotaxis	0.0341229	0	0	0	0	0
+GO:0050919: [BP] negative chemotaxis|g__Escherichia.s__Escherichia_coli	0.0341229	0	0	0	0	0
+GO:0050983: [BP] deoxyhypusine biosynthetic process from spermidine	0.125603	0	0	0.28919	0	0.0417172
+GO:0050983: [BP] deoxyhypusine biosynthetic process from spermidine|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.125603	0	0	0.28919	0	0.0417172
+GO:0050992: [BP] dimethylallyl diphosphate biosynthetic process	12.4779	47.9035	30.2358	188.3	156.184	120.281
+GO:0050992: [BP] dimethylallyl diphosphate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	10.7237	46.6363	29.7841	186.272	153.421	117.459
+GO:0050992: [BP] dimethylallyl diphosphate biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.63248	1.26724	0.451695	2.02813	2.76315	2.82221
+GO:0050992: [BP] dimethylallyl diphosphate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.121836	0	0	0	0	0
+GO:0051060: [MF] pullulanase activity	71.8698	13.8513	20.8748	10.7321	12.5328	16.2434
+GO:0051060: [MF] pullulanase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	71.8698	13.8513	20.8748	10.7321	12.5328	16.2434
+GO:0051073: [MF] adenosylcobinamide-GDP ribazoletransferase activity	0.529245	6.25324	4.22822	14.6174	14.1724	18.2461
+GO:0051073: [MF] adenosylcobinamide-GDP ribazoletransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.529245	6.25324	3.85109	14.4517	14.1	18.0306
+GO:0051073: [MF] adenosylcobinamide-GDP ribazoletransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.151602	0	0	0
+GO:0051073: [MF] adenosylcobinamide-GDP ribazoletransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0.225532	0.165809	0.0723358	0.215506
+GO:0051090: [BP] regulation of sequence-specific DNA binding transcription factor activity	0.201602	0	0.187552	0	0	0
+GO:0051090: [BP] regulation of sequence-specific DNA binding transcription factor activity|g__Escherichia.s__Escherichia_coli	0.201602	0	0.187552	0	0	0
+GO:0051103: [BP] DNA ligation involved in DNA repair	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0051103: [BP] DNA ligation involved in DNA repair|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0051108: [MF] carnitine-CoA ligase activity	0.069704	0	0.0642766	0	0	0
+GO:0051108: [MF] carnitine-CoA ligase activity|g__Escherichia.s__Escherichia_coli	0.069704	0	0.0642766	0	0	0
+GO:0051109: [MF] crotonobetaine-CoA ligase activity	0.069704	0	0.0642766	0	0	0
+GO:0051109: [MF] crotonobetaine-CoA ligase activity|g__Escherichia.s__Escherichia_coli	0.069704	0	0.0642766	0	0	0
+GO:0051116: [MF] cobaltochelatase activity	0.0293107	0.0187628	0.145017	0.0799574	0.0784994	0.12997
+GO:0051116: [MF] cobaltochelatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0293107	0.0187628	0.145017	0.0799574	0.0784994	0.12997
+GO:0051156: [BP] glucose 6-phosphate metabolic process	0	0	0.404198	0	0	0
+GO:0051156: [BP] glucose 6-phosphate metabolic process|g__Escherichia.s__Escherichia_coli	0	0	0.404198	0	0	0
+GO:0051186: [BP] cofactor metabolic process	3.1352	1.82909	1.6582	6.13782	3.74195	5.20659
+GO:0051186: [BP] cofactor metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	3.1352	1.82909	1.6582	6.13782	3.74195	5.20659
+GO:0051188: [BP] cofactor biosynthetic process	3.07629	24.4403	23.7832	39.1166	39.9074	62.4739
+GO:0051188: [BP] cofactor biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	1.61352	22.1508	20.8666	38.4793	38.9153	60.6715
+GO:0051188: [BP] cofactor biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.46276	2.28943	2.91662	0.637297	0.99204	1.80244
+GO:0051205: [BP] protein insertion into membrane	16.4215	32.7858	21.0151	98.5691	94.7931	78.7478
+GO:0051205: [BP] protein insertion into membrane|g__Clostridium.s__Clostridium_thermocellum	4.2142	27.8186	18.5678	87.6912	80.7945	71.4186
+GO:0051205: [BP] protein insertion into membrane|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.9072	4.96719	2.44729	10.8778	13.9986	7.32919
+GO:0051205: [BP] protein insertion into membrane|g__Escherichia.s__Escherichia_coli	0.300082	0	0	0	0	0
+GO:0051213: [MF] dioxygenase activity	90.2897	9.60543	10.7543	60.6024	63.7715	35.3734
+GO:0051213: [MF] dioxygenase activity|g__Clostridium.s__Clostridium_thermocellum	0.372484	1.76534	1.72627	21.9498	17.421	12.2609
+GO:0051213: [MF] dioxygenase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	89.9172	7.84009	9.02813	38.6527	46.3505	23.1125
+GO:0051252: [BP] regulation of RNA metabolic process	0.0135617	0	0	0	0	0.0352171
+GO:0051252: [BP] regulation of RNA metabolic process|g__Escherichia.s__Escherichia_coli	0.0135617	0	0	0	0	0.0352171
+GO:0051258: [BP] protein polymerization	63.0478	137.272	112.739	250.599	231.39	273.853
+GO:0051258: [BP] protein polymerization|g__Clostridium.s__Clostridium_thermocellum	12.0632	81.9794	60.0784	204.496	182.774	233.796
+GO:0051258: [BP] protein polymerization|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	43.0316	45.2198	45.1907	42.857	46.1551	35.4182
+GO:0051258: [BP] protein polymerization|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	7.95292	10.0726	7.46988	3.24533	2.46094	4.63953
+GO:0051259: [BP] protein oligomerization	60.4039	61.2259	62.072	47.6919	58.7627	68.564
+GO:0051259: [BP] protein oligomerization|g__Clostridium.s__Clostridium_thermocellum	1.82297	13.1449	13.7533	31.2698	33.892	34.5316
+GO:0051259: [BP] protein oligomerization|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	58.4295	48.081	48.3186	16.422	24.8708	34.0323
+GO:0051259: [BP] protein oligomerization|g__Escherichia.s__Escherichia_coli	0.151439	0	0	0	0	0
+GO:0051260: [BP] protein homooligomerization	0.0977023	0	0.0675693	0	0	0
+GO:0051260: [BP] protein homooligomerization|g__Escherichia.s__Escherichia_coli	0.0977023	0	0.0675693	0	0	0
+GO:0051262: [BP] protein tetramerization	0	0	0.284125	0	0	0
+GO:0051262: [BP] protein tetramerization|g__Escherichia.s__Escherichia_coli	0	0	0.284125	0	0	0
+GO:0051271: [BP] negative regulation of cellular component movement	0.103414	0	0	0	0	0
+GO:0051271: [BP] negative regulation of cellular component movement|g__Escherichia.s__Escherichia_coli	0.103414	0	0	0	0	0
+GO:0051276: [BP] chromosome organization	0.0836546	0	0	0	0	0
+GO:0051276: [BP] chromosome organization|g__Escherichia.s__Escherichia_coli	0.0836546	0	0	0	0	0
+GO:0051287: [MF] NAD binding	311.944	1050.95	843.089	2398.32	2363.33	1952.44
+GO:0051287: [MF] NAD binding|g__Clostridium.s__Clostridium_thermocellum	70.0845	685.082	524.908	2108.29	1994.74	1701.91
+GO:0051287: [MF] NAD binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	237.47	362.961	314.02	286.644	366.902	246.262
+GO:0051287: [MF] NAD binding|g__Escherichia.s__Escherichia_coli	2.65395	0	0.577046	0	0	0.0636106
+GO:0051287: [MF] NAD binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.7356	2.90945	3.58429	3.38559	1.68597	4.20761
+GO:0051289: [BP] protein homotetramerization	1.74559	9.73149	5.92973	27.9807	25.9851	38.7365
+GO:0051289: [BP] protein homotetramerization|g__Clostridium.s__Clostridium_thermocellum	1.23664	9.73149	5.3981	27.9807	25.9851	38.4535
+GO:0051289: [BP] protein homotetramerization|g__Escherichia.s__Escherichia_coli	0.508951	0	0.531623	0	0	0.282998
+GO:0051301: [BP] cell division	472.613	1025.4	862.851	1869.93	1786.99	1893.24
+GO:0051301: [BP] cell division|g__Clostridium.s__Clostridium_thermocellum	93.0019	642.626	533.72	1554.86	1439.93	1619.37
+GO:0051301: [BP] cell division|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	377.684	382.711	328.354	314.927	346.973	273.02
+GO:0051301: [BP] cell division|g__Escherichia.s__Escherichia_coli	1.81651	0	0.65968	0	0	0.727916
+GO:0051301: [BP] cell division|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0051302: [BP] regulation of cell division	2.1843	6.72123	11.0618	36.7201	30.3302	29.292
+GO:0051302: [BP] regulation of cell division|g__Clostridium.s__Clostridium_thermocellum	2.1843	6.72123	11.0618	36.7201	30.3302	29.292
+GO:0051304: [BP] chromosome separation	0.598098	2.71552	4.03521	9.00478	12.1324	10.1976
+GO:0051304: [BP] chromosome separation|g__Clostridium.s__Clostridium_thermocellum	0.598098	2.71552	4.03521	9.00478	12.1324	10.1976
+GO:0051345: [BP] positive regulation of hydrolase activity	0.10949	0	0	0	0	0
+GO:0051345: [BP] positive regulation of hydrolase activity|g__Escherichia.s__Escherichia_coli	0.10949	0	0	0	0	0
+GO:0051391: [BP] tRNA acetylation	0	0	0.096708	0	0	0
+GO:0051391: [BP] tRNA acetylation|g__Escherichia.s__Escherichia_coli	0	0	0.096708	0	0	0
+GO:0051392: [MF] tRNA N-acetyltransferase activity	0	0	0.096708	0	0	0
+GO:0051392: [MF] tRNA N-acetyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.096708	0	0	0
+GO:0051409: [BP] response to nitrosative stress	0.0466881	0	0	0	0	0
+GO:0051409: [BP] response to nitrosative stress|g__Escherichia.s__Escherichia_coli	0.0466881	0	0	0	0	0
+GO:0051454: [BP] intracellular pH elevation	0.0229187	0	0	0	0	0
+GO:0051454: [BP] intracellular pH elevation|g__Escherichia.s__Escherichia_coli	0.0229187	0	0	0	0	0
+GO:0051536: [MF] iron-sulfur cluster binding	892.178	899.437	823.465	1076.2	1067.48	967.25
+GO:0051536: [MF] iron-sulfur cluster binding|g__Clostridium.s__Clostridium_thermocellum	29.0619	366.197	283.429	750.452	678.288	667.201
+GO:0051536: [MF] iron-sulfur cluster binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	846.461	519.291	520.828	308.785	377.676	285.903
+GO:0051536: [MF] iron-sulfur cluster binding|g__Escherichia.s__Escherichia_coli	0.249554	0	0.110375	0	0	0.0593419
+GO:0051536: [MF] iron-sulfur cluster binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	16.4062	13.9493	19.097	16.9624	11.5156	14.0864
+GO:0051537: [MF] 2 iron, 2 sulfur cluster binding	30.1169	212.404	153.129	384.985	394.601	468.847
+GO:0051537: [MF] 2 iron, 2 sulfur cluster binding|g__Clostridium.s__Clostridium_thermocellum	8.40638	157.22	119.713	352.273	335.739	391.002
+GO:0051537: [MF] 2 iron, 2 sulfur cluster binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	19.8887	51.5596	28.3769	26.604	56.1896	72.3144
+GO:0051537: [MF] 2 iron, 2 sulfur cluster binding|g__Escherichia.s__Escherichia_coli	0.790076	0	1.50975	0	0	0.0369957
+GO:0051537: [MF] 2 iron, 2 sulfur cluster binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.03183	3.62458	3.52966	6.10746	2.67274	5.49318
+GO:0051538: [MF] 3 iron, 4 sulfur cluster binding	10.9288	46.6363	29.8306	186.272	153.421	117.459
+GO:0051538: [MF] 3 iron, 4 sulfur cluster binding|g__Clostridium.s__Clostridium_thermocellum	10.7237	46.6363	29.7841	186.272	153.421	117.459
+GO:0051538: [MF] 3 iron, 4 sulfur cluster binding|g__Escherichia.s__Escherichia_coli	0.205151	0	0.0465498	0	0	0
+GO:0051539: [MF] 4 iron, 4 sulfur cluster binding	905.432	2229.63	1970.29	5080.38	4459.53	5105.05
+GO:0051539: [MF] 4 iron, 4 sulfur cluster binding|g__Clostridium.s__Clostridium_thermocellum	288.147	1830.98	1478.41	4777.71	4082.78	4764.19
+GO:0051539: [MF] 4 iron, 4 sulfur cluster binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	603.401	378.442	469.489	275.824	362.126	318.589
+GO:0051539: [MF] 4 iron, 4 sulfur cluster binding|g__Escherichia.s__Escherichia_coli	3.06032	0	1.89352	0	0	0.607421
+GO:0051539: [MF] 4 iron, 4 sulfur cluster binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	10.8238	20.2126	20.4974	26.843	14.6219	21.6572
+GO:0051575: [MF] 5'-deoxyribose-5-phosphate lyase activity	0	0	0.0705914	0	0	0
+GO:0051575: [MF] 5'-deoxyribose-5-phosphate lyase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0705914	0	0	0
+GO:0051595: [BP] response to methylglyoxal	0.298308	0	0.266082	0	0	0.0856334
+GO:0051595: [BP] response to methylglyoxal|g__Escherichia.s__Escherichia_coli	0.298308	0	0.266082	0	0	0.0856334
+GO:0051603: [BP] proteolysis involved in cellular protein catabolic process	0	0	0	0	0	0.0846632
+GO:0051603: [BP] proteolysis involved in cellular protein catabolic process|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0846632
+GO:0051604: [BP] protein maturation	0.111629	0	0.117006	0	0	0.0375455
+GO:0051604: [BP] protein maturation|g__Escherichia.s__Escherichia_coli	0.111629	0	0.117006	0	0	0.0375455
+GO:0051606: [BP] detection of stimulus	4.93358	18.9337	16.2534	63.1571	73.0955	145.364
+GO:0051606: [BP] detection of stimulus|g__Clostridium.s__Clostridium_thermocellum	4.93358	18.9337	16.2534	63.1571	73.0955	145.364
+GO:0051607: [BP] defense response to virus	15.1423	7.19334	4.50211	19.7084	17.2153	23.5329
+GO:0051607: [BP] defense response to virus|g__Clostridium.s__Clostridium_thermocellum	8.10355	3.93972	1.40096	17.8139	13.038	20.0466
+GO:0051607: [BP] defense response to virus|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5.5248	2.45653	1.18021	1.52713	3.02595	2.5506
+GO:0051607: [BP] defense response to virus|g__Escherichia.s__Escherichia_coli	0.699349	0	0.795856	0	0	0.0697873
+GO:0051607: [BP] defense response to virus|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.814623	0.797092	1.12509	0.367456	1.15134	0.865938
+GO:0051692: [BP] cellular oligosaccharide catabolic process	0.104191	0	0.0487149	0	0	0
+GO:0051692: [BP] cellular oligosaccharide catabolic process|g__Escherichia.s__Escherichia_coli	0.104191	0	0.0487149	0	0	0
+GO:0051726: [BP] regulation of cell cycle	2.1843	6.72123	11.0618	36.7201	30.3302	29.292
+GO:0051726: [BP] regulation of cell cycle|g__Clostridium.s__Clostridium_thermocellum	2.1843	6.72123	11.0618	36.7201	30.3302	29.292
+GO:0051745: [MF] 4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity	12.3561	47.9035	30.2358	188.3	156.184	120.281
+GO:0051745: [MF] 4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity|g__Clostridium.s__Clostridium_thermocellum	10.7237	46.6363	29.7841	186.272	153.421	117.459
+GO:0051745: [MF] 4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.63248	1.26724	0.451695	2.02813	2.76315	2.82221
+GO:0051775: [BP] response to redox state	20.431	57.1345	53.6397	66.8173	65.1826	75.3241
+GO:0051775: [BP] response to redox state|g__Clostridium.s__Clostridium_thermocellum	2.40763	14.705	10.6371	34.7976	28.0143	40.7787
+GO:0051775: [BP] response to redox state|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.0234	42.4295	43.0026	32.0197	37.1684	34.5454
+GO:0051903: [MF] S-(hydroxymethyl)glutathione dehydrogenase activity	0	0	0.0939565	0	0	0.0336971
+GO:0051903: [MF] S-(hydroxymethyl)glutathione dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0939565	0	0	0.0336971
+GO:0051908: [MF] double-stranded DNA 5'-3' exodeoxyribonuclease activity	0.0198321	0	0	0	0	0
+GO:0051908: [MF] double-stranded DNA 5'-3' exodeoxyribonuclease activity|g__Escherichia.s__Escherichia_coli	0.0198321	0	0	0	0	0
+GO:0051912: [MF] CoB--CoM heterodisulfide reductase activity	4.45484	3.66033	3.96183	9.47997	5.81855	8.38619
+GO:0051912: [MF] CoB--CoM heterodisulfide reductase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	4.45484	3.66033	3.96183	9.47997	5.81855	8.38619
+GO:0051920: [MF] peroxiredoxin activity	262.76	738.951	605.99	838.002	807.853	1086.05
+GO:0051920: [MF] peroxiredoxin activity|g__Clostridium.s__Clostridium_thermocellum	16.6655	197.62	147.526	503.683	345.685	656.368
+GO:0051920: [MF] peroxiredoxin activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	245.438	538.765	456.814	334.051	461.701	429.056
+GO:0051920: [MF] peroxiredoxin activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.657255	2.56686	1.64981	0.267901	0.466917	0.631417
+GO:0051978: [MF] lysophospholipid transporter activity	0.0231618	0	0.0432119	0	0	0.0610558
+GO:0051978: [MF] lysophospholipid transporter activity|g__Escherichia.s__Escherichia_coli	0.0231618	0	0.0432119	0	0	0.0610558
+GO:0051989: [MF] coproporphyrinogen dehydrogenase activity	0.562736	5.12201	2.98933	9.71208	10.8358	8.56095
+GO:0051989: [MF] coproporphyrinogen dehydrogenase activity|g__Clostridium.s__Clostridium_thermocellum	0.562736	5.12201	2.95248	9.71208	10.8358	8.56095
+GO:0051989: [MF] coproporphyrinogen dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0368519	0	0	0
+GO:0051991: [MF] UDP-N-acetyl-D-glucosamine:N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine-diphosphoundecaprenol 4-beta-N-acetylglucosaminlytransferase activity	1.59748	8.55392	5.82296	31.9707	23.7419	22.9967
+GO:0051991: [MF] UDP-N-acetyl-D-glucosamine:N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine-diphosphoundecaprenol 4-beta-N-acetylglucosaminlytransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.54379	8.55392	5.82296	31.9707	23.7419	22.9967
+GO:0051991: [MF] UDP-N-acetyl-D-glucosamine:N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine-diphosphoundecaprenol 4-beta-N-acetylglucosaminlytransferase activity|g__Escherichia.s__Escherichia_coli	0.0536877	0	0	0	0	0
+GO:0051992: [MF] UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine:undecaprenyl-phosphate transferase activity	105.584	70.1846	66.754	114.141	93.432	90.4831
+GO:0051992: [MF] UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine:undecaprenyl-phosphate transferase activity|g__Clostridium.s__Clostridium_thermocellum	3.48304	21.2983	23.8072	68.5512	55.4425	61.7905
+GO:0051992: [MF] UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine:undecaprenyl-phosphate transferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	102.047	48.8863	42.9468	45.5351	37.9895	28.5499
+GO:0051992: [MF] UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine:undecaprenyl-phosphate transferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0536634	0	0	0.0549132	0	0.142776
+GO:0052131: [BP] positive aerotaxis	0	0	0	0	0	0.0235751
+GO:0052131: [BP] positive aerotaxis|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0235751
+GO:0052381: [MF] tRNA dimethylallyltransferase activity	5.60167	8.3101	7.91824	29.0909	31.7636	41.2526
+GO:0052381: [MF] tRNA dimethylallyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.42358	5.89156	6.37795	27.6865	30.4344	39.958
+GO:0052381: [MF] tRNA dimethylallyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	3.11746	2.41849	1.54029	1.40437	1.32917	1.29456
+GO:0052381: [MF] tRNA dimethylallyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0606386	0	0	0	0	0
+GO:0052547: [BP] regulation of peptidase activity	1.07971	2.46217	0.685887	10.4612	7.32033	7.00399
+GO:0052547: [BP] regulation of peptidase activity|g__Clostridium.s__Clostridium_thermocellum	1.07971	2.46217	0.685887	10.4612	7.32033	7.00399
+GO:0052591: [MF] sn-glycerol-3-phosphate:ubiquinone-8 oxidoreductase activity	0.0716727	0	0.0664868	0	0	0
+GO:0052591: [MF] sn-glycerol-3-phosphate:ubiquinone-8 oxidoreductase activity|g__Escherichia.s__Escherichia_coli	0.0716727	0	0.0664868	0	0	0
+GO:0052618: [MF] coenzyme F420-0:L-glutamate ligase activity	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0052618: [MF] coenzyme F420-0:L-glutamate ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0052619: [MF] coenzyme F420-1:gamma-L-glutamate ligase activity	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0052619: [MF] coenzyme F420-1:gamma-L-glutamate ligase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0052621: [MF] diguanylate cyclase activity	0.131169	0	0.0671634	0	0	0.122855
+GO:0052621: [MF] diguanylate cyclase activity|g__Escherichia.s__Escherichia_coli	0.131169	0	0.0671634	0	0	0.122855
+GO:0052645: [BP] F420-0 metabolic process	0.420703	0.818608	0.96072	0.724417	0.181523	0.440326
+GO:0052645: [BP] F420-0 metabolic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.420703	0.818608	0.96072	0.724417	0.181523	0.440326
+GO:0052653: [BP] 3',5'-cyclic diguanylic acid metabolic process	0.0269046	0	0.0499327	0	0	0
+GO:0052653: [BP] 3',5'-cyclic diguanylic acid metabolic process|g__Escherichia.s__Escherichia_coli	0.0269046	0	0.0499327	0	0	0
+GO:0052654: [MF] L-leucine transaminase activity	2.90122	28.355	18.3265	74.8858	70.705	72.7064
+GO:0052654: [MF] L-leucine transaminase activity|g__Clostridium.s__Clostridium_thermocellum	2.90122	27.9123	17.6762	74.296	70.4999	72.3582
+GO:0052654: [MF] L-leucine transaminase activity|g__Escherichia.s__Escherichia_coli	0	0	0.115427	0	0	0.0414585
+GO:0052654: [MF] L-leucine transaminase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.442746	0.534826	0.58977	0.205071	0.306767
+GO:0052655: [MF] L-valine transaminase activity	2.90122	28.355	18.3265	74.8858	70.705	72.7064
+GO:0052655: [MF] L-valine transaminase activity|g__Clostridium.s__Clostridium_thermocellum	2.90122	27.9123	17.6762	74.296	70.4999	72.3582
+GO:0052655: [MF] L-valine transaminase activity|g__Escherichia.s__Escherichia_coli	0	0	0.115427	0	0	0.0414585
+GO:0052655: [MF] L-valine transaminase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.442746	0.534826	0.58977	0.205071	0.306767
+GO:0052656: [MF] L-isoleucine transaminase activity	2.90122	28.355	18.3265	74.8858	70.705	72.7064
+GO:0052656: [MF] L-isoleucine transaminase activity|g__Clostridium.s__Clostridium_thermocellum	2.90122	27.9123	17.6762	74.296	70.4999	72.3582
+GO:0052656: [MF] L-isoleucine transaminase activity|g__Escherichia.s__Escherichia_coli	0	0	0.115427	0	0	0.0414585
+GO:0052656: [MF] L-isoleucine transaminase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.442746	0.534826	0.58977	0.205071	0.306767
+GO:0052657: [MF] guanine phosphoribosyltransferase activity	8.88602	9.75838	11.612	12.1415	15.2169	13.5116
+GO:0052657: [MF] guanine phosphoribosyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8.76042	9.12357	11.0711	12.0851	15.1185	13.2017
+GO:0052657: [MF] guanine phosphoribosyltransferase activity|g__Escherichia.s__Escherichia_coli	0.125603	0	0.23311	0	0	0.309904
+GO:0052657: [MF] guanine phosphoribosyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.634761	0.307761	0.0564054	0.0984227	0
+GO:0052665: [MF] tRNA (uracil-2'-O-)-methyltransferase activity	0.0862065	0	0	0	0	0
+GO:0052665: [MF] tRNA (uracil-2'-O-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0862065	0	0	0	0	0
+GO:0052666: [MF] tRNA (cytosine-2'-O-)-methyltransferase activity	0.0862065	0	0	0	0	0
+GO:0052666: [MF] tRNA (cytosine-2'-O-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0862065	0	0	0	0	0
+GO:0052689: [MF] carboxylic ester hydrolase activity	0.603227	0.619079	0.5217	0.988637	0.827684	0.938313
+GO:0052689: [MF] carboxylic ester hydrolase activity|g__Clostridium.s__Clostridium_thermocellum	0.0806165	0.619079	0.298965	0.988637	0.827684	0.858533
+GO:0052689: [MF] carboxylic ester hydrolase activity|g__Escherichia.s__Escherichia_coli	0.52261	0	0.222735	0	0	0.0798124
+GO:0052692: [MF] raffinose alpha-galactosidase activity	0.0402961	0	0	0	0	0
+GO:0052692: [MF] raffinose alpha-galactosidase activity|g__Escherichia.s__Escherichia_coli	0.0402961	0	0	0	0	0
+GO:0052693: [MF] epoxyqueuosine reductase activity	0	0	0.182185	0	0	0
+GO:0052693: [MF] epoxyqueuosine reductase activity|g__Escherichia.s__Escherichia_coli	0	0	0.182185	0	0	0
+GO:0052717: [MF] tRNA-specific adenosine-34 deaminase activity	7.13689	36.7174	27.1322	96.6719	75.5548	111.286
+GO:0052717: [MF] tRNA-specific adenosine-34 deaminase activity|g__Clostridium.s__Clostridium_thermocellum	4.98695	33.4582	24.2697	95.8039	74.3148	108.515
+GO:0052717: [MF] tRNA-specific adenosine-34 deaminase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.08128	3.25926	2.86254	0.867992	1.23995	2.77157
+GO:0052717: [MF] tRNA-specific adenosine-34 deaminase activity|g__Escherichia.s__Escherichia_coli	0.068659	0	0	0	0	0
+GO:0052733: [MF] quinate 3-dehydrogenase (NADP+) activity	0.0327619	0	0	0	0	0
+GO:0052733: [MF] quinate 3-dehydrogenase (NADP+) activity|g__Escherichia.s__Escherichia_coli	0.0327619	0	0	0	0	0
+GO:0052734: [MF] shikimate 3-dehydrogenase (NAD+) activity	0.0327619	0	0	0	0	0
+GO:0052734: [MF] shikimate 3-dehydrogenase (NAD+) activity|g__Escherichia.s__Escherichia_coli	0.0327619	0	0	0	0	0
+GO:0052737: [MF] pyruvate dehydrogenase (quinone) activity	0.046445	0	0	0	0	0
+GO:0052737: [MF] pyruvate dehydrogenase (quinone) activity|g__Escherichia.s__Escherichia_coli	0.046445	0	0	0	0	0
+GO:0052832: [MF] inositol monophosphate 3-phosphatase activity	37.4463	42.6245	34.9784	32.6609	40.6059	39.8263
+GO:0052832: [MF] inositol monophosphate 3-phosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	37.3761	42.5571	34.4422	32.5891	40.4493	39.8263
+GO:0052832: [MF] inositol monophosphate 3-phosphatase activity|g__Escherichia.s__Escherichia_coli	0	0	0.27587	0	0	0
+GO:0052832: [MF] inositol monophosphate 3-phosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0701415	0.06735	0.260354	0.0717752	0.156587	0
+GO:0052833: [MF] inositol monophosphate 4-phosphatase activity	37.4463	42.6245	34.9784	32.6609	40.6059	39.8263
+GO:0052833: [MF] inositol monophosphate 4-phosphatase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	37.3761	42.5571	34.4422	32.5891	40.4493	39.8263
+GO:0052833: [MF] inositol monophosphate 4-phosphatase activity|g__Escherichia.s__Escherichia_coli	0	0	0.27587	0	0	0
+GO:0052833: [MF] inositol monophosphate 4-phosphatase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0701415	0.06735	0.260354	0.0717752	0.156587	0
+GO:0052855: [MF] ADP-dependent NAD(P)H-hydrate dehydratase activity	44.7635	56.9208	55.2697	87.6348	100.463	90.9308
+GO:0052855: [MF] ADP-dependent NAD(P)H-hydrate dehydratase activity|g__Clostridium.s__Clostridium_thermocellum	2.71029	21.5149	19.8022	58.2358	63.1596	61.3673
+GO:0052855: [MF] ADP-dependent NAD(P)H-hydrate dehydratase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	41.9319	35.3397	35.2756	29.3285	37.2414	29.4029
+GO:0052855: [MF] ADP-dependent NAD(P)H-hydrate dehydratase activity|g__Escherichia.s__Escherichia_coli	0.0351437	0	0	0	0	0
+GO:0052855: [MF] ADP-dependent NAD(P)H-hydrate dehydratase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0861822	0.0661832	0.191928	0.0705068	0.0615712	0.16053
+GO:0052856: [MF] NADHX epimerase activity	0.0351437	0	0	0	0	0
+GO:0052856: [MF] NADHX epimerase activity|g__Escherichia.s__Escherichia_coli	0.0351437	0	0	0	0	0
+GO:0052857: [MF] NADPHX epimerase activity	0.0351437	0	0	0	0	0
+GO:0052857: [MF] NADPHX epimerase activity|g__Escherichia.s__Escherichia_coli	0.0351437	0	0	0	0	0
+GO:0052865: [BP] 1-deoxy-D-xylulose 5-phosphate biosynthetic process	61.0178	61.5074	43.9427	82.8587	88.9837	75.0352
+GO:0052865: [BP] 1-deoxy-D-xylulose 5-phosphate biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.50876	20.0741	11.6512	48.092	46.587	44.3945
+GO:0052865: [BP] 1-deoxy-D-xylulose 5-phosphate biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	58.509	41.4332	32.2915	34.7667	42.3967	30.6407
+GO:0052875: [MF] riboflavin reductase (NADH) activity	0.086012	0	0.23753	0	0	0
+GO:0052875: [MF] riboflavin reductase (NADH) activity|g__Escherichia.s__Escherichia_coli	0.086012	0	0.23753	0	0	0
+GO:0052890: [MF] oxidoreductase activity, acting on the CH-CH group of donors, with a flavin as acceptor	0.065864	0	0.0611642	0	0	0
+GO:0052890: [MF] oxidoreductase activity, acting on the CH-CH group of donors, with a flavin as acceptor|g__Escherichia.s__Escherichia_coli	0.065864	0	0.0611642	0	0	0
+GO:0052906: [MF] tRNA (guanine(37)-N(1))-methyltransferase activity	41.6974	30.8526	21.5608	46.2959	51.3478	39.2177
+GO:0052906: [MF] tRNA (guanine(37)-N(1))-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.67734	8.31579	3.26426	21.8374	22.1119	21.0588
+GO:0052906: [MF] tRNA (guanine(37)-N(1))-methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.937	22.5368	17.8595	24.4585	29.2359	18.1588
+GO:0052906: [MF] tRNA (guanine(37)-N(1))-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0830956	0	0.43699	0	0	0
+GO:0052908: [MF] 16S rRNA (adenine(1518)-N(6)/adenine(1519)-N(6))-dimethyltransferase activity	11.5002	12.4841	9.41852	19.1622	19.5427	19.2502
+GO:0052908: [MF] 16S rRNA (adenine(1518)-N(6)/adenine(1519)-N(6))-dimethyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.480005	3.09628	2.75081	11.3416	10.0213	10.6301
+GO:0052908: [MF] 16S rRNA (adenine(1518)-N(6)/adenine(1519)-N(6))-dimethyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	11.0203	9.38784	6.66771	7.82058	9.52142	8.62006
+GO:0052911: [MF] 23S rRNA (guanine(745)-N(1))-methyltransferase activity	0.151123	0	0	0	0	0
+GO:0052911: [MF] 23S rRNA (guanine(745)-N(1))-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.151123	0	0	0	0	0
+GO:0052913: [MF] 16S rRNA (guanine(966)-N(2))-methyltransferase activity	0.826678	3.28045	1.94336	12.8537	9.63987	16.2693
+GO:0052913: [MF] 16S rRNA (guanine(966)-N(2))-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.826678	3.28045	1.94336	12.8537	9.63987	16.2693
+GO:0052914: [MF] 16S rRNA (guanine(1207)-N(2))-methyltransferase activity	0.0551216	0	0	0	0	0
+GO:0052914: [MF] 16S rRNA (guanine(1207)-N(2))-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0551216	0	0	0	0	0
+GO:0052915: [MF] 23S rRNA (guanine(2445)-N(2))-methyltransferase activity	0.0247901	0	0	0	0	0
+GO:0052915: [MF] 23S rRNA (guanine(2445)-N(2))-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0247901	0	0	0	0	0
+GO:0052916: [MF] 23S rRNA (guanine(1835)-N(2))-methyltransferase activity	0.04924	0	0.0913855	0	0	0
+GO:0052916: [MF] 23S rRNA (guanine(1835)-N(2))-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.04924	0	0.0913855	0	0	0
+GO:0052927: [MF] CTP:tRNA cytidylyltransferase activity	0.0223111	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0052927: [MF] CTP:tRNA cytidylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0223111	0	0	0	0	0
+GO:0052927: [MF] CTP:tRNA cytidylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0052928: [MF] CTP:3'-cytidine-tRNA cytidylyltransferase activity	0.0223111	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0052928: [MF] CTP:3'-cytidine-tRNA cytidylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0223111	0	0	0	0	0
+GO:0052928: [MF] CTP:3'-cytidine-tRNA cytidylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0052929: [MF] ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity	0.0223111	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0052929: [MF] ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0223111	0	0	0	0	0
+GO:0052929: [MF] ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0055052: [CC] ATP-binding cassette (ABC) transporter complex, substrate-binding subunit-containing	304.272	363.281	353.869	1322.03	1123.95	903.593
+GO:0055052: [CC] ATP-binding cassette (ABC) transporter complex, substrate-binding subunit-containing|g__Clostridium.s__Clostridium_thermocellum	115.851	297.81	235.253	1285.84	1089.39	861.139
+GO:0055052: [CC] ATP-binding cassette (ABC) transporter complex, substrate-binding subunit-containing|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	188.38	65.4715	118.616	36.1918	34.5571	42.4546
+GO:0055052: [CC] ATP-binding cassette (ABC) transporter complex, substrate-binding subunit-containing|g__Escherichia.s__Escherichia_coli	0.0416328	0	0	0	0	0
+GO:0055062: [BP] phosphate ion homeostasis	0.0724747	0	0	0	0	0
+GO:0055062: [BP] phosphate ion homeostasis|g__Escherichia.s__Escherichia_coli	0.0724747	0	0	0	0	0
+GO:0055070: [BP] copper ion homeostasis	0.0418759	0	0	0	0	0
+GO:0055070: [BP] copper ion homeostasis|g__Escherichia.s__Escherichia_coli	0.0418759	0	0	0	0	0
+GO:0055072: [BP] iron ion homeostasis	6.57349	5.46879	4.90103	3.65355	3.48028	2.25564
+GO:0055072: [BP] iron ion homeostasis|g__Clostridium.s__Clostridium_thermocellum	0	0	0	0.0248701	0.0976414	0.048476
+GO:0055072: [BP] iron ion homeostasis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	6.08462	5.46879	4.18758	3.62868	3.38264	2.09136
+GO:0055072: [BP] iron ion homeostasis|g__Escherichia.s__Escherichia_coli	0.488852	0	0.713447	0	0	0.115806
+GO:0055085: [BP] transmembrane transport	344.846	207.45	191.866	360.575	355.557	228.517
+GO:0055085: [BP] transmembrane transport|g__Clostridium.s__Clostridium_thermocellum	10.823	32.2052	22.3919	176.205	153.093	89.4269
+GO:0055085: [BP] transmembrane transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	327.662	173.635	163.847	180.746	200.23	135.771
+GO:0055085: [BP] transmembrane transport|g__Escherichia.s__Escherichia_coli	4.98622	0	3.56746	0	0	1.42055
+GO:0055085: [BP] transmembrane transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.37418	1.60982	2.05965	3.62462	2.23375	1.89839
+GO:0055088: [BP] lipid homeostasis	0.065864	0	0.0611642	0	0	0
+GO:0055088: [BP] lipid homeostasis|g__Escherichia.s__Escherichia_coli	0.065864	0	0.0611642	0	0	0
+GO:0055114: [BP] oxidation-reduction process	222.615	2062.79	1080.79	6391.63	4249.36	7976.38
+GO:0055114: [BP] oxidation-reduction process|g__Clostridium.s__Clostridium_thermocellum	194.097	2022.24	1047.27	6376.18	4231.67	7954.78
+GO:0055114: [BP] oxidation-reduction process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	25.4756	25.6189	24.403	11.5876	15.8201	15.0285
+GO:0055114: [BP] oxidation-reduction process|g__Escherichia.s__Escherichia_coli	1.07891	0	2.3085	0	0	0.127642
+GO:0055114: [BP] oxidation-reduction process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	1.96396	14.9282	6.80542	3.85818	1.87576	6.44889
+GO:0055129: [BP] L-proline biosynthetic process	13.6731	70.1336	52.7249	157.35	138.219	140.283
+GO:0055129: [BP] L-proline biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	13.6731	70.1336	52.7249	157.35	138.219	140.283
+GO:0060187: [CC] cell pole	0.0375984	0	0.0348672	0	0	0
+GO:0060187: [CC] cell pole|g__Escherichia.s__Escherichia_coli	0.0375984	0	0.0348672	0	0	0
+GO:0060698: [MF] endoribonuclease inhibitor activity	0.260807	0	0	0	0	0
+GO:0060698: [MF] endoribonuclease inhibitor activity|g__Escherichia.s__Escherichia_coli	0.260807	0	0	0	0	0
+GO:0061077: [BP] chaperone-mediated protein folding	1.00381	0	0.704742	0	0	0.13909
+GO:0061077: [BP] chaperone-mediated protein folding|g__Escherichia.s__Escherichia_coli	1.00381	0	0.704742	0	0	0.13909
+GO:0061489: [BP] guanine import into cell	0.0803249	0	0	0	0	0.0530681
+GO:0061489: [BP] guanine import into cell|g__Escherichia.s__Escherichia_coli	0.0803249	0	0	0	0	0.0530681
+GO:0061593: [MF] sulfoquinovose isomerase activity	0	0	0.0826348	0	0	0
+GO:0061593: [MF] sulfoquinovose isomerase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0826348	0	0	0
+GO:0061594: [MF] 6-deoxy-6-sulfofructose kinase activity	0.065062	0	0	0	0	0
+GO:0061594: [MF] 6-deoxy-6-sulfofructose kinase activity|g__Escherichia.s__Escherichia_coli	0.065062	0	0	0	0	0
+GO:0061595: [MF] 6-deoxy-6-sulfofructose-1-phosphate aldolase activity	0.066666	0	0	0	0	0
+GO:0061595: [MF] 6-deoxy-6-sulfofructose-1-phosphate aldolase activity|g__Escherichia.s__Escherichia_coli	0.066666	0	0	0	0	0
+GO:0061596: [MF] 3-sulfolactaldehyde reductase activity	0.0303315	0	0	0	0	0
+GO:0061596: [MF] 3-sulfolactaldehyde reductase activity|g__Escherichia.s__Escherichia_coli	0.0303315	0	0	0	0	0
+GO:0061597: [MF] cyclic pyranopterin monophosphate synthase activity	95.3723	26.5344	26.9125	16.5919	22.7354	16.0923
+GO:0061597: [MF] cyclic pyranopterin monophosphate synthase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	95.0111	26.1848	26.6875	16.0023	22.5185	15.4066
+GO:0061597: [MF] cyclic pyranopterin monophosphate synthase activity|g__Escherichia.s__Escherichia_coli	0.057868	0	0	0	0	0
+GO:0061597: [MF] cyclic pyranopterin monophosphate synthase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.303388	0.349632	0.225036	0.589571	0.216899	0.685681
+GO:0061599: [MF] molybdopterin molybdotransferase activity	0.0447681	0	0	0	0	0
+GO:0061599: [MF] molybdopterin molybdotransferase activity|g__Escherichia.s__Escherichia_coli	0.0447681	0	0	0	0	0
+GO:0061602: [MF] molybdenum cofactor cytidylyltransferase activity	0.169958	0	0.210286	0	0	0
+GO:0061602: [MF] molybdenum cofactor cytidylyltransferase activity|g__Escherichia.s__Escherichia_coli	0.169958	0	0.210286	0	0	0
+GO:0061603: [MF] molybdenum cofactor guanylyltransferase activity	0	0.372502	0	0.303291	0	0.14006
+GO:0061603: [MF] molybdenum cofactor guanylyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0743471
+GO:0061603: [MF] molybdenum cofactor guanylyltransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.372502	0	0.303291	0	0.065745
+GO:0061634: [MF] alpha-D-xyloside xylohydrolase	0.0112042	0	0.109744	0	0	0
+GO:0061634: [MF] alpha-D-xyloside xylohydrolase|g__Escherichia.s__Escherichia_coli	0.0112042	0	0.109744	0	0	0
+GO:0061710: [MF] L-threonylcarbamoyladenylate synthase	5.48248	21.177	15.3004	33.0736	37.0345	42.3158
+GO:0061710: [MF] L-threonylcarbamoyladenylate synthase|g__Clostridium.s__Clostridium_thermocellum	2.60104	14.9827	12.0892	30.5973	35.1039	40.2446
+GO:0061710: [MF] L-threonylcarbamoyladenylate synthase|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	2.76653	6.19433	3.21126	2.47634	1.9306	2.07118
+GO:0061710: [MF] L-threonylcarbamoyladenylate synthase|g__Escherichia.s__Escherichia_coli	0.11491	0	0	0	0	0
+GO:0061711: [MF] N(6)-L-threonylcarbamoyladenine synthase	16.0915	23.0494	21.522	33.2499	36.0706	42.4609
+GO:0061711: [MF] N(6)-L-threonylcarbamoyladenine synthase|g__Clostridium.s__Clostridium_thermocellum	1.08943	15.2844	12.2832	27.7742	29.4735	31.8847
+GO:0061711: [MF] N(6)-L-threonylcarbamoyladenine synthase|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	14.8289	7.57256	9.17675	5.33897	6.41807	10.4873
+GO:0061711: [MF] N(6)-L-threonylcarbamoyladenine synthase|g__Escherichia.s__Escherichia_coli	0.0562639	0	0	0	0	0
+GO:0061711: [MF] N(6)-L-threonylcarbamoyladenine synthase|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.116927	0.192435	0.0620212	0.136711	0.178984	0.0888996
+GO:0061712: [MF] tRNA (N(6)-L-threonylcarbamoyladenosine(37)-C(2))-methylthiotransferase	0	0.124479	0.240552	0.0442191	0	0.229186
+GO:0061712: [MF] tRNA (N(6)-L-threonylcarbamoyladenosine(37)-C(2))-methylthiotransferase|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.124479	0.240552	0.0442191	0	0.229186
+GO:0065002: [BP] intracellular protein transmembrane transport	119.523	125.59	124.571	283.823	236.665	185.567
+GO:0065002: [BP] intracellular protein transmembrane transport|g__Clostridium.s__Clostridium_thermocellum	15.2639	39.6753	26.2876	208.83	146.464	110.982
+GO:0065002: [BP] intracellular protein transmembrane transport|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	103.649	85.5668	97.0939	74.2249	89.538	73.691
+GO:0065002: [BP] intracellular protein transmembrane transport|g__Escherichia.s__Escherichia_coli	0.130464	0	0.283087	0	0	0.0273587
+GO:0065002: [BP] intracellular protein transmembrane transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.479884	0.348138	0.905871	0.768238	0.663957	0.866585
+GO:0070006: [MF] metalloaminopeptidase activity	44.3862	27.1536	17.9648	128.593	88.1008	81.1036
+GO:0070006: [MF] metalloaminopeptidase activity|g__Clostridium.s__Clostridium_thermocellum	8.05568	14.5777	9.44085	114.135	72.6202	68.1519
+GO:0070006: [MF] metalloaminopeptidase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	36.2657	12.3271	7.96299	13.5957	15.1914	12.7792
+GO:0070006: [MF] metalloaminopeptidase activity|g__Escherichia.s__Escherichia_coli	0	0	0.139965	0	0	0
+GO:0070006: [MF] metalloaminopeptidase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0648189	0.248864	0.420978	0.862173	0.28917	0.172463
+GO:0070008: [MF] serine-type exopeptidase activity	0.0127353	0	0	0	0	0
+GO:0070008: [MF] serine-type exopeptidase activity|g__Escherichia.s__Escherichia_coli	0.0127353	0	0	0	0	0
+GO:0070011: [MF] peptidase activity, acting on L-amino acid peptides	0	0	0	0	0	0.0547174
+GO:0070011: [MF] peptidase activity, acting on L-amino acid peptides|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0547174
+GO:0070038: [MF] rRNA (pseudouridine-N3-)-methyltransferase activity	13.2895	74.9947	46.8949	84.975	83.2311	98.9911
+GO:0070038: [MF] rRNA (pseudouridine-N3-)-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	2.94551	26.2976	22.5284	68.8634	60.7609	81.1661
+GO:0070038: [MF] rRNA (pseudouridine-N3-)-methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.344	48.6971	24.3665	16.1115	22.4702	17.825
+GO:0070039: [MF] rRNA (guanosine-2'-O-)-methyltransferase activity	0.0835087	0	0	0	0	0
+GO:0070039: [MF] rRNA (guanosine-2'-O-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.0835087	0	0	0	0	0
+GO:0070040: [MF] rRNA (adenine-C2-)-methyltransferase activity	1.7819	11.4019	8.76191	33.2804	31.5624	33.2572
+GO:0070040: [MF] rRNA (adenine-C2-)-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	1.7819	11.4019	8.76191	33.2804	31.5624	33.2572
+GO:0070041: [MF] rRNA (uridine-C5-)-methyltransferase activity	0	0	0.0773123	0	0	0
+GO:0070041: [MF] rRNA (uridine-C5-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0773123	0	0	0
+GO:0070043: [MF] rRNA (guanine-N7-)-methyltransferase activity	11.0177	7.9634	10.3651	20.0551	18.3224	10.6112
+GO:0070043: [MF] rRNA (guanine-N7-)-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.0839462	3.13698	3.18419	13.7784	10.109	6.86629
+GO:0070043: [MF] rRNA (guanine-N7-)-methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	10.8064	4.82642	7.18093	6.27677	8.21336	3.74494
+GO:0070043: [MF] rRNA (guanine-N7-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0.127353	0	0	0	0	0
+GO:0070062: [CC] extracellular exosome	0.0604685	0	0	0	0	0
+GO:0070062: [CC] extracellular exosome|g__Escherichia.s__Escherichia_coli	0.0604685	0	0	0	0	0
+GO:0070069: [CC] cytochrome complex	0	0	0.0646374	0	0	0.023187
+GO:0070069: [CC] cytochrome complex|g__Escherichia.s__Escherichia_coli	0	0	0.0646374	0	0	0.023187
+GO:0070084: [BP] protein initiator methionine removal	44.3862	27.1536	17.9648	128.593	88.1008	81.1036
+GO:0070084: [BP] protein initiator methionine removal|g__Clostridium.s__Clostridium_thermocellum	8.05568	14.5777	9.44085	114.135	72.6202	68.1519
+GO:0070084: [BP] protein initiator methionine removal|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	36.2657	12.3271	7.96299	13.5957	15.1914	12.7792
+GO:0070084: [BP] protein initiator methionine removal|g__Escherichia.s__Escherichia_coli	0	0	0.139965	0	0	0
+GO:0070084: [BP] protein initiator methionine removal|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0648189	0.248864	0.420978	0.862173	0.28917	0.172463
+GO:0070125: [BP] mitochondrial translational elongation	0.0469554	0	0	0	0	0
+GO:0070125: [BP] mitochondrial translational elongation|g__Escherichia.s__Escherichia_coli	0.0469554	0	0	0	0	0
+GO:0070180: [MF] large ribosomal subunit rRNA binding	117.733	184.369	124.526	730.52	607.724	461.223
+GO:0070180: [MF] large ribosomal subunit rRNA binding|g__Clostridium.s__Clostridium_thermocellum	42.5327	96.4747	46.0233	629.277	477.498	339.832
+GO:0070180: [MF] large ribosomal subunit rRNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	72.3708	84.5407	72.6907	93.2416	126.52	113.958
+GO:0070180: [MF] large ribosomal subunit rRNA binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	2.82992	3.35387	5.81164	8.00151	3.70547	7.43319
+GO:0070181: [MF] small ribosomal subunit rRNA binding	21.5368	24.1745	24.3902	57.524	58.9049	50.8204
+GO:0070181: [MF] small ribosomal subunit rRNA binding|g__Clostridium.s__Clostridium_thermocellum	4.53786	13.9793	13.3934	45.292	45.279	39.6576
+GO:0070181: [MF] small ribosomal subunit rRNA binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.9989	10.1952	10.9968	12.2321	13.6259	11.1628
+GO:0070301: [BP] cellular response to hydrogen peroxide	0.0263456	0	0.0546689	0	0	0.070046
+GO:0070301: [BP] cellular response to hydrogen peroxide|g__Escherichia.s__Escherichia_coli	0.0263456	0	0.0546689	0	0	0.070046
+GO:0070402: [MF] NADPH binding	6.30255	12.792	5.92476	25.9558	23.586	18.7702
+GO:0070402: [MF] NADPH binding|g__Clostridium.s__Clostridium_thermocellum	1.5856	8.00737	3.75655	20.4672	19.2295	15.9648
+GO:0070402: [MF] NADPH binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.67053	4.78465	2.16822	5.04796	4.35649	2.48715
+GO:0070402: [MF] NADPH binding|g__Escherichia.s__Escherichia_coli	0.0464207	0	0	0	0	0.24639
+GO:0070402: [MF] NADPH binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0	0	0.440599	0	0.071857
+GO:0070403: [MF] NAD+ binding	45.9991	119.606	131.267	111.654	132.763	170.964
+GO:0070403: [MF] NAD+ binding|g__Clostridium.s__Clostridium_thermocellum	6.95135	45.9196	41.1006	72.7585	83.0025	129.835
+GO:0070403: [MF] NAD+ binding|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	39.0074	73.6862	90.1666	38.8953	49.7602	41.129
+GO:0070403: [MF] NAD+ binding|g__Escherichia.s__Escherichia_coli	0.0402961	0	0	0	0	0
+GO:0070417: [BP] cellular response to cold	0.0285816	0	0	0	0	0.0380952
+GO:0070417: [BP] cellular response to cold|g__Escherichia.s__Escherichia_coli	0.0285816	0	0	0	0	0.0380952
+GO:0070453: [BP] regulation of heme biosynthetic process	0	0	0.0573753	0	0	0
+GO:0070453: [BP] regulation of heme biosynthetic process|g__Escherichia.s__Escherichia_coli	0	0	0.0573753	0	0	0
+GO:0070469: [CC] respiratory chain	0.0920638	0	0	0	0	0
+GO:0070469: [CC] respiratory chain|g__Escherichia.s__Escherichia_coli	0.0920638	0	0	0	0	0
+GO:0070475: [BP] rRNA base methylation	160.768	376.892	430.784	656.058	640.816	848.078
+GO:0070475: [BP] rRNA base methylation|g__Clostridium.s__Clostridium_thermocellum	35.1663	237.713	263.565	597.064	572.21	797.742
+GO:0070475: [BP] rRNA base methylation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	125.45	139.18	167.218	58.9941	68.6063	50.3356
+GO:0070475: [BP] rRNA base methylation|g__Escherichia.s__Escherichia_coli	0.151123	0	0	0	0	0
+GO:0070481: [BP] nuclear-transcribed mRNA catabolic process, non-stop decay	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0070481: [BP] nuclear-transcribed mRNA catabolic process, non-stop decay|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0070491: [MF] repressing transcription factor binding	0.0457645	0	0	0	0	0.0304632
+GO:0070491: [MF] repressing transcription factor binding|g__Escherichia.s__Escherichia_coli	0.0457645	0	0	0	0	0.0304632
+GO:0070574: [BP] cadmium ion transmembrane transport	0.0237208	0	0.0220119	0	0	0
+GO:0070574: [BP] cadmium ion transmembrane transport|g__Escherichia.s__Escherichia_coli	0.0237208	0	0.0220119	0	0	0
+GO:0070581: [BP] rolling circle DNA replication	0.0241582	0	0	0	0	0
+GO:0070581: [BP] rolling circle DNA replication|g__Escherichia.s__Escherichia_coli	0.0241582	0	0	0	0	0
+GO:0070588: [BP] calcium ion transmembrane transport	0.0880536	0	0	0	0	0
+GO:0070588: [BP] calcium ion transmembrane transport|g__Escherichia.s__Escherichia_coli	0.0880536	0	0	0	0	0
+GO:0070590: [BP] spore wall biogenesis	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0070590: [BP] spore wall biogenesis|g__Clostridium.s__Clostridium_thermocellum	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0070626: [MF] (S)-2-(5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido)succinate AMP-lyase (fumarate-forming) activity	4.89843	4.16777	3.46854	4.32549	3.37398	2.78114
+GO:0070626: [MF] (S)-2-(5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido)succinate AMP-lyase (fumarate-forming) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.73713	3.81776	2.90485	3.76601	3.22935	2.67336
+GO:0070626: [MF] (S)-2-(5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido)succinate AMP-lyase (fumarate-forming) activity|g__Escherichia.s__Escherichia_coli	0.03981	0	0	0	0	0
+GO:0070626: [MF] (S)-2-(5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido)succinate AMP-lyase (fumarate-forming) activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.121496	0.350005	0.563694	0.559503	0.14465	0.107786
+GO:0070677: [MF] rRNA (cytosine-2'-O-)-methyltransferase activity	4.34228	7.62357	4.26918	22.8476	19.7208	16.7342
+GO:0070677: [MF] rRNA (cytosine-2'-O-)-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	3.29626	6.52502	3.96548	21.0496	18.4026	15.9098
+GO:0070677: [MF] rRNA (cytosine-2'-O-)-methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	1.04605	1.09856	0.176907	1.79801	1.31821	0.824318
+GO:0070677: [MF] rRNA (cytosine-2'-O-)-methyltransferase activity|g__Escherichia.s__Escherichia_coli	0	0	0.126794	0	0	0
+GO:0070689: [BP] L-threonine catabolic process to propionate	0.387941	0	0.127967	0	0	0
+GO:0070689: [BP] L-threonine catabolic process to propionate|g__Escherichia.s__Escherichia_coli	0.387941	0	0.127967	0	0	0
+GO:0070814: [BP] hydrogen sulfide biosynthetic process	0.576249	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0070814: [BP] hydrogen sulfide biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0070814: [BP] hydrogen sulfide biosynthetic process|g__Escherichia.s__Escherichia_coli	0.405683	0	0	0	0	0
+GO:0070929: [BP] trans-translation	79.7135	118.496	130.922	145.468	146.627	163.955
+GO:0070929: [BP] trans-translation|g__Clostridium.s__Clostridium_thermocellum	4.47212	48.2579	43.9077	95.8748	84.4923	122.216
+GO:0070929: [BP] trans-translation|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	75.2413	70.2379	87.0147	49.5934	62.1343	41.7394
+GO:0070966: [BP] nuclear-transcribed mRNA catabolic process, no-go decay	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0070966: [BP] nuclear-transcribed mRNA catabolic process, no-go decay|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0070967: [MF] coenzyme F420 binding	0	0.339924	0.246461	0	0.276647	0.0588891
+GO:0070967: [MF] coenzyme F420 binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.339924	0.246461	0	0.276647	0.0588891
+GO:0070981: [BP] L-asparagine biosynthetic process	11.4358	40.0307	28.164	51.3344	51.4781	42.3862
+GO:0070981: [BP] L-asparagine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.00423	11.0108	9.29827	27.4214	27.3095	32.9501
+GO:0070981: [BP] L-asparagine biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	9.43158	29.0199	18.8658	23.913	24.1686	9.43613
+GO:0071025: [BP] RNA surveillance	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0071025: [BP] RNA surveillance|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0071111: [MF] cyclic-guanylate-specific phosphodiesterase activity	0.543366	0	0.395628	0	0	0.189344
+GO:0071111: [MF] cyclic-guanylate-specific phosphodiesterase activity|g__Escherichia.s__Escherichia_coli	0.543366	0	0.395628	0	0	0.189344
+GO:0071249: [BP] cellular response to nitrate	0.0463478	0	0	0	0	0
+GO:0071249: [BP] cellular response to nitrate|g__Escherichia.s__Escherichia_coli	0.0463478	0	0	0	0	0
+GO:0071250: [BP] cellular response to nitrite	0.0463478	0	0	0	0	0
+GO:0071250: [BP] cellular response to nitrite|g__Escherichia.s__Escherichia_coli	0.0463478	0	0	0	0	0
+GO:0071266: [BP] 'de novo' L-methionine biosynthetic process	2.3615	7.63254	9.34942	21.2291	25.0685	25.5842
+GO:0071266: [BP] 'de novo' L-methionine biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.11693	7.52813	8.59258	20.3668	24.8744	25.0777
+GO:0071266: [BP] 'de novo' L-methionine biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.244572	0.104409	0.756839	0.862297	0.194176	0.506492
+GO:0071271: [BP] 1-butanol biosynthetic process	0.0471013	0	0	0	0	0.0626728
+GO:0071271: [BP] 1-butanol biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0471013	0	0	0	0	0.0626728
+GO:0071310: [BP] cellular response to organic substance	0.158827	0	0.0597659	0	0	0
+GO:0071310: [BP] cellular response to organic substance|g__Escherichia.s__Escherichia_coli	0.158827	0	0.0597659	0	0	0
+GO:0071424: [MF] rRNA (cytosine-N4-)-methyltransferase activity	158.835	365.491	422.022	622.777	609.254	814.82
+GO:0071424: [MF] rRNA (cytosine-N4-)-methyltransferase activity|g__Clostridium.s__Clostridium_thermocellum	33.3844	226.311	254.804	563.783	540.647	764.485
+GO:0071424: [MF] rRNA (cytosine-N4-)-methyltransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	125.45	139.18	167.218	58.9941	68.6063	50.3356
+GO:0071436: [BP] sodium ion export	60.1527	44.5481	43.1634	46.845	57.0023	66.4675
+GO:0071436: [BP] sodium ion export|g__Clostridium.s__Clostridium_thermocellum	2.38104	17.75	13.8523	29.105	39.5093	53.9613
+GO:0071436: [BP] sodium ion export|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	57.6596	26.7981	29.3111	17.74	17.493	12.5063
+GO:0071436: [BP] sodium ion export|g__Escherichia.s__Escherichia_coli	0.111993	0	0	0	0	0
+GO:0071454: [BP] cellular response to anoxia	0.0263456	0	0.0546689	0	0	0.070046
+GO:0071454: [BP] cellular response to anoxia|g__Escherichia.s__Escherichia_coli	0.0263456	0	0.0546689	0	0	0.070046
+GO:0071468: [BP] cellular response to acidic pH	0	0	0.246461	0	0	0
+GO:0071468: [BP] cellular response to acidic pH|g__Escherichia.s__Escherichia_coli	0	0	0.246461	0	0	0
+GO:0071470: [BP] cellular response to osmotic stress	0.132797	0	0	0	0	0.0773546
+GO:0071470: [BP] cellular response to osmotic stress|g__Escherichia.s__Escherichia_coli	0.132797	0	0	0	0	0.0773546
+GO:0071474: [BP] cellular hyperosmotic response	0.0972162	0	0.180425	0	0	0
+GO:0071474: [BP] cellular hyperosmotic response|g__Escherichia.s__Escherichia_coli	0.0972162	0	0.180425	0	0	0
+GO:0071555: [BP] cell wall organization	346.486	551.734	467.682	984.504	937.407	957.887
+GO:0071555: [BP] cell wall organization|g__Clostridium.s__Clostridium_thermocellum	83.1564	304.364	272.41	761.72	699.107	771.248
+GO:0071555: [BP] cell wall organization|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	260.398	247.371	193.464	222.784	238.3	185.998
+GO:0071555: [BP] cell wall organization|g__Escherichia.s__Escherichia_coli	2.93117	0	1.80782	0	0	0.640666
+GO:0071577: [BP] zinc II ion transmembrane transport	0.0237208	0	0.0220119	0	0	0
+GO:0071577: [BP] zinc II ion transmembrane transport|g__Escherichia.s__Escherichia_coli	0.0237208	0	0.0220119	0	0	0
+GO:0071705: [BP] nitrogen compound transport	0	0	0	0	0	0.0946559
+GO:0071705: [BP] nitrogen compound transport|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0946559
+GO:0071713: [MF] para-aminobenzoyl-glutamate hydrolase activity	0	0	0	0	0	0.0557199
+GO:0071713: [MF] para-aminobenzoyl-glutamate hydrolase activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0557199
+GO:0071805: [BP] potassium ion transmembrane transport	0.207289	0	0	0	0	0
+GO:0071805: [BP] potassium ion transmembrane transport|g__Escherichia.s__Escherichia_coli	0.207289	0	0	0	0	0
+GO:0071897: [BP] DNA biosynthetic process	18.9298	14.552	14.7185	14.0977	18.9586	12.1473
+GO:0071897: [BP] DNA biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	18.8045	14.4913	14.601	13.952	18.8738	12.0016
+GO:0071897: [BP] DNA biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0145824	0	0	0	0	0.0194033
+GO:0071897: [BP] DNA biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0071916: [MF] dipeptide transmembrane transporter activity	0.217035	0	0	0	0	0.0780984
+GO:0071916: [MF] dipeptide transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.217035	0	0	0	0	0.0780984
+GO:0071949: [MF] FAD binding	0.296582	0.894313	1.33767	1.16711	0.852447	1.1448
+GO:0071949: [MF] FAD binding|g__Escherichia.s__Escherichia_coli	0.250016	0	0.646329	0	0	0.0304632
+GO:0071949: [MF] FAD binding|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0465666	0.894313	0.691345	1.16711	0.852447	1.11433
+GO:0071963: [BP] establishment or maintenance of cell polarity regulating cell shape	0.0255679	0	0	0	0	0
+GO:0071963: [BP] establishment or maintenance of cell polarity regulating cell shape|g__Escherichia.s__Escherichia_coli	0.0255679	0	0	0	0	0
+GO:0071972: [MF] peptidoglycan L,D-transpeptidase activity	0.0143151	0	0	0	0	0
+GO:0071972: [MF] peptidoglycan L,D-transpeptidase activity|g__Escherichia.s__Escherichia_coli	0.0143151	0	0	0	0	0
+GO:0071973: [BP] bacterial-type flagellum-dependent cell motility	56.4535	142.275	108.322	1459.48	1423.45	1202.31
+GO:0071973: [BP] bacterial-type flagellum-dependent cell motility|g__Clostridium.s__Clostridium_thermocellum	56.1354	142.275	107.883	1459.48	1423.45	1202.2
+GO:0071973: [BP] bacterial-type flagellum-dependent cell motility|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.0268317	0	0	0	0	0
+GO:0071973: [BP] bacterial-type flagellum-dependent cell motility|g__Escherichia.s__Escherichia_coli	0.291211	0	0.439426	0	0	0.108982
+GO:0071978: [BP] bacterial-type flagellum-dependent swarming motility	0.687416	0	0	0	0	0
+GO:0071978: [BP] bacterial-type flagellum-dependent swarming motility|g__Escherichia.s__Escherichia_coli	0.687416	0	0	0	0	0
+GO:0072344: [BP] rescue of stalled ribosome	0.188405	0	0	0	0	0
+GO:0072344: [BP] rescue of stalled ribosome|g__Escherichia.s__Escherichia_coli	0.188405	0	0	0	0	0
+GO:0072348: [BP] sulfur compound transport	0.300422	0	0	0	0	0
+GO:0072348: [BP] sulfur compound transport|g__Escherichia.s__Escherichia_coli	0.300422	0	0	0	0	0
+GO:0072531: [BP] pyrimidine-containing compound transmembrane transport	0.0219952	0	0	0	0	0.0584364
+GO:0072531: [BP] pyrimidine-containing compound transmembrane transport|g__Escherichia.s__Escherichia_coli	0.0219952	0	0	0	0	0.0584364
+GO:0072592: [BP] oxygen metabolic process	5102.29	13939.3	11938.1	4792.25	5139.37	6668.11
+GO:0072592: [BP] oxygen metabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	5102.29	13939.3	11938.1	4792.25	5139.37	6668.11
+GO:0075713: [BP] establishment of integrated proviral latency	0.380626	0	0.0852059	0	0	0.155097
+GO:0075713: [BP] establishment of integrated proviral latency|g__Escherichia.s__Escherichia_coli	0.380626	0	0.0852059	0	0	0.155097
+GO:0080100: [MF] L-glutamine:2-oxoglutarate aminotransferase activity	0.21441	2.05887	0.309565	6.04406	8.5926	8.3998
+GO:0080100: [MF] L-glutamine:2-oxoglutarate aminotransferase activity|g__Clostridium.s__Clostridium_thermocellum	0.21441	2.05887	0.309565	6.04406	8.5926	8.3998
+GO:0080130: [MF] L-phenylalanine:2-oxoglutarate aminotransferase activity	55.2091	31.3015	48.4859	65.7772	69.6754	103.392
+GO:0080130: [MF] L-phenylalanine:2-oxoglutarate aminotransferase activity|g__Clostridium.s__Clostridium_thermocellum	4.86485	17.4735	15.7327	60.4082	63.6561	96.8323
+GO:0080130: [MF] L-phenylalanine:2-oxoglutarate aminotransferase activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	50.0765	13.7323	32.6144	4.60319	5.75173	6.46044
+GO:0080130: [MF] L-phenylalanine:2-oxoglutarate aminotransferase activity|g__Escherichia.s__Escherichia_coli	0.142932	0	0	0	0	0
+GO:0080130: [MF] L-phenylalanine:2-oxoglutarate aminotransferase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.12485	0.0956809	0.138792	0.765801	0.267575	0.0995068
+GO:0080146: [MF] L-cysteine desulfhydrase activity	0	0	0.0854314	0	0	0
+GO:0080146: [MF] L-cysteine desulfhydrase activity|g__Escherichia.s__Escherichia_coli	0	0	0.0854314	0	0	0
+GO:0080167: [BP] response to karrikin	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0080167: [BP] response to karrikin|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0080176: [MF] xyloglucan 1,6-alpha-xylosidase activity	0.0112042	0	0.109744	0	0	0
+GO:0080176: [MF] xyloglucan 1,6-alpha-xylosidase activity|g__Escherichia.s__Escherichia_coli	0.0112042	0	0.109744	0	0	0
+GO:0089714: [MF] UDP-N-acetyl-D-mannosamine dehydrogenase activity	0.130999	0	0.0405055	0	0	0
+GO:0089714: [MF] UDP-N-acetyl-D-mannosamine dehydrogenase activity|g__Escherichia.s__Escherichia_coli	0.130999	0	0.0405055	0	0	0
+GO:0090071: [BP] negative regulation of ribosome biogenesis	6.04631	25.0691	19.2406	52.9358	50.1984	76.4403
+GO:0090071: [BP] negative regulation of ribosome biogenesis|g__Clostridium.s__Clostridium_thermocellum	1.39243	22.0746	15.9619	51.3402	47.5091	73.1241
+GO:0090071: [BP] negative regulation of ribosome biogenesis|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	4.65391	2.99453	3.27865	1.59564	2.6893	3.31622
+GO:0090305: [BP] nucleic acid phosphodiester bond hydrolysis	0.206973	0	0.232208	0	0	0.0883498
+GO:0090305: [BP] nucleic acid phosphodiester bond hydrolysis|g__Escherichia.s__Escherichia_coli	0.206973	0	0.232208	0	0	0.0883498
+GO:0090313: [BP] regulation of protein targeting to membrane	0.0142665	0	0	0	0	0
+GO:0090313: [BP] regulation of protein targeting to membrane|g__Escherichia.s__Escherichia_coli	0.0142665	0	0	0	0	0
+GO:0090501: [BP] RNA phosphodiester bond hydrolysis	0.0369908	0	0	0	0	0
+GO:0090501: [BP] RNA phosphodiester bond hydrolysis|g__Escherichia.s__Escherichia_coli	0.0369908	0	0	0	0	0
+GO:0090502: [BP] RNA phosphodiester bond hydrolysis, endonucleolytic	1.1593	0	0	0	0	0
+GO:0090502: [BP] RNA phosphodiester bond hydrolysis, endonucleolytic|g__Escherichia.s__Escherichia_coli	1.1593	0	0	0	0	0
+GO:0090503: [BP] RNA phosphodiester bond hydrolysis, exonucleolytic	0	0	0.187146	0	0	0.0883498
+GO:0090503: [BP] RNA phosphodiester bond hydrolysis, exonucleolytic|g__Escherichia.s__Escherichia_coli	0	0	0.187146	0	0	0.0883498
+GO:0090540: [BP] bacterial cellulose biosynthetic process	1.24636	0	0	0	0	0
+GO:0090540: [BP] bacterial cellulose biosynthetic process|g__Escherichia.s__Escherichia_coli	1.24636	0	0	0	0	0
+GO:0090582: [MF] protein-phosphocysteine-D-fructose-phosphotransferase system transporter activity	0	0	0	0	0	0.0209879
+GO:0090582: [MF] protein-phosphocysteine-D-fructose-phosphotransferase system transporter activity|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0209879
+GO:0090589: [MF] protein-phosphocysteine-trehalose phosphotransferase system transporter activity	0.0383275	0	0	0	0	0.0431401
+GO:0090589: [MF] protein-phosphocysteine-trehalose phosphotransferase system transporter activity|g__Escherichia.s__Escherichia_coli	0.0383275	0	0	0	0	0.0431401
+GO:0090613: [MF] 5'-deoxyadenosine deaminase activity	0.0428724	0	0.0795225	0	0	0.0570135
+GO:0090613: [MF] 5'-deoxyadenosine deaminase activity|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0428724	0	0.0795225	0	0	0.0570135
+GO:0090614: [MF] 5'-methylthioadenosine deaminase activity	2.16138	9.32091	3.97432	40.4601	33.0883	28.9094
+GO:0090614: [MF] 5'-methylthioadenosine deaminase activity|g__Clostridium.s__Clostridium_thermocellum	2.16138	9.32091	3.97432	40.4601	33.0883	28.9094
+GO:0097054: [BP] L-glutamate biosynthetic process	0.0766064	0	0	0	0	0
+GO:0097054: [BP] L-glutamate biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0766064	0	0	0	0	0
+GO:0097056: [BP] selenocysteinyl-tRNA(Sec) biosynthetic process	23.9163	39.7508	29.7111	62.3617	68.0186	64.3589
+GO:0097056: [BP] selenocysteinyl-tRNA(Sec) biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.40476	16.8858	13.3064	39.3101	43.4919	37.9766
+GO:0097056: [BP] selenocysteinyl-tRNA(Sec) biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	21.253	22.6975	16.1781	22.7479	24.3709	26.15
+GO:0097056: [BP] selenocysteinyl-tRNA(Sec) biosynthetic process|g__Escherichia.s__Escherichia_coli	0.118871	0	0	0	0	0
+GO:0097056: [BP] selenocysteinyl-tRNA(Sec) biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.139675	0.167605	0.22675	0.303739	0.15587	0.232323
+GO:0097098: [MF] DNA/RNA hybrid annealing activity	0.0579166	0	0.0179072	0	0	0.0256771
+GO:0097098: [MF] DNA/RNA hybrid annealing activity|g__Escherichia.s__Escherichia_coli	0.0579166	0	0.0179072	0	0	0.0256771
+GO:0097171: [BP] ADP-L-glycero-beta-D-manno-heptose biosynthetic process	0.257234	0	0.282501	0	0	0
+GO:0097171: [BP] ADP-L-glycero-beta-D-manno-heptose biosynthetic process|g__Escherichia.s__Escherichia_coli	0.257234	0	0.282501	0	0	0
+GO:0097173: [BP] N-acetylmuramic acid catabolic process	0.133721	0	0	0	0	0
+GO:0097173: [BP] N-acetylmuramic acid catabolic process|g__Escherichia.s__Escherichia_coli	0.133721	0	0	0	0	0
+GO:0097175: [BP] 1,6-anhydro-N-acetyl-beta-muramic acid catabolic process	0.065062	0	0	0	0	0
+GO:0097175: [BP] 1,6-anhydro-N-acetyl-beta-muramic acid catabolic process|g__Escherichia.s__Escherichia_coli	0.065062	0	0	0	0	0
+GO:0097264: [BP] self proteolysis	3.87399	16.78	9.76701	44.9418	44.3139	57.188
+GO:0097264: [BP] self proteolysis|g__Clostridium.s__Clostridium_thermocellum	3.58145	16.78	9.44676	44.9418	44.3139	57.1423
+GO:0097264: [BP] self proteolysis|g__Escherichia.s__Escherichia_coli	0.292548	0	0.320255	0	0	0.0456625
+GO:0097588: [BP] archaeal or bacterial-type flagellum-dependent cell motility	13.7278	62.6596	40.8665	354.209	319.508	260.352
+GO:0097588: [BP] archaeal or bacterial-type flagellum-dependent cell motility|g__Clostridium.s__Clostridium_thermocellum	13.7278	62.6596	40.8665	354.209	319.508	260.352
+GO:0098655: [BP] cation transmembrane transport	0.610712	0	0	0	0	0.0281348
+GO:0098655: [BP] cation transmembrane transport|g__Escherichia.s__Escherichia_coli	0.610712	0	0	0	0	0.0281348
+GO:1900190: [BP] regulation of single-species biofilm formation	0.0483165	0	0	0	0	0
+GO:1900190: [BP] regulation of single-species biofilm formation|g__Escherichia.s__Escherichia_coli	0.0483165	0	0	0	0	0
+GO:1900191: [BP] negative regulation of single-species biofilm formation	1.52821	0	0	0	0	0
+GO:1900191: [BP] negative regulation of single-species biofilm formation|g__Escherichia.s__Escherichia_coli	1.52821	0	0	0	0	0
+GO:1900751: [BP] 4-(trimethylammonio)butanoate transport	0.0349249	0	0	0	0	0
+GO:1900751: [BP] 4-(trimethylammonio)butanoate transport|g__Escherichia.s__Escherichia_coli	0.0349249	0	0	0	0	0
+GO:1900753: [BP] doxorubicin transport	0	0.391685	0.32851	0.1772	0	0.225143
+GO:1900753: [BP] doxorubicin transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0	0.391685	0.32851	0.1772	0	0.225143
+GO:1901137: [BP] carbohydrate derivative biosynthetic process	19.441	17.737	11.7986	51.7246	42.9469	34.2831
+GO:1901137: [BP] carbohydrate derivative biosynthetic process|g__Clostridium.s__Clostridium_thermocellum	2.87425	5.07356	2.99064	34.4445	23.9786	17.6544
+GO:1901137: [BP] carbohydrate derivative biosynthetic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	16.418	12.2322	8.50232	16.6672	18.6474	15.7124
+GO:1901137: [BP] carbohydrate derivative biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0289704	0	0	0	0	0
+GO:1901137: [BP] carbohydrate derivative biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.119795	0.431311	0.305731	0.612874	0.320878	0.91629
+GO:1901264: [BP] carbohydrate derivative transport	0.0959524	0	0	0	0	0.0780984
+GO:1901264: [BP] carbohydrate derivative transport|g__Escherichia.s__Escherichia_coli	0.0959524	0	0	0	0	0.0780984
+GO:1901285: [BP] 5,6,7,8-tetrahydromethanopterin biosynthetic process	0.170687	0.166391	0.479796	0.177249	0.232048	0.115288
+GO:1901285: [BP] 5,6,7,8-tetrahydromethanopterin biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.170687	0.166391	0.479796	0.177249	0.232048	0.115288
+GO:1901530: [BP] response to hypochlorite	0.174382	0	0	0	0	0
+GO:1901530: [BP] response to hypochlorite|g__Escherichia.s__Escherichia_coli	0.174382	0	0	0	0	0
+GO:1901652: [BP] response to peptide	0.0514031	0	0	0	0	0
+GO:1901652: [BP] response to peptide|g__Escherichia.s__Escherichia_coli	0.0514031	0	0	0	0	0
+GO:1901682: [MF] sulfur compound transmembrane transporter activity	0.300422	0	0	0	0	0
+GO:1901682: [MF] sulfur compound transmembrane transporter activity|g__Escherichia.s__Escherichia_coli	0.300422	0	0	0	0	0
+GO:1902021: [BP] regulation of bacterial-type flagellum-dependent cell motility	0.0604685	0	0	0	0	0
+GO:1902021: [BP] regulation of bacterial-type flagellum-dependent cell motility|g__Escherichia.s__Escherichia_coli	0.0604685	0	0	0	0	0
+GO:1902201: [BP] negative regulation of bacterial-type flagellum-dependent cell motility	0.519645	0	0	0	0	0.122855
+GO:1902201: [BP] negative regulation of bacterial-type flagellum-dependent cell motility|g__Escherichia.s__Escherichia_coli	0.519645	0	0	0	0	0.122855
+GO:1902209: [BP] negative regulation of bacterial-type flagellum assembly	0.0632148	0	0	0	0	0
+GO:1902209: [BP] negative regulation of bacterial-type flagellum assembly|g__Escherichia.s__Escherichia_coli	0.0632148	0	0	0	0	0
+GO:1902475: [BP] L-alpha-amino acid transmembrane transport	0.707175	0	0.523098	0	0	0.179351
+GO:1902475: [BP] L-alpha-amino acid transmembrane transport|g__Escherichia.s__Escherichia_coli	0.707175	0	0.523098	0	0	0.179351
+GO:1902599: [BP] sulfathiazole transmembrane transport	0.0266372	0	0.0494366	0	0	0
+GO:1902599: [BP] sulfathiazole transmembrane transport|g__Escherichia.s__Escherichia_coli	0.0266372	0	0.0494366	0	0	0
+GO:1902760: [BP] Mo(VI)-molybdopterin cytosine dinucleotide biosynthetic process	0.169958	0	0.210286	0	0	0
+GO:1902760: [BP] Mo(VI)-molybdopterin cytosine dinucleotide biosynthetic process|g__Escherichia.s__Escherichia_coli	0.169958	0	0.210286	0	0	0
+GO:1902765: [BP] L-arginine import into cell	0.0835087	0	0.154985	0	0	0
+GO:1902765: [BP] L-arginine import into cell|g__Escherichia.s__Escherichia_coli	0.0835087	0	0.154985	0	0	0
+GO:1902777: [BP] 6-sulfoquinovose(1-) catabolic process	0.162084	0	0.0826348	0	0	0
+GO:1902777: [BP] 6-sulfoquinovose(1-) catabolic process|g__Escherichia.s__Escherichia_coli	0.162084	0	0.0826348	0	0	0
+GO:1903401: [BP] L-lysine transmembrane transport	0.129711	0	0	0	0	0
+GO:1903401: [BP] L-lysine transmembrane transport|g__Escherichia.s__Escherichia_coli	0.129711	0	0	0	0	0
+GO:1903506: [BP] regulation of nucleic acid-templated transcription	0.0604685	0	0	0	0	0
+GO:1903506: [BP] regulation of nucleic acid-templated transcription|g__Escherichia.s__Escherichia_coli	0.0604685	0	0	0	0	0
+GO:1903658: [BP] positive regulation of type IV pilus biogenesis	0.201602	0	0.187552	0	0	0
+GO:1903658: [BP] positive regulation of type IV pilus biogenesis|g__Escherichia.s__Escherichia_coli	0.201602	0	0.187552	0	0	0
+GO:1903716: [BP] guanine transmembrane transport	0.0803249	0	0	0	0	0.0530681
+GO:1903716: [BP] guanine transmembrane transport|g__Escherichia.s__Escherichia_coli	0.0803249	0	0	0	0	0.0530681
+GO:1903785: [BP] L-valine transmembrane transport	0.26941	0	0	0	0	0
+GO:1903785: [BP] L-valine transmembrane transport|g__Escherichia.s__Escherichia_coli	0.26941	0	0	0	0	0
+GO:1903791: [BP] uracil transmembrane transport	0	0	0	0	0	0.0548468
+GO:1903791: [BP] uracil transmembrane transport|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.0548468
+GO:1903825: [BP] organic acid transmembrane transport	0.0374282	0	0.0694638	0	0	0
+GO:1903825: [BP] organic acid transmembrane transport|g__Escherichia.s__Escherichia_coli	0.0374282	0	0.0694638	0	0	0
+GO:1903874: [BP] ferrous iron transmembrane transport	0.135349	0	0	0	0	0
+GO:1903874: [BP] ferrous iron transmembrane transport|g__Escherichia.s__Escherichia_coli	0.135349	0	0	0	0	0
+GO:1990077: [CC] primosome complex	48.8433	96.3658	74.1824	261.944	235.796	240.042
+GO:1990077: [CC] primosome complex|g__Clostridium.s__Clostridium_thermocellum	12.5699	70.2642	48.6421	229.625	197.816	211.795
+GO:1990077: [CC] primosome complex|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	35.184	25.1436	24.5011	31.5804	37.6495	27.0267
+GO:1990077: [CC] primosome complex|g__Escherichia.s__Escherichia_coli	0.387115	0	0.301626	0	0	0
+GO:1990077: [CC] primosome complex|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.702339	0.957976	0.737489	0.738419	0.33008	1.21966
+GO:1990204: [CC] oxidoreductase complex	0.0474901	0	0	0	0	0
+GO:1990204: [CC] oxidoreductase complex|g__Escherichia.s__Escherichia_coli	0.0474901	0	0	0	0	0
+GO:1990663: [MF] dihydroorotate dehydrogenase (fumarate) activity	0.864033	0.484005	0.13365	0.257804	0.353627	0.431174
+GO:1990663: [MF] dihydroorotate dehydrogenase (fumarate) activity|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	0.864033	0.484005	0.13365	0.257804	0.353627	0.431174
+GO:2000142: [BP] regulation of DNA-templated transcription, initiation	0	0	0.0968433	0	0	0
+GO:2000142: [BP] regulation of DNA-templated transcription, initiation|g__Escherichia.s__Escherichia_coli	0	0	0.0968433	0	0	0
+GO:2000143: [BP] negative regulation of DNA-templated transcription, initiation	1.42047	0	0.406363	0	0	0
+GO:2000143: [BP] negative regulation of DNA-templated transcription, initiation|g__Escherichia.s__Escherichia_coli	1.42047	0	0.406363	0	0	0
+GO:2000144: [BP] positive regulation of DNA-templated transcription, initiation	0.090727	0	0	0	0	0
+GO:2000144: [BP] positive regulation of DNA-templated transcription, initiation|g__Escherichia.s__Escherichia_coli	0.090727	0	0	0	0	0
+GO:2000145: [BP] regulation of cell motility	0.16534	0	0	0	0	0
+GO:2000145: [BP] regulation of cell motility|g__Escherichia.s__Escherichia_coli	0.16534	0	0	0	0	0
+GO:2000147: [BP] positive regulation of cell motility	1.05166	0	0	0	0	0
+GO:2000147: [BP] positive regulation of cell motility|g__Escherichia.s__Escherichia_coli	1.05166	0	0	0	0	0
+GO:2000186: [BP] negative regulation of phosphate transmembrane transport	0.0476602	0.184127	1.33312	0.689474	0.256333	0.748484
+GO:2000186: [BP] negative regulation of phosphate transmembrane transport|g__Escherichia.s__Escherichia_coli	0	0	0	0	0	0.112378
+GO:2000186: [BP] negative regulation of phosphate transmembrane transport|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.0476602	0.184127	1.33312	0.689474	0.256333	0.636106
+GO:2000678: [BP] negative regulation of transcription regulatory region DNA binding	0.0430911	0	0	0	0	0
+GO:2000678: [BP] negative regulation of transcription regulatory region DNA binding|g__Escherichia.s__Escherichia_coli	0.0430911	0	0	0	0	0
+GO:2000884: [BP] glucomannan catabolic process	7.87794	11.7939	11.5945	20.9763	16.3192	17.9495
+GO:2000884: [BP] glucomannan catabolic process|g__Clostridium.s__Clostridium_thermocellum	7.87794	11.7939	11.5945	20.9763	16.3192	17.9495
+GO:2001059: [BP] D-tagatose 6-phosphate catabolic process	135.133	134.531	133.449	207.117	206.169	216.128
+GO:2001059: [BP] D-tagatose 6-phosphate catabolic process|g__Clostridium.s__Clostridium_thermocellum	9.86686	28.7165	21.6438	133.033	107.045	143.081
+GO:2001059: [BP] D-tagatose 6-phosphate catabolic process|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	125.074	105.814	111.725	74.0842	99.1241	73.0471
+GO:2001059: [BP] D-tagatose 6-phosphate catabolic process|g__Escherichia.s__Escherichia_coli	0.191467	0	0.0810561	0	0	0
+GO:2001070: [MF] starch binding	11.5	46.4104	40.8239	383.819	405.859	540.485
+GO:2001070: [MF] starch binding|g__Clostridium.s__Clostridium_thermocellum	11.5	46.4104	40.8239	383.819	405.859	540.485
+GO:2001118: [BP] tetrahydromethanopterin biosynthetic process	0.265619	0.71938	1.42789	0.202194	0.11852	0.439097
+GO:2001118: [BP] tetrahydromethanopterin biosynthetic process|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	0.265619	0.71938	1.42789	0.202194	0.11852	0.439097
+GO:2001295: [BP] malonyl-CoA biosynthetic process	0.0405149	0	0.150294	0	0	0.0539089
+GO:2001295: [BP] malonyl-CoA biosynthetic process|g__Escherichia.s__Escherichia_coli	0.0405149	0	0.150294	0	0	0.0539089
+UNGROUPED	21895.8	45848.3	45265	92374.4	80593.4	104793
+UNGROUPED|g__Clostridium.s__Clostridium_thermocellum	7879.65	38500.4	34463.3	86554	73736.3	97953
+UNGROUPED|g__Coprothermobacter.s__Coprothermobacter_proteolyticus	8867.57	7005.55	8228.2	5587.68	6707.31	5857.03
+UNGROUPED|g__Escherichia.s__Escherichia_coli	4965.26	0	2303.56	0	0	633.422
+UNGROUPED|g__Methanothermobacter.s__Methanothermobacter_thermautotrophicus	183.337	342.351	269.96	232.667	149.877	349.377
+UNMAPPED	136621	308057	290676	242912	242851	243733
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/T7A.tsv	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,5 @@
+genus	abundance
+Coprothermobacter	64.59208
+Clostridium	34.51004
+Methanothermobacter	0.83333
+Escherichia	0.06455
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/T7B.tsv	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,5 @@
+genus	abundance
+Coprothermobacter	60.9348
+Clostridium	38.22246
+Methanothermobacter	0.77289
+Escherichia	0.06985
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/T7C.tsv	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,5 @@
+genus	abundance
+Coprothermobacter	90.44415
+Clostridium	8.90992
+Methanothermobacter	0.57389
+Escherichia	0.07204
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/f_output.tabular	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,2457 @@
+id	name	namespace	dataset_21368137	dataset_21368138	dataset_21368139	dataset_21368140	dataset_21368141	dataset_21368142
+GO:0000014	single-stranded DNA endodeoxyribonuclease activity	molecular_function	0.158851	0.457588	0.367933	0.0406378	0.212081	0.0528417
+GO:0000023	maltose metabolic process	biological_process	14.0012	10.3973	8.3927600000000009	14.0098	14.1239	9.89496
+GO:0000025	maltose catabolic process	biological_process	0.0251304	0	0	0	0	0
+GO:0000027	ribosomal large subunit assembly	biological_process	49.0504	105.108	91.5859	184.412	170.33	145.589
+GO:0000030	mannosyltransferase activity	molecular_function	2.53579	4.38419	2.75771	22.4856	20.2827	17.4859
+GO:0000034	adenine deaminase activity	molecular_function	0.163663	0.127232	0.273796	0.0508594	0.103349	0.308642
+GO:0000036	ACP phosphopantetheine attachment site binding involved in fatty acid biosynthetic process	molecular_function	43.4545	136.691	71.8587	537.892	408.492	557.491
+GO:0000041	transition metal ion transport	biological_process	2.90142	29.9683	29.9432	38.8478	38.0279	31.5089
+GO:0000049	tRNA binding	molecular_function	637.77	984.375	722.889	2383.93	2185.47	2207.09
+GO:0000050	urea cycle	biological_process	0.101785	0	0.0755531	0	0	0
+GO:0000053	argininosuccinate metabolic process	biological_process	0.101785	0	0.0755531	0	0	0
+GO:0000062	fatty-acyl-CoA binding	molecular_function	0.065864	0	0.0611642	0	0	0
+GO:0000103	sulfate assimilation	biological_process	60.966	642.736	558.276	836.882	834.009	1015.57
+GO:0000104	succinate dehydrogenase activity	molecular_function	0.227194	0.0702438	0.13577	0.299411	0.260999	0.0973401
+GO:0000105	histidine biosynthetic process	biological_process	70.3367	124.495	86.3493	328.999	320.599	334.269
+GO:0000107	imidazoleglycerol-phosphate synthase activity	molecular_function	9.78513	22.2865	12.5845	59.3043	65.3597	51.9861
+GO:0000150	recombinase activity	molecular_function	2.14012	110.849	78.5557	19.3377	20.0455	17.1905
+GO:0000155	phosphorelay sensor kinase activity	molecular_function	71.7961	132.911	124.388	305.795	298.096	267.332
+GO:0000156	phosphorelay response regulator activity	molecular_function	3.93995	9.1295	9.92015	86.9172	82.5069	83.8827
+GO:0000160	phosphorelay signal transduction system	biological_process	175.21	590.524	562.222	1563.84	1551.44	1764.96
+GO:0000162	tryptophan biosynthetic process	biological_process	27.7221	153.213	351.528	478.509	266.019	315.287
+GO:0000166	nucleotide binding	molecular_function	401.183	277.657	300.909	533.263	507.807	472.773
+GO:0000175	3'-5'-exoribonuclease activity	molecular_function	35.4858	71.3135	57.6284	96.6615	103.215	97.4708
+GO:0000179	rRNA (adenine-N6,N6-)-dimethyltransferase activity	molecular_function	11.6088	12.831	10.0897	19.3102	19.6073	19.7291
+GO:0000213	tRNA-intron endonuclease activity	molecular_function	0.265668	0.514297	0	0.411078	0.0597915	0
+GO:0000256	allantoin catabolic process	biological_process	0.0191516	0	0	0	0	0.0947853
+GO:0000270	peptidoglycan metabolic process	biological_process	3.74251	22.5746	12.9726	63.0136	57.2558	69.5533
+GO:0000271	polysaccharide biosynthetic process	biological_process	12.6439	82.0637	66.8783	187.799	171.763	234.555
+GO:0000272	polysaccharide catabolic process	biological_process	274.016	450.016	409.901	1307.84	1243.32	1384.78
+GO:0000286	alanine dehydrogenase activity	molecular_function	0.111701	0.321908	0.103745	0	0.124727	0.0743471
+GO:0000287	magnesium ion binding	molecular_function	795.245	1511.25	1421.82	2903.56	2775.35	2674.32
+GO:0000302	response to reactive oxygen species	biological_process	16.8257	159.381	159.194	520.725	417.94	348.992
+GO:0000309	nicotinamide-nucleotide adenylyltransferase activity	molecular_function	0	0.235748	0.227832	0	0.109621	0.235621
+GO:0000398	mRNA splicing, via spliceosome	biological_process	0	0	0.939701	0.259072	1.13035	1.35099
+GO:0000413	protein peptidyl-prolyl isomerization	biological_process	0.103098	0	0	0	0	0
+GO:0000453	enzyme-directed rRNA 2'-O-methylation	biological_process	4.34228	7.62357	4.26918	22.8476	19.7208	16.7342
+GO:0000703	oxidized pyrimidine nucleobase lesion DNA N-glycosylase activity	molecular_function	0.0757071	0	0	0	0	0
+GO:0000724	double-strand break repair via homologous recombination	biological_process	6.13456	21.2068	21.8854	50.7726	47.1347	58.1933
+GO:0000725	recombinational repair	biological_process	0.00811755	0	0.0450612	0	0	0
+GO:0000737	DNA catabolic process, endonucleolytic	biological_process	0.345944	1.33071	1.63181	0.299909	0.261737	0.177217
+GO:0000738	DNA catabolic process, exonucleolytic	biological_process	0.254901	0.481252	0.691616	0.380786	0.114136	0.333252
+GO:0000774	adenyl-nucleotide exchange factor activity	molecular_function	28.5844	55.9641	68.8548	40.7071	58.7978	75.7606
+GO:0000902	cell morphogenesis	biological_process	170.462	245.005	253.556	423.258	445.638	418.618
+GO:0000906	6,7-dimethyl-8-ribityllumazine synthase activity	molecular_function	8.56327	68.698	34.9726	220.182	158.846	139.034
+GO:0000908	taurine dioxygenase activity	molecular_function	0.0692422	0	0	0	0	0
+GO:0000917	barrier septum assembly	biological_process	562.395	1438.21	1092.57	3281.99	3191.37	4347.55
+GO:0000918	barrier septum site selection	biological_process	70.7561	134.059	117.997	217.905	221.582	178.513
+GO:0000920	cell separation after cytokinesis	biological_process	0.189693	0	0	0	0	0
+GO:0000967	rRNA 5'-end processing	biological_process	54.8621	68.4591	40.1674	185.74	142.982	147.103
+GO:0000986	bacterial-type RNA polymerase core promoter proximal region sequence-specific DNA binding	molecular_function	0.149834	0	0.668882	0	0	0.181971
+GO:0000987	core promoter proximal region sequence-specific DNA binding	molecular_function	0.905059	0	0.261482	0	0	0
+GO:0001046	core promoter sequence-specific DNA binding	molecular_function	0	0	0.261482	0	0	0
+GO:0001047	core promoter binding	molecular_function	0.0604685	0	0	0	0	0
+GO:0001071	nucleic acid binding transcription factor activity	molecular_function	0.175378	0	0	0	0	0
+GO:0001123	transcription initiation from bacterial-type RNA polymerase promoter	biological_process	10.1163	48.7134	29.0438	146.277	129.107	131.229
+GO:0001141	transcriptional repressor activity, bacterial-type RNA polymerase core promoter proximal region sequence-specific binding	molecular_function	0.05675	0	0.096708	0	0	0.0693346
+GO:0001407	glycerophosphodiester transport	biological_process	304.272	363.281	353.967	1322.03	1123.95	903.593
+GO:0001514	selenocysteine incorporation	biological_process	26.2658	27.937	22.6729	21.6123	26.0746	24.3582
+GO:0001516	prostaglandin biosynthetic process	biological_process	0.143394	0	0	0	0	0
+GO:0001522	pseudouridine synthesis	biological_process	67.0471	119.96	104.566	198.826	194.609	262.648
+GO:0001671	ATPase activator activity	molecular_function	0.0933276	0	0	0	0	0
+GO:0001680	tRNA 3'-terminal CCA addition	biological_process	0.0223111	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0001682	tRNA 5'-leader removal	biological_process	9.63527	66.7246	53.3508	188.044	161.343	209.386
+GO:0001727	lipid kinase activity	molecular_function	0	0	0.300724	0	0	0
+GO:0001896	autolysis	biological_process	0.189693	0	0	0	0	0
+GO:0002084	protein depalmitoylation	biological_process	0.17567	0	0	0	0	0
+GO:0002097	tRNA wobble base modification	biological_process	0.0261755	0	0	0	0	0
+GO:0002098	tRNA wobble uridine modification	biological_process	11.6669	11.4624	9.47166	15.5588	18.0673	12.8454
+GO:0002100	tRNA wobble adenosine to inosine editing	biological_process	7.13689	36.7174	27.1322	96.6719	75.5548	111.286
+GO:0002101	tRNA wobble cytosine modification	biological_process	0.0205126	0.0787851	0.096708	0.0419559	0.0366128	0.109176
+GO:0002128	tRNA nucleoside ribose methylation	biological_process	0.0862065	0.103709	0.400725	0.331593	0	0
+GO:0002143	tRNA wobble position uridine thiolation	biological_process	589.263	181.615	207.976	182.976	172.107	156.375
+GO:0002161	aminoacyl-tRNA editing activity	molecular_function	166.763	160.214	136.511	240.741	249.055	215.155
+GO:0002237	response to molecule of bacterial origin	biological_process	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0002935	tRNA (adenine-C2-)-methyltransferase activity	molecular_function	1.7819	11.4019	8.76191	33.2804	31.5624	33.2572
+GO:0002949	tRNA threonylcarbamoyladenosine modification	biological_process	88.7952	92.0569	97.7075	135.088	146.583	143.577
+GO:0003333	amino acid transmembrane transport	biological_process	0.936119	0	1.37101	0	0	0.476772
+GO:0003676	nucleic acid binding	molecular_function	426.432	952.349	765.785	1956.97	1624.62	1797.61
+GO:0003677	DNA binding	molecular_function	3409.82	8558.09	6810.64	11238.7	10927.4	13105.3
+GO:0003678	DNA helicase activity	molecular_function	15.5995	22.9156	15.4146	68.6089	62.6454	49.3182
+GO:0003684	damaged DNA binding	molecular_function	99.057	227.423	239.93	323.345	326.323	340.72
+GO:0003688	DNA replication origin binding	molecular_function	14.7935	28.7931	35.2201	24.5391	31.0386	28.9412
+GO:0003689	DNA clamp loader activity	molecular_function	0.283823	0.741224	0.305686	0.199036	0	0.179513
+GO:0003690	double-stranded DNA binding	molecular_function	18.1782	69.1489	50.944	127.157	126.758	162.839
+GO:0003697	single-stranded DNA binding	molecular_function	247.925	384.875	313.188	867.273	793.898	709.364
+GO:0003700	transcription factor activity, sequence-specific DNA binding	molecular_function	644.52	1497.58	1412.67	2457.29	2382.33	2758.4
+GO:0003723	RNA binding	molecular_function	1277.74	2082.17	1872.97	4052.01	3956.09	4191.3
+GO:0003725	double-stranded RNA binding	molecular_function	11.6965	33.4815	22.1506	49.7842	52.1039	59.8513
+GO:0003729	mRNA binding	molecular_function	86.582	68.476	38.3799	231.6	219.958	151.556
+GO:0003735	structural constituent of ribosome	molecular_function	8229.72	16703.6	10951.1	34605.5	33481.8	37654.3
+GO:0003743	translation initiation factor activity	molecular_function	205.112	285.346	255.318	537.462	534.449	615.502
+GO:0003746	translation elongation factor activity	molecular_function	775.748	1109.04	923.849	2270.08	2178.25	2119.63
+GO:0003755	peptidyl-prolyl cis-trans isomerase activity	molecular_function	28.2401	140.255	106.437	349.05	311.732	343.008
+GO:0003756	protein disulfide isomerase activity	molecular_function	0.0814186	0	0	0	0	0
+GO:0003774	motor activity	molecular_function	16.2424	61.3966	47.2098	457.11	413.752	330.471
+GO:0003796	lysozyme activity	molecular_function	0.145265	0	0	0	0	0.0966933
+GO:0003824	catalytic activity	molecular_function	699.197	1503.87	1318.74	2668.6	2502.15	2406.11
+GO:0003825	alpha,alpha-trehalose-phosphate synthase (UDP-forming) activity	molecular_function	0.162546	0.139181	0	0.0741876	0	0.0482173
+GO:0003839	gamma-glutamylcyclotransferase activity	molecular_function	0	1.46588	1.69992	1.48547	0.477746	0.915255
+GO:0003840	gamma-glutamyltransferase activity	molecular_function	0.0455458	0	0	0	0	0
+GO:0003841	1-acylglycerol-3-phosphate O-acyltransferase activity	molecular_function	5.997	47.2479	28.0874	116.149	110.111	121.998
+GO:0003842	1-pyrroline-5-carboxylate dehydrogenase activity	molecular_function	8.85997	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0003844	1,4-alpha-glucan branching enzyme activity	molecular_function	1.36577	4.09104	3.84514	25.4212	28.2393	28.5431
+GO:0003848	2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity	molecular_function	4.28636	13.559	9.93977	32.4157	24.0066	25.2294
+GO:0003849	3-deoxy-7-phosphoheptulonate synthase activity	molecular_function	4.18625	33.5688	32.7505	51.4121	45.198	55.465
+GO:0003852	2-isopropylmalate synthase activity	molecular_function	5.77365	21.0982	17.482	51.4319	40.8152	33.2226
+GO:0003855	3-dehydroquinate dehydratase activity	molecular_function	1.7619	8.26109	4.24162	17.0606	16.335	19.5741
+GO:0003856	3-dehydroquinate synthase activity	molecular_function	2.023	18.1819	9.45835	61.6524	42.1504	30.753
+GO:0003857	3-hydroxyacyl-CoA dehydrogenase activity	molecular_function	0.172705	0	0	0	0	0.0158461
+GO:0003861	3-isopropylmalate dehydratase activity	molecular_function	5.11868	50.8153	32.7989	155.069	109.228	61.9517
+GO:0003862	3-isopropylmalate dehydrogenase activity	molecular_function	3.44379	16.5553	10.3715	56.3702	42.2949	32.7794
+GO:0003863	3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity	molecular_function	142.466	6.9546	14.7641	3.46147	3.02157	1.69925
+GO:0003864	3-methyl-2-oxobutanoate hydroxymethyltransferase activity	molecular_function	32.1491	17.4858	18.6951	24.7533	29.2347	29.5198
+GO:0003866	3-phosphoshikimate 1-carboxyvinyltransferase activity	molecular_function	12.841	54.9409	52.7328	144.925	144.795	140.053
+GO:0003867	4-aminobutyrate transaminase activity	molecular_function	0.0217764	0	0.079748	0	0	0
+GO:0003871	5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity	molecular_function	0.0427751	0.120138	0.0580519	0.0640157	0.0837516	0.238726
+GO:0003872	6-phosphofructokinase activity	molecular_function	246.242	427.652	315.56	632.778	655.397	447.485
+GO:0003879	ATP phosphoribosyltransferase activity	molecular_function	3.47225	0.569185	1.07263	4.46076	1.15314	1.29614
+GO:0003882	CDP-diacylglycerol-serine O-phosphatidyltransferase activity	molecular_function	0.0402961	0	0	0	0	0
+GO:0003883	CTP synthase activity	molecular_function	85.0452	48.9384	43.9147	76.3557	86.6934	66.9073
+GO:0003886	DNA (cytosine-5-)-methyltransferase activity	molecular_function	0	0	0.14213	0	0	0
+GO:0003887	DNA-directed DNA polymerase activity	molecular_function	208.94	251.833	249.633	367.603	360.568	374.082
+GO:0003896	DNA primase activity	molecular_function	31.9117	71.8558	60.9245	174.967	154.94	163.844
+GO:0003899	DNA-directed RNA polymerase activity	molecular_function	315.524	286.284	219.41	620.194	573.32	520.565
+GO:0003904	deoxyribodipyrimidine photo-lyase activity	molecular_function	0.265935	0.196403	0.151828	0	0.0730737	0
+GO:0003906	DNA-(apurinic or apyrimidinic site) lyase activity	molecular_function	43.758	57.4055	64.016	112.263	116.585	180.632
+GO:0003908	methylated-DNA-[protein]-cysteine S-methyltransferase activity	molecular_function	0	1.01576	2.62726	5.81001	3.04457	5.54017
+GO:0003909	DNA ligase activity	molecular_function	0.090241	0	0.33505	0	0	0
+GO:0003910	DNA ligase (ATP) activity	molecular_function	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0003911	DNA ligase (NAD+) activity	molecular_function	11.2177	13.9555	12.25	25.2956	27.3688	29.0036
+GO:0003917	DNA topoisomerase type I activity	molecular_function	25.3989	31.9729	22.6093	66.8139	68.563	62.5986
+GO:0003918	DNA topoisomerase type II (ATP-hydrolyzing) activity	molecular_function	51.9641	79.4752	72.4523	149.002	141.39	136.825
+GO:0003919	FMN adenylyltransferase activity	molecular_function	13.7662	25.8023	21.7148	53.9423	46.7158	49.7851
+GO:0003922	GMP synthase (glutamine-hydrolyzing) activity	molecular_function	55.8796	57.3625	43.3631	109.841	105.863	84.3984
+GO:0003924	GTPase activity	molecular_function	516.442	833.978	623.205	2022.53	1842.85	1667.25
+GO:0003933	GTP cyclohydrolase activity	molecular_function	0.0602254	0	0.0558868	0.614964	0.671163	0.801358
+GO:0003934	GTP cyclohydrolase I activity	molecular_function	23.8375	54.1174	39.3276	81.2648	80.2505	84.8721
+GO:0003935	GTP cyclohydrolase II activity	molecular_function	2.5136	14.1421	9.7049	36.0382	30.5943	26.5774
+GO:0003937	IMP cyclohydrolase activity	molecular_function	1.77714	2.87719	2.16578	36.5795	28.0121	16.8718
+GO:0003938	IMP dehydrogenase activity	molecular_function	76.3286	98.2007	77.2617	142.423	159.396	125.963
+GO:0003939	L-iditol 2-dehydrogenase activity	molecular_function	1.04194	14.1858	11.3134	21.2411	23.4366	38.7121
+GO:0003941	L-serine ammonia-lyase activity	molecular_function	0.311432	0	0.127967	0	0	0
+GO:0003942	N-acetyl-gamma-glutamyl-phosphate reductase activity	molecular_function	3.32244	9.99179	11.4758	34.818	30.8451	31.0709
+GO:0003949	1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase activity	molecular_function	9.34921	15.8037	14.147	56.881100000000004	53.322	46.7054
+GO:0003951	NAD+ kinase activity	molecular_function	38.0711	86.9837	71.8881	124.413	128.384	161.323
+GO:0003952	NAD+ synthase (glutamine-hydrolyzing) activity	molecular_function	108.632	71.3757	67.867	57.6419	61.0458	58.1782
+GO:0003954	NADH dehydrogenase activity	molecular_function	16.142	53.0885	39.1071	15.0276	21.1058	31.5373
+GO:0003957	NAD(P)+ transhydrogenase (B-specific) activity	molecular_function	0.0953691	0	0.07208	0	0	0.0517099
+GO:0003960	NADPH:quinone reductase activity	molecular_function	0.0582811	0	0	0	0	0
+GO:0003961	O-acetylhomoserine aminocarboxypropyltransferase activity	molecular_function	1.46716	11.5092	9.78537	35.8223	26.6286	19.0933
+GO:0003962	cystathionine gamma-synthase activity	molecular_function	0.0480734	0	0	0	0	0
+GO:0003963	RNA-3'-phosphate cyclase activity	molecular_function	0.281003	0.216099	0.208752	0.345421	0.175555	0.112022
+GO:0003977	UDP-N-acetylglucosamine diphosphorylase activity	molecular_function	23.5292	49.9847	39.6301	131.475	129.738	104.702
+GO:0003978	UDP-glucose 4-epimerase activity	molecular_function	2.80024	27.4436	23.1202	47.0642	55.1477	57.7405
+GO:0003979	UDP-glucose 6-dehydrogenase activity	molecular_function	2.85264	9.02206	7.76041	29.3526	27.1053	28.7812
+GO:0003983	UTP:glucose-1-phosphate uridylyltransferase activity	molecular_function	3.41416	17.7693	10.0443	40.7912	36.3595	50.4016
+GO:0003984	acetolactate synthase activity	molecular_function	12.547	82.7444	56.9879	226.939	186.901	134.24
+GO:0003985	acetyl-CoA C-acetyltransferase activity	molecular_function	26.0746	2.18932	2.51143	2.25821	2.2474	1.57853
+GO:0003987	acetate-CoA ligase activity	molecular_function	0.383591	0.603863	0.128914	0.461639	0	0.431271
+GO:0003988	acetyl-CoA C-acyltransferase activity	molecular_function	0.0471013	0	0.0881829	0	0	0.0626728
+GO:0003989	acetyl-CoA carboxylase activity	molecular_function	42.5974	46.0647	28.977	99.6685	85.102	56.9319
+GO:0003991	acetylglutamate kinase activity	molecular_function	0.871981	2.99197	3.07382	12.1275	5.11625	6.24664
+GO:0003992	N2-acetyl-L-ornithine:2-oxoglutarate 5-aminotransferase activity	molecular_function	1.36353	3.50888	1.84282	18.3242	7.58762	6.43101
+GO:0003993	acid phosphatase activity	molecular_function	20.2842	21.6924	22.903	67.0532	58.2092	73.7884
+GO:0003994	aconitate hydratase activity	molecular_function	1.11551	12.6957	13.5628	26.4564	26.7358	26.7353
+GO:0003995	acyl-CoA dehydrogenase activity	molecular_function	0.178829	0	0.0908442	0	0	0.315563
+GO:0003999	adenine phosphoribosyltransferase activity	molecular_function	88.2354	84.4916	56.7846	100.811	105.061	109.704
+GO:0004000	adenosine deaminase activity	molecular_function	0.028533	0	0	0	0	0
+GO:0004003	ATP-dependent DNA helicase activity	molecular_function	21.3563	49.5754	45.9459	105.668	101.29	111.02
+GO:0004004	ATP-dependent RNA helicase activity	molecular_function	0.160625	0	0.14619	0	0	0.1496
+GO:0004008	copper-exporting ATPase activity	molecular_function	15.9607	6.2729799999999996	12.8348	2.63258	3.93105	6.52706
+GO:0004013	adenosylhomocysteinase activity	molecular_function	21.1712	44.5623	38.2366	107.921	115.536	89.4905
+GO:0004014	adenosylmethionine decarboxylase activity	molecular_function	109.31	260.647	237.286	727.63	738.062	1032.77
+GO:0004015	adenosylmethionine-8-amino-7-oxononanoate transaminase activity	molecular_function	0.10441	0.0762647	0.488592	0.710987	0.726831	0.501964
+GO:0004016	adenylate cyclase activity	molecular_function	0	0	0	0	0	0.0269706
+GO:0004017	adenylate kinase activity	molecular_function	53.9055	24.1066	19.5207	99.7536	64.3065	57.0135
+GO:0004018	N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity	molecular_function	7.46453	23.2638	16.5587	57.9401	53.1651	55.8304
+GO:0004019	adenylosuccinate synthase activity	molecular_function	32.5895	42.6664	38.9489	112.152	129.331	103.879
+GO:0004020	adenylylsulfate kinase activity	molecular_function	0.225858	27.1204	16.2624	73.8219	53.4032	41.2491
+GO:0004021	L-alanine:2-oxoglutarate aminotransferase activity	molecular_function	0.0446465	0	0	0	0	0
+GO:0004022	alcohol dehydrogenase (NAD) activity	molecular_function	0.750704	16.1959	9.79498	72.5495	65.9282	34.2944
+GO:0004029	aldehyde dehydrogenase (NAD) activity	molecular_function	9.20205	7.17812	8.50823	2.55001	3.206	4.34188
+GO:0004030	aldehyde dehydrogenase [NAD(P)+] activity	molecular_function	0.229819	2.94146	1.49279	7.42607	6.99288	7.20601
+GO:0004033	aldo-keto reductase (NADP) activity	molecular_function	0.0585242	0	0	0	0	0.114189
+GO:0004034	aldose 1-epimerase activity	molecular_function	0.0545626	0	0	0	0	0
+GO:0004038	allantoinase activity	molecular_function	0.0191516	0	0	0	0	0.0947853
+GO:0004040	amidase activity	molecular_function	1.68811	0.933472	0.83776	0.0826185	0.144693	0.0478939
+GO:0004042	acetyl-CoA:L-glutamate N-acetyltransferase activity	molecular_function	1.1043	4.14886	2.72961	15.0146	12.9854	11.9995
+GO:0004044	amidophosphoribosyltransferase activity	molecular_function	1.86755	2.69591	1.30908	15.1093	20.3495	15.4024
+GO:0004045	aminoacyl-tRNA hydrolase activity	molecular_function	6.36462	14.3745	10.0405	21.2001	22.0775	21.9274
+GO:0004047	aminomethyltransferase activity	molecular_function	124.331	83.1919	115.231	65.8005	80.3797	46.756100000000004
+GO:0004048	anthranilate phosphoribosyltransferase activity	molecular_function	4.33166	28.4774	61.0337	96.97	64.4137	67.108
+GO:0004049	anthranilate synthase activity	molecular_function	1.55218	8.84292	23.5143	51.5684	39.9968	92.2143
+GO:0004055	argininosuccinate synthase activity	molecular_function	1.17517	2.45821	1.64106	15.2995	6.41909	8.54216
+GO:0004056	argininosuccinate lyase activity	molecular_function	1.83717	2.88611	1.24525	13.0639	7.671	6.69098
+GO:0004061	arylformamidase activity	molecular_function	15.886	13.0764	8.93453	11.7272	10.8371	8.93229
+GO:0004065	arylsulfatase activity	molecular_function	0.0322758	0	0.0299506	0	0	0
+GO:0004066	asparagine synthase (glutamine-hydrolyzing) activity	molecular_function	0.134644	0.294744	0.393102	0.441022	0.239665	0.58155
+GO:0004067	asparaginase activity	molecular_function	29.9682	18.1148	17.6332	4.86452	8.85206	14.2585
+GO:0004068	aspartate 1-decarboxylase activity	molecular_function	32.504	41.5762	38.7524	55.2408	50.9581	53.1722
+GO:0004069	L-aspartate:2-oxoglutarate aminotransferase activity	molecular_function	50.4774	29.3386	45.1778	59.485	63.9703	91.9904
+GO:0004070	aspartate carbamoyltransferase activity	molecular_function	2.58926	6.44138	8.27571	10.3553	12.5279	16.1536
+GO:0004071	aspartate-ammonia ligase activity	molecular_function	11.4358	40.0307	28.164	51.3344	51.4781	42.8385
+GO:0004072	aspartate kinase activity	molecular_function	1.67487	14.9357	11.6974	57.2145	53.2435	48.8094
+GO:0004073	aspartate-semialdehyde dehydrogenase activity	molecular_function	2.6359	7.94898	9.45118	21.4539	25.7057	25.8035
+GO:0004075	biotin carboxylase activity	molecular_function	0.223792	0.175073	0.422421	0.262579	0.130934	0.346511
+GO:0004076	biotin synthase activity	molecular_function	0.059788	0.287043	0.219803	0.64155	0.879272	1.82951
+GO:0004077	biotin-[acetyl-CoA-carboxylase] ligase activity	molecular_function	115.225	176.381	339.463	77.3808	89.5301	71.541
+GO:0004088	carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity	molecular_function	2.16722	9.60753	6.90132	32.7295	32.6151	27.3906
+GO:0004089	carbonate dehydratase activity	molecular_function	0.189401	0.229307	0.412813	0.392003	0.113919	0.848346
+GO:0004096	catalase activity	molecular_function	0.0460319	0	0	0	0	0
+GO:0004106	chorismate mutase activity	molecular_function	0.237451	0	0.306859	0	0.420168	0.432759
+GO:0004107	chorismate synthase activity	molecular_function	6.57233	26.1658	18.0742	71.8463	57.087	73.5215
+GO:0004108	citrate (Si)-synthase activity	molecular_function	0.0206827	0	0	0	0	0
+GO:0004109	coproporphyrinogen oxidase activity	molecular_function	0.595133	5.12201	2.98933	9.71208	10.8358	8.56095
+GO:0004112	cyclic-nucleotide phosphodiesterase activity	molecular_function	0.04924	0	0.049932699999999997	0	0	0
+GO:0004113	2',3'-cyclic-nucleotide 3'-phosphodiesterase activity	molecular_function	12.351	21.541	20.1844	35.4765	30.2323	39.7342
+GO:0004121	cystathionine beta-lyase activity	molecular_function	0.0234048	0	0.0854314	0	0	0
+GO:0004124	cysteine synthase activity	molecular_function	13.9511	951.259	651.524	1458.96	1283.43	1106.34
+GO:0004125	L-seryl-tRNASec selenium transferase activity	molecular_function	14.1724	16.9223	13.8159	13.3391	14.8082	17.0092
+GO:0004126	cytidine deaminase activity	molecular_function	10.7453	22.0696	12.621	58.5388	56.106	59.8113
+GO:0004127	cytidylate kinase activity	molecular_function	29.1597	70.0256	41.3772	131.41	149.503	148.496
+GO:0004129	cytochrome-c oxidase activity	molecular_function	0.196595	0	0	0	0	0
+GO:0004130	cytochrome-c peroxidase activity	molecular_function	0.198613	0	0.071674	0	0	0
+GO:0004133	glycogen debranching enzyme activity	molecular_function	0.079936	0	0.148355	0	0	0
+GO:0004134	4-alpha-glucanotransferase activity	molecular_function	1.11361	8.18431	6.03654	29.6421	28.7723	30.4393
+GO:0004135	amylo-alpha-1,6-glucosidase activity	molecular_function	1.08846	8.18431	6.03654	29.6421	28.7723	30.4393
+GO:0004139	deoxyribose-phosphate aldolase activity	molecular_function	21.7813	36.7928	23.142	73.7219	53.9873	77.8534
+GO:0004140	dephospho-CoA kinase activity	molecular_function	12.0787	18.9319	12.4949	35.1591	34.8163	33.8897
+GO:0004141	dethiobiotin synthase activity	molecular_function	0.0830956	0	0	0.339875	0.296787	0.781631
+GO:0004146	dihydrofolate reductase activity	molecular_function	4.66723	34.7584	21.8931	95.8256	97.9612	69.4259
+GO:0004148	dihydrolipoyl dehydrogenase activity	molecular_function	1.81986	2.76564	3.26326	2.90617	2.96503	2.71446
+GO:0004149	dihydrolipoyllysine-residue succinyltransferase activity	molecular_function	202.561	37.4275	53.072	10.7665	10.0237	12.0631
+GO:0004150	dihydroneopterin aldolase activity	molecular_function	2.14257	8.11743	7.03361	21.9546	18.4385	14.7306
+GO:0004151	dihydroorotase activity	molecular_function	4.72378	10.3704	11.1362	23.7179	29.9003	35.5177
+GO:0004152	dihydroorotate dehydrogenase activity	molecular_function	1.00087	5.48275	4.48253	21.5487	15.862	14.4945
+GO:0004156	dihydropteroate synthase activity	molecular_function	11.6509	24.6489	16.2992	37.4908	40.0982	34.1645
+GO:0004159	dihydrouracil dehydrogenase (NAD+) activity	molecular_function	0	0	0.0414076	0	0	0.0593419
+GO:0004160	dihydroxy-acid dehydratase activity	molecular_function	2.69228	21.5619	14.1144	60.9622	49.6559	40.3256
+GO:0004161	dimethylallyltranstransferase activity	molecular_function	0.129589	0	0	0	0	0
+GO:0004164	diphthine synthase activity	molecular_function	0	0	0.139875	0	0	0.200404
+GO:0004165	dodecenoyl-CoA delta-isomerase activity	molecular_function	0.0357513	0	0	0	0	0.0158461
+GO:0004170	dUTP diphosphatase activity	molecular_function	6.86179	13.9657	7.89036	6.861	7.74195	11.9597
+GO:0004175	endopeptidase activity	molecular_function	0.691475	0.781783	0.453319	0.166505	0.217876	1.11967
+GO:0004176	ATP-dependent peptidase activity	molecular_function	20.5285	33.9929	30.5671	72.8249	72.1685	80.8015
+GO:0004177	aminopeptidase activity	molecular_function	39.1428	73.8769	69.7048	147.701	137.644	115.584
+GO:0004180	carboxypeptidase activity	molecular_function	0.0897063	0	0	0	0	0.0341175
+GO:0004181	metallocarboxypeptidase activity	molecular_function	33.8926	23.6485	24.7139	38.9734	42.7442	26.4803
+GO:0004190	aspartic-type endopeptidase activity	molecular_function	129.999	157.683	114.689	414.006	346.957	347.474
+GO:0004222	metalloendopeptidase activity	molecular_function	298.488	314.493	362.198	394.994	398.718	395.555
+GO:0004252	serine-type endopeptidase activity	molecular_function	528.585	631.27	790.361	789.634	766.582	924.796
+GO:0004298	threonine-type endopeptidase activity	molecular_function	0.790368	1.07172	0.82689	0.629488	0.217876	1.23341
+GO:0004300	enoyl-CoA hydratase activity	molecular_function	0.0966572	0	0	0	0	0.0158461
+GO:0004309	exopolyphosphatase activity	molecular_function	0.0349249	0	0.0648178	0	0	0
+GO:0004314	[acyl-carrier-protein] S-malonyltransferase activity	molecular_function	4.29596	11.3359	4.24667	85.2315	53.6559	45.0018
+GO:0004315	3-oxoacyl-[acyl-carrier-protein] synthase activity	molecular_function	58.1247	78.6508	60.8731	252.883	205.611	193.207
+GO:0004316	3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity	molecular_function	124.386	21.9544	22.4812	85.7214	73.7649	60.3506
+GO:0004318	enoyl-[acyl-carrier-protein] reductase (NADH) activity	molecular_function	1.23664	9.73149	5.3981	27.9807	25.9851	38.4535
+GO:0004322	ferroxidase activity	molecular_function	0	0	0.27587	0	0	0.197785
+GO:0004324	ferredoxin-NADP+ reductase activity	molecular_function	0.0814186	0	0.453319	0	0	0
+GO:0004325	ferrochelatase activity	molecular_function	0.119552	0	0	0	0	0
+GO:0004326	tetrahydrofolylpolyglutamate synthase activity	molecular_function	79.2327	67.9008	49.7731	92.6533	82.5277	77.2093
+GO:0004329	formate-tetrahydrofolate ligase activity	molecular_function	119.647	41.7646	80.5289	49.7622	58.2234	57.1982
+GO:0004332	fructose-bisphosphate aldolase activity	molecular_function	70.5795	253.916	185.44	531.912	522.567	515.621
+GO:0004333	fumarate hydratase activity	molecular_function	0	0	0.06784	0	0	0.042752
+GO:0004337	geranyltranstransferase activity	molecular_function	2.82965	13.6808	8.69064	41.837	38.7719	33.1491
+GO:0004340	glucokinase activity	molecular_function	31.9038	38.3485	36.5988	39.8729	59.346	47.8904
+GO:0004342	glucosamine-6-phosphate deaminase activity	molecular_function	0.244256	0	0	0	0	0.0564314
+GO:0004345	glucose-6-phosphate dehydrogenase activity	molecular_function	0.0366505	0	0.0680204	0	0	0
+GO:0004347	glucose-6-phosphate isomerase activity	molecular_function	104.263	48.599	49.028	77.4051	82.4134	70.9836
+GO:0004348	glucosylceramidase activity	molecular_function	1.10134	2.62324	4.47595	5.63485	5.90085	6.5278
+GO:0004349	glutamate 5-kinase activity	molecular_function	1.34997	13.8472	9.75601	30.13	25.187	30.716
+GO:0004350	glutamate-5-semialdehyde dehydrogenase activity	molecular_function	9.73207	35.5493	23.6101	77.5871	69.8801	71.8028
+GO:0004351	glutamate decarboxylase activity	molecular_function	0.27867	0	0	0	0	0.0517099
+GO:0004352	glutamate dehydrogenase (NAD+) activity	molecular_function	4.32724	174.766	121.684	499.061	586.866	816.546
+GO:0004353	glutamate dehydrogenase [NAD(P)+] activity	molecular_function	21.4938	24.2408	42.0628	7.5644	12.1989	20.408
+GO:0004355	glutamate synthase (NADPH) activity	molecular_function	0.40753	4.7306	12.0713	16.1417	23.6913	30.6714
+GO:0004356	glutamate-ammonia ligase activity	molecular_function	92.8436	92.2578	139.119	146.964	155.341	163.772
+GO:0004357	glutamate-cysteine ligase activity	molecular_function	0.0496775	0	0	0	0	0
+GO:0004358	glutamate N-acetyltransferase activity	molecular_function	1.1043	4.14886	2.72961	15.0146	12.9854	11.9995
+GO:0004359	glutaminase activity	molecular_function	4.05708	3.31775	3.56647	5.77153	5.01192	3.27295
+GO:0004360	glutamine-fructose-6-phosphate transaminase (isomerizing) activity	molecular_function	19.441	17.737	11.7986	51.7246	42.9469	34.2831
+GO:0004362	glutathione-disulfide reductase activity	molecular_function	0.0403933	0	0.0750119	0	0	0
+GO:0004363	glutathione synthase activity	molecular_function	0.0606872	0	0.338929	0	0	0
+GO:0004364	glutathione transferase activity	molecular_function	0.197665	0	0	0	0	0
+GO:0004365	glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity	molecular_function	89.8909	546.388	388.846	1015.19	1142.3	899.819
+GO:0004367	glycerol-3-phosphate dehydrogenase [NAD+] activity	molecular_function	1.81461	8.36484	5.71376	33.8568	32.5297	24.5134
+GO:0004370	glycerol kinase activity	molecular_function	15.8454	19.7167	22.529	11.7532	15.0919	14.8093
+GO:0004371	glycerone kinase activity	molecular_function	44.0015	40.5883	39.0635	39.6642	46.5421	34.0434
+GO:0004372	glycine hydroxymethyltransferase activity	molecular_function	25.3314	64.9289	48.212	188.888	198.919	156.268
+GO:0004373	glycogen (starch) synthase activity	molecular_function	28.4469	41.8189	33.0288	199.654	191.763	161.329
+GO:0004375	glycine dehydrogenase (decarboxylating) activity	molecular_function	476.331	101.139	151.15	106.948	128.231	86.6769
+GO:0004385	guanylate kinase activity	molecular_function	12.9047	48.9749	47.9139	93.6561	107.431	92.6339
+GO:0004386	helicase activity	molecular_function	132.18	143.155	149.244	250.671	249.017	213.747
+GO:0004399	histidinol dehydrogenase activity	molecular_function	6.96807	3.66701	2.57124	6.01322	5.07631	10.029
+GO:0004400	histidinol-phosphate transaminase activity	molecular_function	4.66186	1.96286	3.3081	6.29222	5.70507	11.4018
+GO:0004401	histidinol-phosphatase activity	molecular_function	8.75213	17.6751	9.03607	29.263	29.2011	25.5037
+GO:0004410	homocitrate synthase activity	molecular_function	0	0.18198	0.0879123	0.242384	0.0846197	0
+GO:0004412	homoserine dehydrogenase activity	molecular_function	2.80816	14.3564	11.865	43.6285	51.0902	50.2207
+GO:0004413	homoserine kinase activity	molecular_function	0	0	0.115202	0	0	0
+GO:0004414	homoserine O-acetyltransferase activity	molecular_function	0.120013	0.40284	0.333381	0.368252	0	0.239502
+GO:0004416	hydroxyacylglutathione hydrolase activity	molecular_function	0.226611	0	0.148851	0	0	0
+GO:0004417	hydroxyethylthiazole kinase activity	molecular_function	0.0366505	0.0703838	0	0.0750332	0	0
+GO:0004418	hydroxymethylbilane synthase activity	molecular_function	0.294711	3.26552	4.38637	6.47436	5.09181	5.94657
+GO:0004420	hydroxymethylglutaryl-CoA reductase (NADPH) activity	molecular_function	0.0465666	0.357427	0	0.0476512	0.12349	0.0309807
+GO:0004421	hydroxymethylglutaryl-CoA synthase activity	molecular_function	0.189037	0.259319	0	0.193415	0.192787	0.215506
+GO:0004422	hypoxanthine phosphoribosyltransferase activity	molecular_function	11.2252	23.3354	22.5036	63.1679	54.5876	82.1806
+GO:0004424	imidazoleglycerol-phosphate dehydratase activity	molecular_function	4.49285	14.39	9.9759	45.0464	43.9294	63.8579
+GO:0004425	indole-3-glycerol-phosphate synthase activity	molecular_function	2.8671	24.0192	61.7953	115.814	61.7092	41.9086
+GO:0004427	inorganic diphosphatase activity	molecular_function	350.8	83.3802	135.248	38.1076	46.9168	53.8643
+GO:0004450	isocitrate dehydrogenase (NADP+) activity	molecular_function	2.75644	47.411	32.8214	119.773	121.21	121.8
+GO:0004452	isopentenyl-diphosphate delta-isomerase activity	molecular_function	0.121836	0	0	0.440599	0	0.071857
+GO:0004455	ketol-acid reductoisomerase activity	molecular_function	5.5746	46.0472	23.3364	155.774	140.058	110.42
+GO:0004457	lactate dehydrogenase activity	molecular_function	0.048681	0	0	0	0	0
+GO:0004459	L-lactate dehydrogenase activity	molecular_function	3.46493	69.7876	42.5249	207.81	224.645	241.768
+GO:0004462	lactoylglutathione lyase activity	molecular_function	0	0	0	0	0	0.198108
+GO:0004467	long-chain fatty acid-CoA ligase activity	molecular_function	1.53993	10.064	9.61261	31.4217	29.0526	26.3609
+GO:0004471	malate dehydrogenase (decarboxylating) (NAD+) activity	molecular_function	15.3671	50.5356	33.2483	177.603	174.043	126.867
+GO:0004473	malate dehydrogenase (decarboxylating) (NADP+) activity	molecular_function	0.0227	0	0	0	0	0
+GO:0004474	malate synthase activity	molecular_function	0.18194	0	0	0	0	0.0160078
+GO:0004476	mannose-6-phosphate isomerase activity	molecular_function	103.536	37.9514	41.048	45.3343	54.8784	45.6979
+GO:0004477	methenyltetrahydrofolate cyclohydrolase activity	molecular_function	23.0533	41.1356	33.947	78.8582	83.0937	94.738
+GO:0004478	methionine adenosyltransferase activity	molecular_function	30.3955	35.7417	25.0474	107.259	143.902	106.667
+GO:0004479	methionyl-tRNA formyltransferase activity	molecular_function	4.75229	10.9253	5.62521	26.5985	30.65	25.5119
+GO:0004488	methylenetetrahydrofolate dehydrogenase (NADP+) activity	molecular_function	13.5779	32.8006	25.4072	73.6046	77.7536	89.2432
+GO:0004489	methylenetetrahydrofolate reductase (NAD(P)H) activity	molecular_function	2.36653	10.5936	8.30787	24.0351	24.7279	32.9358
+GO:0004492	methylmalonyl-CoA decarboxylase activity	molecular_function	0.0764362	0	0	0	0	0
+GO:0004493	methylmalonyl-CoA epimerase activity	molecular_function	11.3162	8.23365	8.48653	14.4089	14.1878	7.84829
+GO:0004494	methylmalonyl-CoA mutase activity	molecular_function	36.1934	30.2736	36.8775	35.6744	41.2843	29.5255
+GO:0004496	mevalonate kinase activity	molecular_function	0.0638711	0	0	0.0326296	0.0569702	0
+GO:0004497	monooxygenase activity	molecular_function	0.0551702	0	0	0	0	0
+GO:0004512	inositol-3-phosphate synthase activity	molecular_function	0.152362	0.292504	0.471046	1.14353	0.702936	2.02296
+GO:0004514	nicotinate-nucleotide diphosphorylase (carboxylating) activity	molecular_function	92.4722	69.951	93.7577	88.199	92.6728	58.3897
+GO:0004515	nicotinate-nucleotide adenylyltransferase activity	molecular_function	5.16524	22.0643	22.6749	38.5979	38.7505	54.7259
+GO:0004516	nicotinate phosphoribosyltransferase activity	molecular_function	1.62198	3.20363	4.54108	9.51954	9.20165	8.52078
+GO:0004518	nuclease activity	molecular_function	77.3728	93.3309	56.1026	224.991	181.458	180.928
+GO:0004519	endonuclease activity	molecular_function	62.1174	164.86	135.311	262.907	242.37	291.577
+GO:0004520	endodeoxyribonuclease activity	molecular_function	0.117413	0	0	0	0	0
+GO:0004521	endoribonuclease activity	molecular_function	63.9481	134.103	113.639	360.91	348.532	311.535
+GO:0004523	RNA-DNA hybrid ribonuclease activity	molecular_function	18.1838	59.4974	46.736	141.549	133.274	102.938
+GO:0004525	ribonuclease III activity	molecular_function	4.14681	40.0227	24.6458	88.8496	77.3832	115.279
+GO:0004526	ribonuclease P activity	molecular_function	9.63527	66.7246	53.3508	188.044	161.343	209.386
+GO:0004527	exonuclease activity	molecular_function	17.8597	40.733	42.542	51.0698	50.6377	39.4089
+GO:0004530	deoxyribonuclease I activity	molecular_function	0.0871057	0	0	0	0	0.0579513
+GO:0004534	5'-3' exoribonuclease activity	molecular_function	0.768105	10.3592	7.60394	30.4662	30.5283	29.2885
+GO:0004540	ribonuclease activity	molecular_function	3.7098	22.6071	16.4999	76.4092	73.2016	75.7355
+GO:0004549	tRNA-specific ribonuclease activity	molecular_function	3.27018	22.0906	19.5707	49.8565	44.7456	41.7264
+GO:0004550	nucleoside diphosphate kinase activity	molecular_function	164.016	295.443	240.466	234.904	242.374	313.401
+GO:0004553	hydrolase activity, hydrolyzing O-glycosyl compounds	molecular_function	274.423	464.875	431.3	1172.49	1123.65	1188.03
+GO:0004555	alpha,alpha-trehalase activity	molecular_function	0.0972162	0	0.222825	0	0	0
+GO:0004556	alpha-amylase activity	molecular_function	102.101	40.8794	52.6217	38.4827	41.8009	33.3908
+GO:0004557	alpha-galactosidase activity	molecular_function	0.0402961	0	0	0	0	0
+GO:0004558	alpha-1,4-glucosidase activity	molecular_function	0.016867	0	0	0	0	0
+GO:0004559	alpha-mannosidase activity	molecular_function	0	0	0	0	0	0.0327593
+GO:0004563	beta-N-acetylhexosaminidase activity	molecular_function	1.49941	2.15053	0.493599	4.32845	4.25251	5.26529
+GO:0004565	beta-galactosidase activity	molecular_function	2179.04	0	768.067	0	0	225.731
+GO:0004568	chitinase activity	molecular_function	5.29947	8.80582	9.09723	23.3712	19.9315	20.0054
+GO:0004576	oligosaccharyl transferase activity	molecular_function	0.228774	0.391592	0.231305	0.153225	0.327671	0.202312
+GO:0004585	ornithine carbamoyltransferase activity	molecular_function	53.6485	19.2095	22.6192	28.2534	29.7609	20.1494
+GO:0004586	ornithine decarboxylase activity	molecular_function	0.0726691	0	0.0220119	0	0	0
+GO:0004588	orotate phosphoribosyltransferase activity	molecular_function	6.57437	7.53597	4.54302	2.85658	4.37357	3.38339
+GO:0004589	orotate reductase (NADH) activity	molecular_function	0.944407	5.48275	4.48253	21.5487	15.862	14.4945
+GO:0004590	orotidine-5'-phosphate decarboxylase activity	molecular_function	2.30925	4.5419	3.98668	8.84449	13.5307	12.868
+GO:0004591	oxoglutarate dehydrogenase (succinyl-transferring) activity	molecular_function	0.00916263	0	0	0	0	0
+GO:0004592	pantoate-beta-alanine ligase activity	molecular_function	32.396	35.9722	30.1788	63.4443	64.2297	63.933
+GO:0004594	pantothenate kinase activity	molecular_function	33.3553	106.926	87.0918	223.061	209.44	187.462
+GO:0004595	pantetheine-phosphate adenylyltransferase activity	molecular_function	17.8463	82.5294	71.6573	99.9808	102.05	117.836
+GO:0004596	peptide alpha-N-acetyltransferase activity	molecular_function	0.0736413	0	0.135454	0	0	0
+GO:0004601	peroxidase activity	molecular_function	283.434	790.92	656.057	983.834	959.239	1222.1
+GO:0004604	phosphoadenylyl-sulfate reductase (thioredoxin) activity	molecular_function	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0004605	phosphatidate cytidylyltransferase activity	molecular_function	39.0069	30.7983	30.6151	37.2582	38.9489	27.505
+GO:0004609	phosphatidylserine decarboxylase activity	molecular_function	0.0296752	0.35766	0.172802	0.19058	0.415611	0.803427
+GO:0004612	phosphoenolpyruvate carboxykinase (ATP) activity	molecular_function	189.959	47.5127	106.482	7.40456	7.98654	10.4568
+GO:0004613	phosphoenolpyruvate carboxykinase (GTP) activity	molecular_function	3.81639	65.064	74.5875	230.114	193.526	182.721
+GO:0004614	phosphoglucomutase activity	molecular_function	4.60829	38.8424	31.8566	98.9275	100.38	84.5695
+GO:0004615	phosphomannomutase activity	molecular_function	18.1422	23.6157	39.1816	17.2282	21.1682	17.1783
+GO:0004616	phosphogluconate dehydrogenase (decarboxylating) activity	molecular_function	0.128496	0	0.118855	0	0	0
+GO:0004617	phosphoglycerate dehydrogenase activity	molecular_function	0.0564826	0.326855	0.126027	0.191276	0.334051	0.724488
+GO:0004618	phosphoglycerate kinase activity	molecular_function	116.198	275.861	308.669	351.709	403.418	257.999
+GO:0004619	phosphoglycerate mutase activity	molecular_function	0.0757071	0	0	0	0	0
+GO:0004622	lysophospholipase activity	molecular_function	0.0556806	0	0	0	0	0
+GO:0004632	phosphopantothenate--cysteine ligase activity	molecular_function	6.30447	18.6416	12.7659	39.1608	40.3548	32.1954
+GO:0004633	phosphopantothenoylcysteine decarboxylase activity	molecular_function	6.30447	18.6416	12.7659	39.1608	40.3548	32.1954
+GO:0004634	phosphopyruvate hydratase activity	molecular_function	49.83	66.6584	66.4705	147.031	140.778	92.7014
+GO:0004635	phosphoribosyl-AMP cyclohydrolase activity	molecular_function	5.267	13.1668	7.12207	42.6483	37.7056	32.5569
+GO:0004636	phosphoribosyl-ATP diphosphatase activity	molecular_function	5.61176	12.643	7.12207	42.0802	37.3034	32.0724
+GO:0004637	phosphoribosylamine-glycine ligase activity	molecular_function	2.48142	3.38472	3.38465	42.8434	25.7529	20.9748
+GO:0004638	phosphoribosylaminoimidazole carboxylase activity	molecular_function	0.0529585	0	0.0982867	0	0	0
+GO:0004639	phosphoribosylaminoimidazolesuccinocarboxamide synthase activity	molecular_function	17.3501	35.4669	27.5697	67.8205	87.798	89.602
+GO:0004640	phosphoribosylanthranilate isomerase activity	molecular_function	19.0113	91.8732	205.588	214.157	99.8994	114.056
+GO:0004641	phosphoribosylformylglycinamidine cyclo-ligase activity	molecular_function	3.36893	8.12476	4.4925	74.1799	64.9073	47.7997
+GO:0004642	phosphoribosylformylglycinamidine synthase activity	molecular_function	40.4669	27.1087	32.3531	38.7605	50.4463	39.8071
+GO:0004643	phosphoribosylaminoimidazolecarboxamide formyltransferase activity	molecular_function	1.61829	2.87719	2.16578	36.1461	27.8234	16.8718
+GO:0004644	phosphoribosylglycinamide formyltransferase activity	molecular_function	2.68215	4.85765	2.51355	51.3108	40.3012	35.1897
+GO:0004645	phosphorylase activity	molecular_function	31.3666	24.7419	28.296	34.0698	41.2712	25.1916
+GO:0004647	phosphoserine phosphatase activity	molecular_function	0.145095	0.348792	0.379841	0.260216	0.388699	0.453036
+GO:0004648	O-phospho-L-serine:2-oxoglutarate aminotransferase activity	molecular_function	3.83627	38.8084	30.0663	82.1011	81.3638	64.717
+GO:0004652	polynucleotide adenylyltransferase activity	molecular_function	0	0	0.0742451	0	0	0
+GO:0004654	polyribonucleotide nucleotidyltransferase activity	molecular_function	35.2737	69.6844	56.928	96.3141	102.988	96.85
+GO:0004655	porphobilinogen synthase activity	molecular_function	0.146456	17.2936	11.1226	18.964	18.7636	29.1318
+GO:0004657	proline dehydrogenase activity	molecular_function	0.00636766	0	0	0	0	0
+GO:0004658	propionyl-CoA carboxylase activity	molecular_function	39.7308	24.1489	20.9167	25.6852	28.76	20.2805
+GO:0004659	prenyltransferase activity	molecular_function	57.9151	60.4989	52.4815	61.4978	60.2769	75.1739
+GO:0004664	prephenate dehydratase activity	molecular_function	2.13837	18.4487	13.3233	48.7579	38.0421	46.1078
+GO:0004665	prephenate dehydrogenase (NADP+) activity	molecular_function	3.62641	16.9319	12.9249	61.6974	63.1192	58.5705
+GO:0004672	protein kinase activity	molecular_function	82.9682	264.399	288.997	198.194	247.208	270.261
+GO:0004673	protein histidine kinase activity	molecular_function	18.1018	109.279	82.1481	263.852	275.351	238.539
+GO:0004674	protein serine/threonine kinase activity	molecular_function	24.267	61.5723	51.0405	128.185	132.321	132.252
+GO:0004683	calmodulin-dependent protein kinase activity	molecular_function	0.0556077	0	0	0	0	0.0246746
+GO:0004712	protein serine/threonine/tyrosine kinase activity	molecular_function	0.116927	0.192435	0.0620212	0.136711	0.178984	0.0888996
+GO:0004713	protein tyrosine kinase activity	molecular_function	0.0241339	0	0.0892204	0	0	0
+GO:0004715	non-membrane spanning protein tyrosine kinase activity	molecular_function	0.0810054	0.0778049	0.150339	0.41451	0.434058	1.2931
+GO:0004719	protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	molecular_function	0.198345	0	0.714034	0.19739399999999999	0.0430586	0
+GO:0004721	phosphoprotein phosphatase activity	molecular_function	25.5691	43.7269	34.6039	34.0487	43.6273	31.86
+GO:0004722	protein serine/threonine phosphatase activity	molecular_function	15.2474	47.8396	53.3818	96.0903	95.2539	97.1181
+GO:0004725	protein tyrosine phosphatase activity	molecular_function	19.8057	70.367	65.5947	78.3262	101.396	112.96
+GO:0004730	pseudouridylate synthase activity	molecular_function	2.14196	3.38192	3.26796	1.73579	2.60042	1.87404
+GO:0004731	purine-nucleoside phosphorylase activity	molecular_function	30.3905	38.8967	35.7072	63.9523	73.6396	72.4447
+GO:0004733	pyridoxamine-phosphate oxidase activity	molecular_function	5.39805	61.2934	55.7947	115.922	119.456	182.261
+GO:0004735	pyrroline-5-carboxylate reductase activity	molecular_function	2.63074	20.7372	19.5061	49.7949	43.2229	37.9231
+GO:0004736	pyruvate carboxylase activity	molecular_function	3.97206	6.56217	6.13248	5.92842	7.02226	5.31845
+GO:0004739	pyruvate dehydrogenase (acetyl-transferring) activity	molecular_function	1.98204	0	0	0.176379	0.10259	0
+GO:0004743	pyruvate kinase activity	molecular_function	82.4715	172.006	221.728	91.3702	114.013	90.918
+GO:0004746	riboflavin synthase activity	molecular_function	1.34139	13.4274	6.95806	26.1803	24.0623	18.8649
+GO:0004747	ribokinase activity	molecular_function	1.86507	2.57876	3.79218	1.50907	1.03469	2.71194
+GO:0004748	ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor	molecular_function	48.5727	48.3415	40.6825	56.5845	51.2294	41.7677
+GO:0004749	ribose phosphate diphosphokinase activity	molecular_function	25.8198	63.8724	47.9149	154.152	158.062	149.163
+GO:0004750	ribulose-phosphate 3-epimerase activity	molecular_function	5.39212	17.1768	8.44522	56.377	46.561	70.8909
+GO:0004751	ribose-5-phosphate isomerase activity	molecular_function	49.8821	125.483	124.917	251.367	258.034	317.351
+GO:0004756	selenide, water dikinase activity	molecular_function	6.75728	11.4487	13.667	8.41754	10.591	12.1338
+GO:0004760	serine-pyruvate transaminase activity	molecular_function	0.675045	12.1893	8.1666	8.05742	7.65503	4.29156
+GO:0004764	shikimate 3-dehydrogenase (NADP+) activity	molecular_function	1.88687	8.3528	5.09463	37.9082	41.0562	40.5462
+GO:0004765	shikimate kinase activity	molecular_function	7.55472	58.3682	28.9213	154.207	70.8	273.978
+GO:0004766	spermidine synthase activity	molecular_function	100.619	101.487	103.968	119.159	141.2	107.879
+GO:0004775	succinate-CoA ligase (ADP-forming) activity	molecular_function	0.235458	0.0984813	0.0935055	0.094208	0.210171	0.0682351
+GO:0004777	succinate-semialdehyde dehydrogenase (NAD+) activity	molecular_function	0.0781861	0	0	0	0	0
+GO:0004781	sulfate adenylyltransferase (ATP) activity	molecular_function	0.178149	0	0	0	0	0
+GO:0004783	sulfite reductase (NADPH) activity	molecular_function	0.119503	0	0	0	0	0
+GO:0004784	superoxide dismutase activity	molecular_function	4.87415	1.27629	1.8808	1.06317	1.15297	0.676271
+GO:0004788	thiamine diphosphokinase activity	molecular_function	5.79525	3.55924	3.07797	2.52561	2.80879	2.53226
+GO:0004789	thiamine-phosphate diphosphorylase activity	molecular_function	0.554497	3.12984	6.74746	2.2554	2.32566	2.70114
+GO:0004791	thioredoxin-disulfide reductase activity	molecular_function	64.0547	73.3668	63.4653	101.291	87.2444	71.0648
+GO:0004792	thiosulfate sulfurtransferase activity	molecular_function	1.44726	2.16575	0	0	0	0.173886
+GO:0004794	L-threonine ammonia-lyase activity	molecular_function	0.231423	0	0.0536766	0	0	0
+GO:0004795	threonine synthase activity	molecular_function	9.81458	60.0156	53.8604	131.371	126.084	142.377
+GO:0004797	thymidine kinase activity	molecular_function	18.8045	14.4913	14.601	13.952	18.8738	12.0016
+GO:0004798	thymidylate kinase activity	molecular_function	8.03055	8.03234	10.5069	23.3999	22.1419	20.7716
+GO:0004799	thymidylate synthase activity	molecular_function	4.57164	26.1716	19.7148	62.82	64.2457	71.0197
+GO:0004801	sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity	molecular_function	135.498	314.936	341.745	128.573	149.254	152.303
+GO:0004802	transketolase activity	molecular_function	0.0263942	0	0	0	0	0
+GO:0004803	transposase activity	molecular_function	58.5931	207.17	182.093	328.57	308.305	327.09
+GO:0004805	trehalose-phosphatase activity	molecular_function	0.159945	0.217079	0.139198	0.0770476	0.0672356	0
+GO:0004807	triose-phosphate isomerase activity	molecular_function	77.1909	212.122	200.672	500.24	464.138	362.008
+GO:0004808	tRNA (5-methylaminomethyl-2-thiouridylate)-methyltransferase activity	molecular_function	0.0261755	0	0	0	0	0
+GO:0004809	tRNA (guanine-N2-)-methyltransferase activity	molecular_function	0.129638	0	1.08255	0.150216	0.181545	0.215377
+GO:0004810	tRNA adenylyltransferase activity	molecular_function	3.55738	11.1752	7.55085	29.3174	31.5835	23.6007
+GO:0004812	aminoacyl-tRNA ligase activity	molecular_function	15.1402	47.4323	29.2281	58.2033	52.7466	52.6354
+GO:0004813	alanine-tRNA ligase activity	molecular_function	39.1828	63.3028	59.1364	106.954	126.937	111.282
+GO:0004814	arginine-tRNA ligase activity	molecular_function	56.0024	81.1343	82.7605	135.807	144.357	106.315
+GO:0004815	aspartate-tRNA ligase activity	molecular_function	22.1682	18.8851	21.0763	20.3816	21.13	18.0065
+GO:0004816	asparagine-tRNA ligase activity	molecular_function	19.6819	37.2307	29.1304	58.8466	59.5325	54.4351
+GO:0004817	cysteine-tRNA ligase activity	molecular_function	15.3008	19.893	13.8677	35.7364	32.9913	23.7617
+GO:0004818	glutamate-tRNA ligase activity	molecular_function	19.5228	21.199	19.5978	49.0751	50.7212	40.3179
+GO:0004819	glutamine-tRNA ligase activity	molecular_function	2.33414	19.5644	13.4457	57.1243	62.2455	49.6799
+GO:0004820	glycine-tRNA ligase activity	molecular_function	21.0726	29.2836	22.9982	81.4349	72.6562	72.6769
+GO:0004821	histidine-tRNA ligase activity	molecular_function	16.6032	32.2198	22.8885	49.9716	47.2497	40.7507
+GO:0004822	isoleucine-tRNA ligase activity	molecular_function	55.3052	36.2954	27.5199	30.7641	32.2157	26.2191
+GO:0004823	leucine-tRNA ligase activity	molecular_function	34.9474	48.628	40.1434	104.577	103.367	89.7567
+GO:0004824	lysine-tRNA ligase activity	molecular_function	39.3415	45.396	28.9729	91.8475	89.7818	83.2609
+GO:0004825	methionine-tRNA ligase activity	molecular_function	27.3954	23.1781	21.7407	47.8856	44.9001	33.9336
+GO:0004826	phenylalanine-tRNA ligase activity	molecular_function	44.7069	61.5136	54.7231	81.8029	83.5725	60.4386
+GO:0004827	proline-tRNA ligase activity	molecular_function	24.4778	43.043	30.0157	75.9813	79.6589	72.7008
+GO:0004828	serine-tRNA ligase activity	molecular_function	9.74398	22.8286	15.8953	49.0226	53.2104	47.3497
+GO:0004829	threonine-tRNA ligase activity	molecular_function	54.6655	102.467	78.2368	132.35	135.064	92.6179
+GO:0004830	tryptophan-tRNA ligase activity	molecular_function	16.3532	34.2073	20.8027	67.2916	69.0807	59.9526
+GO:0004831	tyrosine-tRNA ligase activity	molecular_function	2.45872	13.212	9.56417	32.9884	33.3056	26.5799
+GO:0004832	valine-tRNA ligase activity	molecular_function	52.0385	32.3909	38.9705	29.6473	33.9471	26.5781
+GO:0004834	tryptophan synthase activity	molecular_function	34.9117	76.923	58.2156	250.47	200.231	184.541
+GO:0004837	tyrosine decarboxylase activity	molecular_function	0.0258109	0.148609	0	0.369296	0.115025	0
+GO:0004844	uracil DNA N-glycosylase activity	molecular_function	0.315126	0	0	0	0	0
+GO:0004845	uracil phosphoribosyltransferase activity	molecular_function	34.1021	103.989	100.679	183.391	180.233	210.061
+GO:0004849	uridine kinase activity	molecular_function	25.3401	45.4046	25.477	28.4036	30.6211	29.9562
+GO:0004850	uridine phosphorylase activity	molecular_function	0.0792312	0	0	0	0	0.105683
+GO:0004851	uroporphyrin-III C-methyltransferase activity	molecular_function	0.0653536	12.9279	8.00954	23.4066	22.693	32.3801
+GO:0004852	uroporphyrinogen-III synthase activity	molecular_function	0.179631	12.9279	8.14323	23.4066	22.7285	32.3801
+GO:0004853	uroporphyrinogen decarboxylase activity	molecular_function	0.42605	155.443	166.82	60.6048	59.1935	57.2473
+GO:0004854	xanthine dehydrogenase activity	molecular_function	0.048438	0	0	0	0	0.0720834
+GO:0004855	xanthine oxidase activity	molecular_function	0	0	0	0	0	0.0119007
+GO:0004856	xylulokinase activity	molecular_function	0.0744919	0	0	0	0	0.0247716
+GO:0004866	endopeptidase inhibitor activity	molecular_function	0.00556563	0	0	0	0	0
+GO:0004871	signal transducer activity	molecular_function	60.9528	103.371	115.392	454.711	436.335	388.923
+GO:0004872	receptor activity	molecular_function	0.102053	0	0.306498	0	0	0.148791
+GO:0004984	olfactory receptor activity	molecular_function	0.361523	0	0.379841	0	0	0.0899345
+GO:0005048	signal sequence binding	molecular_function	0.195599	0	0	0	0	0.13909
+GO:0005198	structural molecule activity	molecular_function	46.1574	52.5408	54.2393	711.565	684.212	577.716
+GO:0005215	transporter activity	molecular_function	1195.17	748.621	980.806	732.712	814.669	732.315
+GO:0005216	ion channel activity	molecular_function	40.9234	80.209	60.8524	57.6281	71.0274	79.7315
+GO:0005247	voltage-gated chloride channel activity	molecular_function	6.62701	16.2138	12.5762	18.9522	21.7038	27.938
+GO:0005262	calcium channel activity	molecular_function	0.0880536	0	0	0	0	0
+GO:0005267	potassium channel activity	molecular_function	0.0557049	0	0	0	0	0
+GO:0005304	L-valine transmembrane transporter activity	molecular_function	0.26941	0	0	0	0	0
+GO:0005315	inorganic phosphate transmembrane transporter activity	molecular_function	124.431	28.4383	22.8459	33.0951	39.2943	25.7227
+GO:0005328	neurotransmitter:sodium symporter activity	molecular_function	107.983	27.1758	41.6894	22.6594	27.5648	25.5205
+GO:0005337	nucleoside transmembrane transporter activity	molecular_function	0.0446465	0	0	0	0	0
+GO:0005344	oxygen transporter activity	molecular_function	0.0466881	0	0	0	0	0
+GO:0005345	purine nucleobase transmembrane transporter activity	molecular_function	13.3964	4.17556	5.65101	7.77604	5.76994	3.99521
+GO:0005351	sugar:proton symporter activity	molecular_function	92.864	20.5231	28.6952	18.3597	14.3406	8.78741
+GO:0005354	galactose transmembrane transporter activity	molecular_function	0.0354596	0	0	0	0	0
+GO:0005355	glucose transmembrane transporter activity	molecular_function	0.0756585	0	0.140506	0	0	0
+GO:0005363	maltose transmembrane transporter activity	molecular_function	134.162	63.4878	144.991	25.642	38.6514	48.4664
+GO:0005384	manganese ion transmembrane transporter activity	molecular_function	0.722244	3.44363	0.525489	9.5837	5.30007	9.28078
+GO:0005385	zinc ion transmembrane transporter activity	molecular_function	0	0	0.113894	0	0	0.0774516
+GO:0005388	calcium-transporting ATPase activity	molecular_function	16.1674	20.2817	21.4531	24.7265	26.083	23.8316
+GO:0005415	nucleoside:sodium symporter activity	molecular_function	0.0461534	0	0	0	0	0
+GO:0005451	monovalent cation:proton antiporter activity	molecular_function	172.359	36.0767	55.0211	48.2942	66.8379	40.1699
+GO:0005506	iron ion binding	molecular_function	5874.12	17413.2	14153.7	12261.8	11036.2	16106.8
+GO:0005507	copper ion binding	molecular_function	67.6057	301.665	233.029	566.94	443.035	727.419
+GO:0005509	calcium ion binding	molecular_function	9.88152	32.1759	28.4955	95.7609	100.804	178.511
+GO:0005524	ATP binding	molecular_function	6951.27	8938.68	8619.61	14082.9	14015.8	13349.4
+GO:0005525	GTP binding	molecular_function	853.89	1346.5	1126.04	2949.18	2759.84	2509.89
+GO:0005528	FK506 binding	molecular_function	0.103098	0	0	0	0	0
+GO:0005534	galactose binding	molecular_function	0.120475	0	0	0	0	0
+GO:0005542	folic acid binding	molecular_function	38.7195	12.9166	45.4751	2.07255	4.42169	4.76219
+GO:0005543	phospholipid binding	molecular_function	0.0500177	0	0	0	0	0
+GO:0005975	carbohydrate metabolic process	biological_process	947.836	969.31	1095.73	1397.46	1346.14	1339.64
+GO:0005977	glycogen metabolic process	biological_process	0.0251304	0	0	0	0	0
+GO:0005978	glycogen biosynthetic process	biological_process	175.94	175.654	166.916	367.022	387.726	338.291
+GO:0005980	glycogen catabolic process	biological_process	1.2328	8.18431	6.26527	29.6421	28.7723	30.4393
+GO:0005985	sucrose metabolic process	biological_process	0	0	0.165946	0	0	0
+GO:0005988	lactose metabolic process	biological_process	134.941	134.531	133.368	207.117	206.169	216.128
+GO:0005991	trehalose metabolic process	biological_process	0.13044	0	0.0219217	0	0	0
+GO:0005992	trehalose biosynthetic process	biological_process	0.32249	0.35626	0.139198	0.151235	0.0672356	0.0482173
+GO:0005993	trehalose catabolic process	biological_process	0.0972162	0	0.200904	0	0	0
+GO:0005995	melibiose catabolic process	biological_process	0.0402961	0	0	0	0	0
+GO:0005996	monosaccharide metabolic process	biological_process	22.5745	29.4038	22.4566	57.7658	59.2636	72.2278
+GO:0005998	xylulose catabolic process	biological_process	0.0744919	0	0	0	0	0.0247716
+GO:0005999	xylulose biosynthetic process	biological_process	0.0604685	0	0	0	0	0
+GO:0006000	fructose metabolic process	biological_process	0	0	0.33947	0	0	0
+GO:0006002	fructose 6-phosphate metabolic process	biological_process	246.302	427.652	315.56	632.778	655.397	447.485
+GO:0006004	fucose metabolic process	biological_process	0.0410252	0	0	0	0	0.166448
+GO:0006006	glucose metabolic process	biological_process	104.632	637.673	465.469	1237.27	1346.32	1102.79
+GO:0006007	glucose catabolic process	biological_process	4.45241	74.3333	74.8652	106.757	98.0077	79.9185
+GO:0006011	UDP-glucose metabolic process	biological_process	3.5055	17.7693	10.0443	40.7912	36.3595	50.4016
+GO:0006012	galactose metabolic process	biological_process	12.3962	41.236	28.5777	62.4172	73.4257	69.7664
+GO:0006013	mannose metabolic process	biological_process	0	0	0	0	0	0.0327593
+GO:0006014	D-ribose metabolic process	biological_process	1.80616	2.57876	3.79218	1.50907	1.03469	2.63358
+GO:0006015	5-phosphoribose 1-diphosphate biosynthetic process	biological_process	41.3011	78.7633	62.2322	177.363	186.294	171.625
+GO:0006021	inositol biosynthetic process	biological_process	0.152362	0.292504	0.471046	1.14353	0.702936	2.02296
+GO:0006024	glycosaminoglycan biosynthetic process	biological_process	0.0682701	0.087373	0.168878	0.0465817	0	0.121109
+GO:0006032	chitin catabolic process	biological_process	5.29947	8.80582	9.09723	23.3712	19.9315	20.0054
+GO:0006044	N-acetylglucosamine metabolic process	biological_process	94.0114	40.6153	65.1811	32.2884	37.693600000000004	35.1103
+GO:0006047	UDP-N-acetylglucosamine metabolic process	biological_process	41.9718	61.1861	61.2957	87.8383	94.632	92.6222
+GO:0006048	UDP-N-acetylglucosamine biosynthetic process	biological_process	23.3776	49.8183	39.4291	131.32	129.622	104.529
+GO:0006062	sorbitol catabolic process	biological_process	0.0770925	0	0	0	0	0
+GO:0006064	glucuronate catabolic process	biological_process	0.057309	0	0.0705914	0	0	0
+GO:0006065	UDP-glucuronate biosynthetic process	biological_process	0.143394	0	0	0	0	0.0636106
+GO:0006066	alcohol metabolic process	biological_process	0.677937	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0006068	ethanol catabolic process	biological_process	0.0328591	0	0	0	0	0
+GO:0006069	ethanol oxidation	biological_process	0	0	0.0939565	0	0	0.0336971
+GO:0006071	glycerol metabolic process	biological_process	44.5777	40.5883	39.2958	39.6642	46.5421	34.2398
+GO:0006072	glycerol-3-phosphate metabolic process	biological_process	0.0716727	0	0.0664868	0	0	0
+GO:0006080	substituted mannan metabolic process	biological_process	41.2293	46.4253	52.9957	128.966	117.098	135.834
+GO:0006081	cellular aldehyde metabolic process	biological_process	0.229819	2.94146	1.49279	7.42607	6.99288	7.20601
+GO:0006082	organic acid metabolic process	biological_process	37.1161	74.8308	75.5669	124.392	124.077	86.9996
+GO:0006084	acetyl-CoA metabolic process	biological_process	14.0943	4.95529	3.92538	3.36824	3.95503	3.26067
+GO:0006085	acetyl-CoA biosynthetic process	biological_process	40.9424	100.998	99.6889	174.192	180.378	160.964
+GO:0006089	lactate metabolic process	biological_process	0.0156518	0	0	0	0	0
+GO:0006090	pyruvate metabolic process	biological_process	56.1077	66.7072	56.2292	112.003	114.077	78.6596
+GO:0006091	generation of precursor metabolites and energy	biological_process	0.130416	31.3103	29.1451	43.3765	37.6878	33.5279
+GO:0006094	gluconeogenesis	biological_process	328.426	775.818	616.861	1006.98	1007.52	837.492
+GO:0006096	glycolytic process	biological_process	470.582	1952.13	1504.62	3132.26	3340.02	2733.8
+GO:0006097	glyoxylate cycle	biological_process	3.0303	47.411	33.0119	119.773	121.21	121.857
+GO:0006098	pentose-phosphate shunt	biological_process	267.449	668.4	674.864	935.061	917.293	901.64
+GO:0006099	tricarboxylic acid cycle	biological_process	4.10957	48.1234	33.3376	120.67	121.938	122.251
+GO:0006102	isocitrate metabolic process	biological_process	2.4552	47.411	32.8214	119.773	121.21	121.8
+GO:0006107	oxaloacetate metabolic process	biological_process	0.0536877	0.262166	0	0.262877	0.15294	0.159528
+GO:0006108	malate metabolic process	biological_process	12.3547	8.7682	7.9753	9.14256	8.88576	8.85914
+GO:0006109	regulation of carbohydrate metabolic process	biological_process	48.7367	313.415	223.445	763.953	780.967	958.252
+GO:0006112	energy reserve metabolic process	biological_process	0.0604685	0	0	0	0	0
+GO:0006119	oxidative phosphorylation	biological_process	0	0	0.0646374	0	0	0.023187
+GO:0006139	nucleobase-containing compound metabolic process	biological_process	0.852732	5.31244	5.16842	11.9018	13.076	14.4526
+GO:0006144	purine nucleobase metabolic process	biological_process	0.206025	0	0	0	0	0.34166
+GO:0006146	adenine catabolic process	biological_process	0.163663	0.127232	0.273796	0.0508594	0.103349	0.308642
+GO:0006163	purine nucleotide metabolic process	biological_process	44.6282	107.691	98.1461	119.472	133.484	132.151
+GO:0006164	purine nucleotide biosynthetic process	biological_process	18.3321	64.2187	43.1227	172.821	177.798	178.326
+GO:0006166	purine ribonucleoside salvage	biological_process	11.2737	23.3354	22.7631	63.3114	54.65	82.346
+GO:0006168	adenine salvage	biological_process	88.2354	84.4916	56.7846	100.811	105.061	109.704
+GO:0006171	cAMP biosynthetic process	biological_process	0	0	0	0	0	0.0269706
+GO:0006177	GMP biosynthetic process	biological_process	127.525	124.145	102.909	153.048	165.214	121.279
+GO:0006183	GTP biosynthetic process	biological_process	164.016	295.443	240.466	234.904	242.374	313.401
+GO:0006189	'de novo' IMP biosynthetic process	biological_process	82.0107	107.33	95.9686	379.285	377.582	329.075
+GO:0006206	pyrimidine nucleobase metabolic process	biological_process	31.5201	24.7419	28.3527	34.0698	41.2712	25.2325
+GO:0006207	'de novo' pyrimidine nucleobase biosynthetic process	biological_process	8.38176	23.8661	21.9575	62.3091	65.5046	63.4481
+GO:0006208	pyrimidine nucleobase catabolic process	biological_process	0.0786479	0	0	0	0	0
+GO:0006212	uracil catabolic process	biological_process	0.0551702	0	0	0	0	0.0548468
+GO:0006213	pyrimidine nucleoside metabolic process	biological_process	31.3251	24.7419	28.296	34.0698	41.2712	25.1916
+GO:0006220	pyrimidine nucleotide metabolic process	biological_process	6.89474	51.4882	27.5884	105.503	119.254	126.4
+GO:0006221	pyrimidine nucleotide biosynthetic process	biological_process	10.1287	12.9346	8.25942	18.8094	16.9517	23.7116
+GO:0006222	UMP biosynthetic process	biological_process	0.864033	0.484005	0.13365	0.257804	0.353627	0.431174
+GO:0006223	uracil salvage	biological_process	24.3333	77.0823	80.1456	138.756	133.398	149.062
+GO:0006226	dUMP biosynthetic process	biological_process	16.623	34.3116	23.718	47.8695	57.2655	56.6387
+GO:0006228	UTP biosynthetic process	biological_process	164.016	295.443	240.466	234.904	242.374	313.401
+GO:0006229	dUTP biosynthetic process	biological_process	16.3852	34.0035	23.718	47.8695	57.1222	56.6387
+GO:0006231	dTMP biosynthetic process	biological_process	36.9898	50.6987	42.4959	89.4689	93.8062	90.1199
+GO:0006233	dTDP biosynthetic process	biological_process	8.03055	8.03234	10.5069	23.3999	22.1419	20.7716
+GO:0006235	dTTP biosynthetic process	biological_process	8.39464	9.95539	11.3513	23.7727	22.7924	21.3167
+GO:0006241	CTP biosynthetic process	biological_process	164.016	295.443	240.466	234.904	242.374	313.401
+GO:0006259	DNA metabolic process	biological_process	0.200484	0	0	0	0	0
+GO:0006260	DNA replication	biological_process	585.472	617.666	565.521	1206.16	1111.81	1058.17
+GO:0006261	DNA-dependent DNA replication	biological_process	35.2637	76.4948	71.0257	150.922	142.749	141.144
+GO:0006265	DNA topological change	biological_process	82.1766	153.282	117.822	286.412	285.539	293.512
+GO:0006266	DNA ligation	biological_process	0.090241	0	0.33505	0	0	0
+GO:0006268	DNA unwinding involved in DNA replication	biological_process	2.78593	14.1489	10.7094	28.3455	27.7056	33.8206
+GO:0006269	DNA replication, synthesis of RNA primer	biological_process	17.074	32.9054	22.0465	90.6716	84.3334	78.074
+GO:0006270	DNA replication initiation	biological_process	14.7935	28.7931	35.2201	24.5391	31.0386	28.9412
+GO:0006275	regulation of DNA replication	biological_process	14.9596	28.9526	35.2972	25.1342	31.558	30.0467
+GO:0006276	plasmid maintenance	biological_process	0.019662	0	0	0	0	0
+GO:0006281	DNA repair	biological_process	371.699	758.604	719.318	969.575	971.95	1012.14
+GO:0006282	regulation of DNA repair	biological_process	11.2595	28.766	28.6947	22.5051	21.601	28.8957
+GO:0006284	base-excision repair	biological_process	45.1528	66.0911	69.902	130.436	127.634	205.637
+GO:0006285	base-excision repair, AP site formation	biological_process	0.272497	0	0	0	0	0
+GO:0006289	nucleotide-excision repair	biological_process	34.1498	58.3912	47.3398	107.81	98.3655	103.746
+GO:0006298	mismatch repair	biological_process	37.9382	54.4805	44.4528	91.8449	100.232	96.6145
+GO:0006302	double-strand break repair	biological_process	2.20812	13.0762	8.06858	25.4128	28.3105	32.9628
+GO:0006304	DNA modification	biological_process	0.210133	0.458101	0.278442	0.325699	0.124575	0.184526
+GO:0006306	DNA methylation	biological_process	5.63402	5.50081	4.16196	6.41995	7.00023	3.96527
+GO:0006307	DNA dealkylation involved in DNA repair	biological_process	0	0	0	0	0	0.0848896
+GO:0006308	DNA catabolic process	biological_process	9.96534	32.9928	26.8994	117.871	107.577	100.856
+GO:0006310	DNA recombination	biological_process	305.472	659.104	602.026	830.215	808.456	796.307
+GO:0006313	transposition, DNA-mediated	biological_process	81.5061	242.526	221.342	394.902	375.388	428.06
+GO:0006351	transcription, DNA-templated	biological_process	1178.38	2835.01	2442.31	3768.98	3459.97	3883.37
+GO:0006352	DNA-templated transcription, initiation	biological_process	226.512	420.573	363.088	878.271	865.164	938.577
+GO:0006353	DNA-templated transcription, termination	biological_process	159.695	377.313	307.599	671.458	696.927	703.716
+GO:0006354	DNA-templated transcription, elongation	biological_process	72.8363	130.975	89.7238	286.212	306.755	245.128
+GO:0006355	regulation of transcription, DNA-templated	biological_process	1106.25	3065.06	2566.63	3493.29	3340.17	3814.36
+GO:0006364	rRNA processing	biological_process	133.032	246.41	194.763	492.173	471.625	475.884
+GO:0006367	transcription initiation from RNA polymerase II promoter	biological_process	0.502243	3.85533	1.2821	0.642147	0.616732	1.91278
+GO:0006378	mRNA polyadenylation	biological_process	0	0	0.0742451	0	0	0
+GO:0006379	mRNA cleavage	biological_process	1.64781	1.76795	0.341726	3.57145	0.822085	6.1105
+GO:0006388	tRNA splicing, via endonucleolytic cleavage and ligation	biological_process	1.0676	7.96387	7.92726	11.1115	10.0164	15.0828
+GO:0006396	RNA processing	biological_process	161.878	207.849	179.255	392.405	393.193	390.601
+GO:0006397	mRNA processing	biological_process	1.29891	6.48698	2.88541	28.1773	22.2648	16.6507
+GO:0006400	tRNA modification	biological_process	66.9997	100.891	75.3779	184.081	172.39	154.956
+GO:0006401	RNA catabolic process	biological_process	7.95788	47.3467	43.749	129.383	117.403	94.8325
+GO:0006402	mRNA catabolic process	biological_process	116.764	485.974	366.161	1143.11	1153.8	1282.09
+GO:0006412	translation	biological_process	8342.85	16894.4	11098.7	35182.9	34005.4	38092.9
+GO:0006414	translational elongation	biological_process	0	0.299178	0.578309	0.478277	1.11121	0.414617
+GO:0006415	translational termination	biological_process	33.7466	52.4368	41.6394	88.4748	109.33	117.098
+GO:0006417	regulation of translation	biological_process	52.0828	92.2133	59.7074	304.19	252.571	200.413
+GO:0006418	tRNA aminoacylation for protein translation	biological_process	40.0387	70.801	57.3791	108.289	100.134	83.4881
+GO:0006419	alanyl-tRNA aminoacylation	biological_process	12.109	25.3368	17.9416	70.3442	72.3005	71.5896
+GO:0006420	arginyl-tRNA aminoacylation	biological_process	56.0024	81.1343	82.7605	135.807	144.357	106.315
+GO:0006421	asparaginyl-tRNA aminoacylation	biological_process	19.6819	37.2307	29.1304	58.8466	59.5325	54.4351
+GO:0006422	aspartyl-tRNA aminoacylation	biological_process	0.0417544	0.0801853	0.154985	0.213386	0.0372856	0.138863
+GO:0006423	cysteinyl-tRNA aminoacylation	biological_process	15.3008	19.893	13.8677	35.7364	32.9913	23.7617
+GO:0006424	glutamyl-tRNA aminoacylation	biological_process	21.8569	40.7634	33.0435	106.199	112.967	89.9978
+GO:0006425	glutaminyl-tRNA aminoacylation	biological_process	2.33414	19.5644	13.4457	57.1243	62.2455	49.6799
+GO:0006426	glycyl-tRNA aminoacylation	biological_process	21.0726	29.2836	22.9982	81.4349	72.6562	72.6769
+GO:0006427	histidyl-tRNA aminoacylation	biological_process	16.6032	32.2198	22.8885	49.9716	47.2497	40.7507
+GO:0006428	isoleucyl-tRNA aminoacylation	biological_process	55.3052	36.2954	27.5199	30.7641	32.2157	26.2191
+GO:0006429	leucyl-tRNA aminoacylation	biological_process	34.9474	48.628	40.1434	104.577	103.367	89.7567
+GO:0006430	lysyl-tRNA aminoacylation	biological_process	39.3415	45.396	28.9729	91.8475	89.7818	83.2609
+GO:0006431	methionyl-tRNA aminoacylation	biological_process	27.3954	23.1781	21.7407	47.8856	44.9001	33.9336
+GO:0006432	phenylalanyl-tRNA aminoacylation	biological_process	44.7069	61.5136	54.7231	81.8029	83.5725	60.4386
+GO:0006433	prolyl-tRNA aminoacylation	biological_process	24.4778	43.043	30.0157	75.9813	79.6589	72.7008
+GO:0006434	seryl-tRNA aminoacylation	biological_process	9.74398	22.8286	15.8953	49.0226	53.2104	47.3497
+GO:0006435	threonyl-tRNA aminoacylation	biological_process	54.6655	102.467	78.2368	132.35	135.064	92.6179
+GO:0006436	tryptophanyl-tRNA aminoacylation	biological_process	16.3532	34.2073	20.8027	67.2916	69.0807	59.9526
+GO:0006437	tyrosyl-tRNA aminoacylation	biological_process	2.45872	13.212	9.56417	32.9884	33.3056	26.5799
+GO:0006438	valyl-tRNA aminoacylation	biological_process	52.0385	32.3909	38.9705	29.6473	33.9471	26.5781
+GO:0006449	regulation of translational termination	biological_process	0.887317	3.40601	1.61566	10.2901	11.8347	12.7583
+GO:0006450	regulation of translational fidelity	biological_process	1.46235	6.04157	4.87076	16.5757	20.2655	20.5883
+GO:0006452	translational frameshifting	biological_process	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0006457	protein folding	biological_process	286.559	517.369	582.899	713.065	780.236	823.471
+GO:0006461	protein complex assembly	biological_process	11.5589	16.0132	7.64895	26.846800000000002	20.2585	20.5622
+GO:0006464	cellular protein modification process	biological_process	171.073	222.019	392.176	113.754	129.819	113.707
+GO:0006465	signal peptide processing	biological_process	0.425418	0.979772	0.316556	0.261783	0.0761555	0.151346
+GO:0006468	protein phosphorylation	biological_process	0.120597	0	0	0	0	0
+GO:0006470	protein dephosphorylation	biological_process	0.242652	0	0.177945	0	0	0
+GO:0006474	N-terminal protein amino acid acetylation	biological_process	9.04108	9.1337	8.4053	18.2514	16.3249	12.9769
+GO:0006479	protein methylation	biological_process	0.150126	0	0	0	0	0
+GO:0006486	protein glycosylation	biological_process	0.228774	0.391592	0.231305	0.153225	0.327671	0.202312
+GO:0006493	protein O-linked glycosylation	biological_process	2.53579	4.38419	2.75771	22.4856	20.2827	17.4859
+GO:0006508	proteolysis	biological_process	1.94301	5.91	3.22966	6.28965	5.7809	15.4525
+GO:0006511	ubiquitin-dependent protein catabolic process	biological_process	0.488463	0.781783	0.453319	0.166505	0.217876	1.0818
+GO:0006515	misfolded or incompletely synthesized protein catabolic process	biological_process	17.9531	26.4392	21.3721	51.9233	53.0269	60.9012
+GO:0006520	cellular amino acid metabolic process	biological_process	99.8358	272.043	235.383	582.121	691.718	914.149
+GO:0006522	alanine metabolic process	biological_process	0.111701	0.321908	0.103745	0	0.124727	0.0743471
+GO:0006523	alanine biosynthetic process	biological_process	32.5228	41.4276	38.7524	54.8716	50.8431	53.1722
+GO:0006525	arginine metabolic process	biological_process	82.4654	17.393	23.6271	27.2268	30.7455	22.1183
+GO:0006526	arginine biosynthetic process	biological_process	119.824	102.291	101.043	174	150.98	148.247
+GO:0006527	arginine catabolic process	biological_process	0.0887584	0.305059	0.196799	0	0	0
+GO:0006528	asparagine metabolic process	biological_process	0.135471	0	0.0502936	0	0	0.0360579
+GO:0006529	asparagine biosynthetic process	biological_process	0.134644	0.294744	0.393102	0.441022	0.239665	1.03384
+GO:0006531	aspartate metabolic process	biological_process	0.518989	0.420856	0.858599	1.0871	0.831374	0.725717
+GO:0006535	cysteine biosynthetic process from serine	biological_process	15.6605	963.532	658.245	1484.6	1302.25	1148.02
+GO:0006536	glutamate metabolic process	biological_process	0.27867	0	0	0	0	0.0517099
+GO:0006537	glutamate biosynthetic process	biological_process	9.31776	11.9087	20.4929	18.6917	26.8972	35.0133
+GO:0006541	glutamine metabolic process	biological_process	173.822	161.282	126.775	344.514	347.979	284.294
+GO:0006542	glutamine biosynthetic process	biological_process	91.4723	77.1621	113.703	83.253	93.4154	86.1625
+GO:0006543	glutamine catabolic process	biological_process	0	0.652544	0.420797	1.67843	0.202358	1.1316
+GO:0006544	glycine metabolic process	biological_process	33.2716	51.5545	66.8396	27.4989	35.3101	21.7446
+GO:0006545	glycine biosynthetic process	biological_process	4.66723	34.7584	21.8931	95.8256	97.9612	69.4259
+GO:0006555	methionine metabolic process	biological_process	0.943216	4.09818	3.37711	10.4034	10.0246	13.4894
+GO:0006556	S-adenosylmethionine biosynthetic process	biological_process	30.3955	35.7417	25.0474	107.259	143.902	106.667
+GO:0006557	S-adenosylmethioninamine biosynthetic process	biological_process	109.31	260.647	237.286	727.63	738.062	1032.77
+GO:0006561	proline biosynthetic process	biological_process	41.7449	50.4758	40.8245	45.7403	38.4935	35.5937
+GO:0006564	L-serine biosynthetic process	biological_process	4.03785	39.484	30.5721	82.5525	82.0866	65.7799
+GO:0006569	tryptophan catabolic process	biological_process	0.221993	0	0.199641	0	0	0.134886
+GO:0006570	tyrosine metabolic process	biological_process	0.0258109	0.148609	0	0.369296	0.115025	0
+GO:0006571	tyrosine biosynthetic process	biological_process	3.69626	16.9319	12.9249	61.6974	63.1192	58.5705
+GO:0006593	ornithine catabolic process	biological_process	0.0680757	0	0	0	0	0
+GO:0006605	protein targeting	biological_process	278.784	413.217	318.639	1149.86	1074.86	1076.78
+GO:0006614	SRP-dependent cotranslational protein targeting to membrane	biological_process	29.8099	55.1712	45.5279	116.803	118.897	116.044
+GO:0006627	protein processing involved in protein targeting to mitochondrion	biological_process	2.75139	29.8022	17.9531	85.0748	71.176	68.1265
+GO:0006629	lipid metabolic process	biological_process	83.9155	88.0939	118.327	64.9693	72.8764	53.7094
+GO:0006631	fatty acid metabolic process	biological_process	0.222188	0	0	0	0	0.0960142
+GO:0006633	fatty acid biosynthetic process	biological_process	327.468	367.955	256.292	986.041	858.675	740.002
+GO:0006635	fatty acid beta-oxidation	biological_process	0.194262	0	0.0881829	0	0	0.0158461
+GO:0006641	triglyceride metabolic process	biological_process	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0006646	phosphatidylethanolamine biosynthetic process	biological_process	0.0296752	0.35766	0.172802	0.19058	0.415611	0.803427
+GO:0006650	glycerophospholipid metabolic process	biological_process	3.95898	12.3819	9.11726	37.0321	34.9101	28.1677
+GO:0006655	phosphatidylglycerol biosynthetic process	biological_process	0.060906	0	0.244476	0	0	0.175277
+GO:0006662	glycerol ether metabolic process	biological_process	106.143	604.228	565.001	1100.31	902.191	1567.03
+GO:0006665	sphingolipid metabolic process	biological_process	1.10134	2.62324	4.47595	5.63485	5.90085	6.5278
+GO:0006725	cellular aromatic compound metabolic process	biological_process	69.2745	87.3033	78.2037	105.671	142.594	153.353
+GO:0006730	one-carbon metabolic process	biological_process	95.3688	280.343	308.032	377.301	410.923	384.342
+GO:0006734	NADH metabolic process	biological_process	0.0330049	0	0	0	0	0
+GO:0006739	NADP metabolic process	biological_process	0.0953691	0	0.07208	0	0	0.0517099
+GO:0006740	NADPH regeneration	biological_process	0	0.339924	0.246461	0	0.276647	0.0588891
+GO:0006741	NADP biosynthetic process	biological_process	34.1816	84.4129	70.8227	122.75	126.191	160.262
+GO:0006744	ubiquinone biosynthetic process	biological_process	10.0472	78.9405	60.9828	280.813	190.958	185.591
+GO:0006747	FAD biosynthetic process	biological_process	13.7662	25.8023	21.7148	53.9423	46.7158	49.7851
+GO:0006749	glutathione metabolic process	biological_process	0.227364	0	0.0750119	0	0	0
+GO:0006750	glutathione biosynthetic process	biological_process	0.0455458	1.46588	1.69992	1.48547	0.477746	0.915255
+GO:0006772	thiamine metabolic process	biological_process	5.52963	3.21931	2.74946	2.52561	2.69027	2.35556
+GO:0006777	Mo-molybdopterin cofactor biosynthetic process	biological_process	123.103	49.4479	44.7934	39.5914	43.7818	34.791
+GO:0006779	porphyrin-containing compound biosynthetic process	biological_process	1.78538	178.515	180.603	89.851	89.4049	95.3809
+GO:0006782	protoporphyrinogen IX biosynthetic process	biological_process	1.36555	15.9179	18.4161	32.5876	24.0135	23.8198
+GO:0006783	heme biosynthetic process	biological_process	0.149008	0	0.109338	0	0	0
+GO:0006790	sulfur compound metabolic process	biological_process	0.189596	0	0	0	0	0
+GO:0006793	phosphorus metabolic process	biological_process	0.0349249	0	0.0648178	0	0	0
+GO:0006796	phosphate-containing compound metabolic process	biological_process	0	0.122518	0	0.19547900000000001	0.170889	0.169747
+GO:0006805	xenobiotic metabolic process	biological_process	0.431008	0	0	0	0	0
+GO:0006807	nitrogen compound metabolic process	biological_process	70.8425	110.694	105.572	163.925	168.054	177.417
+GO:0006808	regulation of nitrogen utilization	biological_process	30.3272	132.648	93.1623	282.021	269.392	418.098
+GO:0006810	transport	biological_process	1753.68	1277.15	1577.42	1916.18	1958.72	1735.23
+GO:0006811	ion transport	biological_process	1.85792	0	1.65283	0	0	0.833373
+GO:0006813	potassium ion transport	biological_process	60.2224	46.3696	45.5753	38.0798	41.8941	39.1497
+GO:0006814	sodium ion transport	biological_process	56.9432	64.0552	62.943	132.412	122.485	97.6701
+GO:0006817	phosphate ion transport	biological_process	93.5278	43.9513	36.391	53.3597	64.5653	63.8
+GO:0006820	anion transport	biological_process	0.0715025	0	0.484532	0	0	0
+GO:0006824	cobalt ion transport	biological_process	4.40567	28.6793	28.4783	50.0222	39.7012	32.6355
+GO:0006825	copper ion transport	biological_process	9.27304	157.246	73.6162	357.928	224.203	535.128
+GO:0006826	iron ion transport	biological_process	69.4112	137.404	155.174	303.186	185.874	392.659
+GO:0006829	zinc II ion transport	biological_process	0.708001	0	0.311144	0	0	0
+GO:0006835	dicarboxylic acid transport	biological_process	0.10441	0	0.0387464	0	0	0
+GO:0006855	drug transmembrane transport	biological_process	0.501247	0	0.178802	0	0	0.0780984
+GO:0006858	extracellular transport	biological_process	0	0	0.466219	0	0	0.103646
+GO:0006865	amino acid transport	biological_process	83.4174	7.30237	8.34783	19.2984	15.4885	25.3564
+GO:0006869	lipid transport	biological_process	0.173069	0	0	0	0	0
+GO:0006874	cellular calcium ion homeostasis	biological_process	0.0880536	0	0	0	0	0
+GO:0006879	cellular iron ion homeostasis	biological_process	244.501	275.561	280.451	473.779	362.901	521.426
+GO:0006885	regulation of pH	biological_process	0.0955635	0	0.177403	0	0	0
+GO:0006935	chemotaxis	biological_process	76.9524	176.797	149.592	1098.54	1000.96	851.627
+GO:0006950	response to stress	biological_process	14.731	167.404	300.266	122.068	166.597	227.65
+GO:0006970	response to osmotic stress	biological_process	0.398416	0	0	0	0	0
+GO:0006972	hyperosmotic response	biological_process	0.0460319	0	0	0	0	0
+GO:0006974	cellular response to DNA damage stimulus	biological_process	5.0368	0	2.84125	0	0	1.53086
+GO:0006979	response to oxidative stress	biological_process	52.7793	221.037	183.465	532.053	380.628	695.682
+GO:0007049	cell cycle	biological_process	387.377	937.213	760.184	1929.46	1820.54	1968.23
+GO:0007059	chromosome segregation	biological_process	24.3815	62.1497	58.8076	134.221	125.504	196.604
+GO:0007062	sister chromatid cohesion	biological_process	0.0836546	0	0	0	0	0
+GO:0007155	cell adhesion	biological_process	6.99991	22.2312	18.2745	121.309	115.524	113.806
+GO:0007165	signal transduction	biological_process	0.354013	0.723114	0.509972	3.33183	2.72595	2.78538
+GO:0007186	G-protein coupled receptor signaling pathway	biological_process	0.361523	0	0.379841	0	0	0.0899345
+GO:0007446	imaginal disc growth	biological_process	0.85927	1.48119	1.15811	14.8812	12.7606	11.0413
+GO:0007608	sensory perception of smell	biological_process	0.361523	0	0.379841	0	0	0.0899345
+GO:0008026	ATP-dependent helicase activity	molecular_function	0.0605657	0.0581553	0.22481	0.108459	0.0809953	0.181324
+GO:0008033	tRNA processing	biological_process	46.4656	83.5582	70.89	169.051	158.97	143.542
+GO:0008047	enzyme activator activity	molecular_function	3.2277	1.42733	6.11376	1.58348	2.86908	1.84513
+GO:0008073	ornithine decarboxylase inhibitor activity	molecular_function	0.0983099	0	0.072937	0	0	0
+GO:0008080	N-acetyltransferase activity	molecular_function	53.3797	116.49	86.2902	460.736	363.85	505.924
+GO:0008081	phosphoric diester hydrolase activity	molecular_function	0.0576492	0	0	0	0	0
+GO:0008094	DNA-dependent ATPase activity	molecular_function	92.6392	200.034	215.153	271.744	280.496	280.782
+GO:0008097	5S rRNA binding	molecular_function	48.9648	69.2967	39.2528	84.6703	106.061	91.244
+GO:0008106	alcohol dehydrogenase (NADP+) activity	molecular_function	0.105261	0	0	0	0	0.0743148
+GO:0008108	UDP-glucose:hexose-1-phosphate uridylyltransferase activity	molecular_function	9.59595	13.7924	5.45755	15.3531	18.278	12.0259
+GO:0008113	peptide-methionine (S)-S-oxide reductase activity	molecular_function	2.57249	4.97825	2.76349	5.11407	3.33096	9.24485
+GO:0008115	sarcosine oxidase activity	molecular_function	24.9721	21.0834	19.3698	18.0473	21.2332	16.4641
+GO:0008121	ubiquinol-cytochrome-c reductase activity	molecular_function	0.170857	0.787664	0.539201	1.69599	1.54104	2.41028
+GO:0008131	primary amine oxidase activity	molecular_function	0.0686346	0	0	0	0	0
+GO:0008134	transcription factor binding	molecular_function	0.0430911	0	0	0	0	0
+GO:0008137	NADH dehydrogenase (ubiquinone) activity	molecular_function	129.292	277.482	194.803	695.487	658.6	623.254
+GO:0008138	protein tyrosine/serine/threonine phosphatase activity	molecular_function	0.0208286	0	0.177945	0	0	0
+GO:0008143	poly(A) binding	molecular_function	0.759696	2.22096	1.62162	1.49129	0.460601	0.947335
+GO:0008152	metabolic process	biological_process	11.7052	17.5581	30.559	73.0693	53.7078	61.136
+GO:0008168	methyltransferase activity	molecular_function	237.164	536.732	498.277	802.53	763.712	744.428
+GO:0008170	N-methyltransferase activity	molecular_function	5.71087	12.183	9.05695	7.76403	8.58624	4.84902
+GO:0008171	O-methyltransferase activity	molecular_function	0.298211	2.00458	0.36897	5.43305	5.09589	4.95522
+GO:0008173	RNA methyltransferase activity	molecular_function	78.7149	62.4136	56.8976	130.589	126.149	133.631
+GO:0008175	tRNA methyltransferase activity	molecular_function	0.704259	6.57398	6.28341	16.3987	16.4713	25.6325
+GO:0008176	tRNA (guanine-N7-)-methyltransferase activity	molecular_function	7.51027	28.1802	21.4238	41.0326	48.1098	51.0667
+GO:0008177	succinate dehydrogenase (ubiquinone) activity	molecular_function	0.0830956	0	0	0	0	0
+GO:0008184	glycogen phosphorylase activity	molecular_function	16.2507	19.177	15.9337	80.0788	66.9233	63.0364
+GO:0008186	RNA-dependent ATPase activity	molecular_function	58.6358	72.1542	79.552	106.114	108.893	85.7461
+GO:0008198	ferrous iron binding	molecular_function	66.2489	66.9811	73.359	75.9854	99.2615	88.2437
+GO:0008199	ferric iron binding	molecular_function	244.566	275.561	280.451	473.779	362.901	521.323
+GO:0008216	spermidine metabolic process	biological_process	0.0852829	0	0	0	0	0
+GO:0008233	peptidase activity	molecular_function	284.145	272.723	303.083	435.549	449.565	500.693
+GO:0008234	cysteine-type peptidase activity	molecular_function	48.7174	96.3913	81.924	118.292	124.486	128.528
+GO:0008235	metalloexopeptidase activity	molecular_function	0.355301	1.84039	0.726528	4.5854799999999996	4.02984	5.22299
+GO:0008236	serine-type peptidase activity	molecular_function	208.606	196.898	179.155	281.979	274.449	274.135
+GO:0008237	metallopeptidase activity	molecular_function	197.023	188.44	246.054	279.833	287.98	198.212
+GO:0008239	dipeptidyl-peptidase activity	molecular_function	0.309172	1.84039	0.688639	4.5854799999999996	4.02984	5.22299
+GO:0008251	tRNA-specific adenosine deaminase activity	molecular_function	0.068659	0	0	0	0	0
+GO:0008252	nucleotidase activity	molecular_function	0	0	0.116555	0	0	0.0883498
+GO:0008253	5'-nucleotidase activity	molecular_function	313.619	78.9888	126.106	69.628	73.5935	70.4739
+GO:0008254	3'-nucleotidase activity	molecular_function	0	0	0.161661	0	0	0
+GO:0008263	pyrimidine-specific mismatch base pair DNA N-glycosylase activity	molecular_function	0.272497	0	0	0	0	0
+GO:0008270	zinc ion binding	molecular_function	669.065	1306.46	1221.71	2427.83	2388.9	2526.42
+GO:0008271	secondary active sulfate transmembrane transporter activity	molecular_function	1.03295	113.725	101.512	227.825	204.608	207.385
+GO:0008273	calcium, potassium:sodium antiporter activity	molecular_function	0.0880536	0	0	0	0	0
+GO:0008276	protein methyltransferase activity	molecular_function	22.1573	41.3588	33.4719	57.8263	67.8746	68.3095
+GO:0008289	lipid binding	molecular_function	71.0235	688.862	444.885	933.118	901.344	808.765
+GO:0008295	spermidine biosynthetic process	biological_process	114.023	292.142	268.175	812.57	830.683	1123.86
+GO:0008296	3'-5'-exodeoxyribonuclease activity	molecular_function	0.00811755	0	0.0450612	0	0	0
+GO:0008299	isoprenoid biosynthetic process	biological_process	3.42184	18.6489	12.1521	60.6667	57.4375	55.3102
+GO:0008310	single-stranded DNA 3'-5' exodeoxyribonuclease activity	molecular_function	0	0	0.0705914	0	0	0
+GO:0008312	7S RNA binding	molecular_function	14.2021	33.6807	26.5458	42.0591	47.9919	48.3257
+GO:0008320	protein transmembrane transporter activity	molecular_function	0.621406	0	0	0	0	0
+GO:0008324	cation transmembrane transporter activity	molecular_function	195.168	102.417	131.749	162.687	139.2	99.9484
+GO:0008360	regulation of cell shape	biological_process	364.417	689.453	572.079	1263.75	1215.38	1254.31
+GO:0008375	acetylglucosaminyltransferase activity	molecular_function	0	0	0.0383855	0	0	0
+GO:0008381	mechanically-gated ion channel activity	molecular_function	0.132797	0	0	0	0	0
+GO:0008408	3'-5' exonuclease activity	molecular_function	147.012	133.618	153.56	192.488	189.648	198.769
+GO:0008409	5'-3' exonuclease activity	molecular_function	3.56587	18.9304	15.8033	45.3576	40.0766	46.6433
+GO:0008410	CoA-transferase activity	molecular_function	0.0227486	0	0	0	0	0
+GO:0008412	4-hydroxybenzoate octaprenyltransferase activity	molecular_function	0.100838	0	0.0623821	0	0	0
+GO:0008413	8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity	molecular_function	0.296388	0.189728	1.64873	2.62815	3.08639	2.23481
+GO:0008417	fucosyltransferase activity	molecular_function	0.13061	0	0	0	0	0.069561
+GO:0008422	beta-glucosidase activity	molecular_function	44.539	159.011	199.836	380.011	390.901	329.343
+GO:0008425	2-polyprenyl-6-methoxy-1,4-benzoquinone methyltransferase activity	molecular_function	0	0	0	0	0	0.106654
+GO:0008444	CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase activity	molecular_function	4.70906	30.4238	25.0534	76.7492	71.5545	67.4362
+GO:0008448	N-acetylglucosamine-6-phosphate deacetylase activity	molecular_function	93.7033	40.6153	65.1811	32.2884	37.693600000000004	35.0114
+GO:0008452	RNA ligase activity	molecular_function	29.3218	27.7125	28.5783	35.9734	38.0577	31.2452
+GO:0008453	alanine-glyoxylate transaminase activity	molecular_function	20.0107	25.3463	31.8029	33.1498	38.9397	22.471
+GO:0008460	dTDP-glucose 4,6-dehydratase activity	molecular_function	0.163955	0	0.305956	0.176628	0.486688	0.221392
+GO:0008470	isovaleryl-CoA dehydrogenase activity	molecular_function	0.065864	0	0.0611642	0	0	0
+GO:0008474	palmitoyl-(protein) hydrolase activity	molecular_function	0.17567	0	0	0	0	0
+GO:0008478	pyridoxal kinase activity	molecular_function	0.0681243	0	0	0	0	0
+GO:0008479	queuine tRNA-ribosyltransferase activity	molecular_function	3.17673	9.44072	7.99046	29.6481	29.8342	26.5023
+GO:0008483	transaminase activity	molecular_function	285.136	1640.97	1492.57	906.253	962.564	1009.74
+GO:0008484	sulfuric ester hydrolase activity	molecular_function	2.43826	21.2246	15.2274	44.8457	44.6346	62.7284
+GO:0008495	protoheme IX farnesyltransferase activity	molecular_function	0.0657425	0	0.122238	0	0	0
+GO:0008519	ammonium transmembrane transporter activity	molecular_function	0.11158	0.342864	0.248536	0.228308	0.199298	0.239211
+GO:0008531	riboflavin kinase activity	molecular_function	13.6867	25.3447	21.3303	52.5744	46.0075	49.6577
+GO:0008534	oxidized purine nucleobase lesion DNA N-glycosylase activity	molecular_function	0.769102	8.53306	5.56125	17.9834	10.9944	24.9227
+GO:0008551	cadmium-exporting ATPase activity	molecular_function	3.865	1.36716	1.79235	2.1443	2.67512	1.34029
+GO:0008556	potassium-transporting ATPase activity	molecular_function	0	0	0.835325	0	0	0.0340529
+GO:0008559	xenobiotic-transporting ATPase activity	molecular_function	0.090168	0	0	0	0	0.0396151
+GO:0008565	protein transporter activity	molecular_function	15.6629	29.5112	29.6107	136.419	165.284	154.762
+GO:0008609	alkylglycerone-phosphate synthase activity	molecular_function	0.0372581	0	0	0	0	0.0495755
+GO:0008610	lipid biosynthetic process	biological_process	0.0372581	0	0.150204	0	0	0.0495755
+GO:0008612	peptidyl-lysine modification to peptidyl-hypusine	biological_process	0.125603	0	0	0.28919	0	0.0417172
+GO:0008615	pyridoxine biosynthetic process	biological_process	8.77289	50.3188	40.9226	93.9444	92.0585	79.4775
+GO:0008616	queuosine biosynthetic process	biological_process	12.6311	68.8992	51.1221	195.021	183.918	171.177
+GO:0008641	small protein activating enzyme activity	molecular_function	44.388	109.636	91.2569	183.048	180.022	164.215
+GO:0008643	carbohydrate transport	biological_process	308.243	390.624	355.021	1092.54	787.93	857.69
+GO:0008649	rRNA methyltransferase activity	molecular_function	3.10856	19.5737	15.6598	64.815	59.9783	50.433
+GO:0008650	rRNA (uridine-2'-O-)-methyltransferase activity	molecular_function	0.099914	0	0.561123	0.307047	0	0.0665534
+GO:0008652	cellular amino acid biosynthetic process	biological_process	2.1888	11.7328	6.25914	43.8577	36.175	34.6783
+GO:0008653	lipopolysaccharide metabolic process	biological_process	0.304749	0	0	0	0	0
+GO:0008654	phospholipid biosynthetic process	biological_process	382.157	334.272	234.653	652.571	632.041	534.501
+GO:0008657	DNA topoisomerase (ATP-hydrolyzing) inhibitor activity	molecular_function	0.150029	0	0	0	0	0.673716
+GO:0008658	penicillin binding	molecular_function	24.5186	39.5217	33.0026	83.765	77.9732	80.7581
+GO:0008661	1-deoxy-D-xylulose-5-phosphate synthase activity	molecular_function	69.9209	96.8244	69.5775	191.566	183.238	149.722
+GO:0008662	1-phosphofructokinase activity	molecular_function	58.606	34.7227	47.5948	14.0036	17.6034	15.7465
+GO:0008663	2',3'-cyclic-nucleotide 2'-phosphodiesterase activity	molecular_function	2.36858	2.4759	1.26117	1.97859	2.67567	2.66498
+GO:0008664	2'-5'-RNA ligase activity	molecular_function	12.351	21.541	20.1844	35.4765	30.2323	39.7342
+GO:0008667	2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase activity	molecular_function	0.0814186	0	0	0	0	0
+GO:0008670	2,4-dienoyl-CoA reductase (NADPH) activity	molecular_function	0.039008	0	0.144836	0	0	0
+GO:0008671	2-dehydro-3-deoxygalactonokinase activity	molecular_function	0.112528	0	0	0	0	0
+GO:0008672	2-dehydro-3-deoxyglucarate aldolase activity	molecular_function	0.0695339	0	0	0	0	0
+GO:0008673	2-dehydro-3-deoxygluconokinase activity	molecular_function	0.0623156	0	0.567393	0	0	0
+GO:0008674	2-dehydro-3-deoxy-6-phosphogalactonate aldolase activity	molecular_function	0.103876	0	0	0	0	0
+GO:0008675	2-dehydro-3-deoxy-phosphogluconate aldolase activity	molecular_function	0	0	0.183357	0	0	0
+GO:0008676	3-deoxy-8-phosphooctulonate synthase activity	molecular_function	0	0	0.0639608	0	0	0
+GO:0008677	2-dehydropantoate 2-reductase activity	molecular_function	0.103171	0	0	0	0	0
+GO:0008678	2-deoxy-D-gluconate 3-dehydrogenase activity	molecular_function	1.43953	0	0	0	0	0
+GO:0008679	2-hydroxy-3-oxopropionate reductase activity	molecular_function	0.0661313	0	0	0	0	0
+GO:0008684	2-oxopent-4-enoate hydratase activity	molecular_function	0	0	0.205008	0	0	0
+GO:0008685	2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase activity	molecular_function	21.76	21.9113	19.3042	21.3913	29.527	21.6888
+GO:0008686	3,4-dihydroxy-2-butanone-4-phosphate synthase activity	molecular_function	2.6036	14.6606	10.3732	36.4527	30.9156	27.0565
+GO:0008691	3-hydroxybutyryl-CoA dehydrogenase activity	molecular_function	0.0760717	0	0	0	0	0
+GO:0008692	3-hydroxybutyryl-CoA epimerase activity	molecular_function	0.0966572	0	0	0	0	0.0158461
+GO:0008694	3-octaprenyl-4-hydroxybenzoate carboxy-lyase activity	molecular_function	0.0361644	0	0	0	0	0.0481203
+GO:0008695	3-phenylpropionate dioxygenase activity	molecular_function	0.172632	0	0.0765455	0	0	0
+GO:0008697	4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase activity	molecular_function	0	0	0.0656748	0	0	0
+GO:0008700	4-hydroxy-2-oxoglutarate aldolase activity	molecular_function	0	0	0.183357	0	0	0
+GO:0008703	5-amino-6-(5-phosphoribosylamino)uracil reductase activity	molecular_function	0.0509413	0	0	0	0	0
+GO:0008704	5-carboxymethyl-2-hydroxymuconate delta-isomerase activity	molecular_function	37.2074	46.3509	67.3938	29.4897	30.3195	28.1634
+GO:0008705	methionine synthase activity	molecular_function	1.26418	9.14238	5.56969	33.1248	26.7983	35.167
+GO:0008706	6-phospho-beta-glucosidase activity	molecular_function	0.239638	0	0	0	0	0
+GO:0008709	cholate 7-alpha-dehydrogenase activity	molecular_function	0.157247	0	0	0	0	0
+GO:0008710	8-amino-7-oxononanoate synthase activity	molecular_function	134.433	99.9964	165.645	101.869	110.552	60.6461
+GO:0008712	ADP-glyceromanno-heptose 6-epimerase activity	molecular_function	0.124194	0	0	0	0	0
+GO:0008713	ADP-heptose-lipopolysaccharide heptosyltransferase activity	molecular_function	0.319452	0	0.0976553	0	0	0.0721157
+GO:0008716	D-alanine-D-alanine ligase activity	molecular_function	21.7048	34.4742	40.9874	59.0546	61.3106	72.9592
+GO:0008720	D-lactate dehydrogenase activity	molecular_function	0.0311578	0	0	0	0	0
+GO:0008721	D-serine ammonia-lyase activity	molecular_function	13.8998	8.65483	7.6177	10.4077	13.1879	9.88361
+GO:0008725	DNA-3-methyladenine glycosylase activity	molecular_function	0.234826	0	0.324811	0	0	0
+GO:0008728	GTP diphosphokinase activity	molecular_function	11.2513	7.58619	5.60298	8.45164	9.38304	7.76994
+GO:0008730	L(+)-tartrate dehydratase activity	molecular_function	0.0637981	0	0	0.0714767	0.186906	0.177767
+GO:0008734	L-aspartate oxidase activity	molecular_function	2.06198	11.9143	6.784	25.377	25.8602	20.0365
+GO:0008736	L-fucose isomerase activity	molecular_function	0.014947	0	0.0554808	0	0	0
+GO:0008740	L-rhamnose isomerase activity	molecular_function	0.0437716	0	0	0	0	0
+GO:0008742	L-ribulose-phosphate 4-epimerase activity	molecular_function	6.26478	1.75824	3.5795	2.61482	2.92358	3.20734
+GO:0008743	L-threonine 3-dehydrogenase activity	molecular_function	1.41977	14.1858	11.4034	21.2411	23.4366	38.7121
+GO:0008744	L-xylulokinase activity	molecular_function	0.0359457	0	0.267842	0	0	0
+GO:0008745	N-acetylmuramoyl-L-alanine amidase activity	molecular_function	18.2657	36.1215	29.4947	133.626	124.848	128.1
+GO:0008747	N-acetylneuraminate lyase activity	molecular_function	0.130659	0	0	0	0	0.0434635
+GO:0008748	N-ethylmaleimide reductase activity	molecular_function	0.165389	0	0	0	0	0
+GO:0008750	NAD(P)+ transhydrogenase (AB-specific) activity	molecular_function	0.0392267	0	0	0	0	0.0260975
+GO:0008752	FMN reductase activity	molecular_function	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0008756	o-succinylbenzoate-CoA ligase activity	molecular_function	0	0	0.114796	0	0	0
+GO:0008757	S-adenosylmethionine-dependent methyltransferase activity	molecular_function	2.08456	10.6931	9.83756	42.5034	41.2786	45.9139
+GO:0008760	UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity	molecular_function	38.5198	118.21	85.9788	228.754	204.022	229.143
+GO:0008761	UDP-N-acetylglucosamine 2-epimerase activity	molecular_function	41.9718	61.1861	61.2957	87.8383	94.632	92.6222
+GO:0008762	UDP-N-acetylmuramate dehydrogenase activity	molecular_function	14.6646	61.1795	36.3056	71.2015	78.7381	76.3167
+GO:0008763	UDP-N-acetylmuramate-L-alanine ligase activity	molecular_function	6.90332	7.10517	3.98627	11.2904	10.8987	10.4893
+GO:0008764	UDP-N-acetylmuramoylalanine-D-glutamate ligase activity	molecular_function	70.7605	58.8999	41.878	59.0159	61.0479	68.3933
+GO:0008765	UDP-N-acetylmuramoylalanyl-D-glutamate-2,6-diaminopimelate ligase activity	molecular_function	11.8484	6.35919	3.91428	6.04182	7.49536	6.00591
+GO:0008766	UDP-N-acetylmuramoylalanyl-D-glutamyl-2,6-diaminopimelate-D-alanyl-D-alanine ligase activity	molecular_function	96.3152	104.362	111.272	118.325	117.007	103.742
+GO:0008767	UDP-galactopyranose mutase activity	molecular_function	15.2063	28.828	19.0439	28.3034	39.0528	28.5971
+GO:0008768	UDP-sugar diphosphatase activity	molecular_function	0.0161622	0	0	0	0	0
+GO:0008771	[citrate (pro-3S)-lyase] ligase activity	molecular_function	0.080252	0	0.0994144	0	0	0
+GO:0008772	[isocitrate dehydrogenase (NADP+)] kinase activity	molecular_function	0.0919179	0	0.056834	0	0	0.0409087
+GO:0008773	[protein-PII] uridylyltransferase activity	molecular_function	0.0576492	0	0	0	0	0
+GO:0008774	acetaldehyde dehydrogenase (acetylating) activity	molecular_function	0.677937	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0008775	acetate CoA-transferase activity	molecular_function	0.0336125	0	0.211098	0	0	0.24694
+GO:0008776	acetate kinase activity	molecular_function	37.1161	74.8308	75.5669	124.392	124.077	86.9996
+GO:0008777	acetylornithine deacetylase activity	molecular_function	0.0727663	0	0	0	0	0
+GO:0008779	acyl-[acyl-carrier-protein]-phospholipid O-acyltransferase activity	molecular_function	0.0121034	0	0	0	0	0
+GO:0008783	agmatinase activity	molecular_function	1.92333	13.7975	13.3354	36.6205	39.4291	38.0181
+GO:0008784	alanine racemase activity	molecular_function	5.94139	12.431	8.13114	28.4637	26.1066	25.8735
+GO:0008785	alkyl hydroperoxide reductase activity	molecular_function	16.7778	159.381	159.194	520.725	417.94	348.992
+GO:0008786	allose 6-phosphate isomerase activity	molecular_function	0	0	0.300724	0	0	0
+GO:0008787	allose kinase activity	molecular_function	0	0	0.404198	0	0	0
+GO:0008791	arginine N-succinyltransferase activity	molecular_function	0.0549272	0	0	0	0	0
+GO:0008792	arginine decarboxylase activity	molecular_function	31.2184	65.9514	56.9077	81.5658	79.3391	88.8675
+GO:0008793	aromatic-amino-acid:2-oxoglutarate aminotransferase activity	molecular_function	0.0698499	0	0	0	0	0
+GO:0008794	arsenate reductase (glutaredoxin) activity	molecular_function	0.231472	0	0	0	0	0
+GO:0008795	NAD+ synthase activity	molecular_function	8.39707	9.14985	7.37322	7.16919	8.61994	11.3556
+GO:0008798	beta-aspartyl-peptidase activity	molecular_function	0.0596421	0.136474	0.275104	1.1145	0.99395	1.70167
+GO:0008800	beta-lactamase activity	molecular_function	211864	95932	117416	37667.8	49698.2	24928.3
+GO:0008801	beta-phosphoglucomutase activity	molecular_function	0.0476602	0	0	0	0	0
+GO:0008802	betaine-aldehyde dehydrogenase activity	molecular_function	0.0319598	0	0.162338	0	0	0
+GO:0008803	bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity	molecular_function	0.0695339	0	0	0	0	0
+GO:0008804	carbamate kinase activity	molecular_function	82.2665	17.393	23.6271	27.2268	30.7455	22.1183
+GO:0008806	carboxymethylenebutenolidase activity	molecular_function	0.0732524	0	0	0	0	0
+GO:0008808	cardiolipin synthase activity	molecular_function	0.17618	3.14249	2.99236	4.88365	5.64617	5.86957
+GO:0008810	cellulase activity	molecular_function	277.944	290.699	258.98	1025.09	852.867	885.348
+GO:0008812	choline dehydrogenase activity	molecular_function	0.0319598	0	0.088634	0	0	0
+GO:0008814	citrate CoA-transferase activity	molecular_function	0.0351437	0	0	0	0	0
+GO:0008815	citrate (pro-3S)-lyase activity	molecular_function	0.0351437	0	0	0	0	0
+GO:0008817	cob(I)yrinic acid a,c-diamide adenosyltransferase activity	molecular_function	21.7937	49.801	29.3342	103.208	97.7671	103.929
+GO:0008818	cobalamin 5'-phosphate synthase activity	molecular_function	0.529245	6.25324	4.22822	14.6174	14.1724	18.2461
+GO:0008821	crossover junction endodeoxyribonuclease activity	molecular_function	115.788	250.461	244.29	111.608	116.409	99.5046
+GO:0008825	cyclopropane-fatty-acyl-phospholipid synthase activity	molecular_function	0	0	0.0903029	0	0	0
+GO:0008827	cytochrome o ubiquinol oxidase activity	molecular_function	0.104532	0	0	0	0	0
+GO:0008829	dCTP deaminase activity	molecular_function	16.3852	34.0035	23.718	47.8695	57.1222	56.6387
+GO:0008830	dTDP-4-dehydrorhamnose 3,5-epimerase activity	molecular_function	2.59613	17.5311	19.6226	47.297	40.3979	54.3972
+GO:0008831	dTDP-4-dehydrorhamnose reductase activity	molecular_function	0.0700929	0	0	0.14355	0.187904	0.139995
+GO:0008832	dGTPase activity	molecular_function	1.32146	7.17098	4.90211	16.84	15.7692	21.3615
+GO:0008833	deoxyribonuclease IV (phage-T4-induced) activity	molecular_function	2.4279	2.54521	2.80124	1.05492	2.42825	2.98876
+GO:0008834	di-trans,poly-cis-decaprenylcistransferase activity	molecular_function	0.0797416	0	0	0	0	0
+GO:0008835	diaminohydroxyphosphoribosylaminopyrimidine deaminase activity	molecular_function	0.0509413	0	0	0	0	0
+GO:0008836	diaminopimelate decarboxylase activity	molecular_function	0.525356	12.879	11.1718	52.9782	52.4902	70.1337
+GO:0008837	diaminopimelate epimerase activity	molecular_function	0.867412	24.0936	32.8304	40.3203	43.4051	78.7259
+GO:0008838	diaminopropionate ammonia-lyase activity	molecular_function	0	0	0.0918816	0	0	0
+GO:0008839	4-hydroxy-tetrahydrodipicolinate reductase	molecular_function	4.81184	10.8331	9.76259	23.6066	26.7306	35.357
+GO:0008840	4-hydroxy-tetrahydrodipicolinate synthase	molecular_function	24.8116	37.2906	60.714	40.7138	43.0469	39.4255
+GO:0008847	Enterobacter ribonuclease activity	molecular_function	0.0369908	0	0	0	0	0
+GO:0008849	enterochelin esterase activity	molecular_function	0	0	0	0	0	0.0307219
+GO:0008852	exodeoxyribonuclease I activity	molecular_function	0	0	0.0705914	0	0	0
+GO:0008853	exodeoxyribonuclease III activity	molecular_function	2.92161	32.4019	21.4675	69.038	56.7264	97.0661
+GO:0008854	exodeoxyribonuclease V activity	molecular_function	1.96909	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0008855	exodeoxyribonuclease VII activity	molecular_function	9.96534	32.9928	26.8289	117.871	107.577	100.856
+GO:0008859	exoribonuclease II activity	molecular_function	4.57448	15.0492	17.6433	32.604	34.212	38.5598
+GO:0008860	ferredoxin-NAD+ reductase activity	molecular_function	0.716775	18.2606	26.7851	56.2473	59.6931	111.807
+GO:0008861	formate C-acetyltransferase activity	molecular_function	18.8015	60.7435	55.2215	127.824	108.416	124.248
+GO:0008863	formate dehydrogenase (NAD+) activity	molecular_function	0.173677	0	0.302754	0.0992815	0	0.0263239
+GO:0008866	fructuronate reductase activity	molecular_function	0.0554375	0	0	0	0	0
+GO:0008867	galactarate dehydratase activity	molecular_function	0.0335639	0	0	0	0	0
+GO:0008868	galactitol-1-phosphate 5-dehydrogenase activity	molecular_function	0	0	0	0	0	0.07577
+GO:0008872	glucarate dehydratase activity	molecular_function	0.0507469	0	0	0	0	0
+GO:0008878	glucose-1-phosphate adenylyltransferase activity	molecular_function	57.1605	41.963	36.8359	82.3904	87.5629	79.4275
+GO:0008879	glucose-1-phosphate thymidylyltransferase activity	molecular_function	3.5585	2.06363	5.23707	0.824146	1.58891	2.01888
+GO:0008880	glucuronate isomerase activity	molecular_function	0.057309	0	0.0705914	0	0	0
+GO:0008881	glutamate racemase activity	molecular_function	5.79817	25.3437	28.2647	44.3002	51.8337	50.065
+GO:0008883	glutamyl-tRNA reductase activity	molecular_function	0.37873	6.39639	6.80087	12.4758	8.07752	6.09792
+GO:0008884	glutathionylspermidine amidase activity	molecular_function	0.0852829	0	0	0	0	0
+GO:0008885	glutathionylspermidine synthase activity	molecular_function	0.0852829	0	0	0	0	0
+GO:0008887	glycerate kinase activity	molecular_function	42.9862	9.93042	11.9993	14.1016	15.5978	11.5215
+GO:0008888	glycerol dehydrogenase [NAD+] activity	molecular_function	0.0508684	0	0	0	0	0
+GO:0008889	glycerophosphodiester phosphodiesterase activity	molecular_function	44.9419	25.4133	31.2513	18.283	20.8246	13.5499
+GO:0008890	glycine C-acetyltransferase activity	molecular_function	134.503	98.7123	165.423	101.135	109.359	59.248
+GO:0008891	glycolate oxidase activity	molecular_function	0.0359943	0	0.0668025	0	0	0
+GO:0008894	guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity	molecular_function	0.254877	0	0.0675693	0	0	0.0484437
+GO:0008897	holo-[acyl-carrier-protein] synthase activity	molecular_function	11.3564	37.0844	35.5736	66.3844	61.5334	76.6083
+GO:0008898	S-adenosylmethionine-homocysteine S-methyltransferase activity	molecular_function	0.0137561	0	0.0127651	0	0	0.0549114
+GO:0008899	homoserine O-succinyltransferase activity	molecular_function	1.9575	18.6499	14.6035	39.4573	34.2343	40.4424
+GO:0008901	ferredoxin hydrogenase activity	molecular_function	88.637200000000007	126.184	111.258	342.032	345.473	294.15
+GO:0008908	isochorismatase activity	molecular_function	0	0	0.127425	0	0	0
+GO:0008909	isochorismate synthase activity	molecular_function	0.0236965	0	0	0	0	0
+GO:0008911	lactaldehyde dehydrogenase activity	molecular_function	0.0389594	0	0.0740646	0	0	0
+GO:0008914	leucyltransferase activity	molecular_function	0.791899	2.19613	0.980296	6.0269	4.87048	7.72586
+GO:0008917	lipopolysaccharide N-acetylglucosaminyltransferase activity	molecular_function	0.157831	0	0.0976553	0	0	0
+GO:0008918	lipopolysaccharide 3-alpha-galactosyltransferase activity	molecular_function	0.671715	0	0.259948	0	0	0.372512
+GO:0008919	lipopolysaccharide glucosyltransferase I activity	molecular_function	0.591877	0	0.208121	0	0	0.22385
+GO:0008921	lipopolysaccharide-1,6-galactosyltransferase activity	molecular_function	0.365509	0	0.407987	0	0	0.181033
+GO:0008922	long-chain fatty acid [acyl-carrier-protein] ligase activity	molecular_function	0.0121034	0	0	0	0	0
+GO:0008923	lysine decarboxylase activity	molecular_function	0.864252	7.43865	3.59976	26.3429	23.4271	26.2391
+GO:0008925	maltose O-acetyltransferase activity	molecular_function	0.120913	0	0	0	0	0
+GO:0008926	mannitol-1-phosphate 5-dehydrogenase activity	molecular_function	0.0243284	0	0.225757	0	0	0
+GO:0008929	methylglyoxal synthase activity	molecular_function	23.3534	76.7908	74.5292	232.855	205.703	207.253
+GO:0008932	lytic endotransglycosylase activity	molecular_function	0.0509413	0	0	0	0	0
+GO:0008933	lytic transglycosylase activity	molecular_function	3.6939	22.2586	12.6333	61.629	55.6229	68.0379
+GO:0008934	inositol monophosphate 1-phosphatase activity	molecular_function	37.4463	42.6245	34.9784	32.6609	40.6059	39.8263
+GO:0008939	nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity	molecular_function	0.612098	3.85622	2.08639	5.89497	5.93523	6.95066
+GO:0008940	nitrate reductase activity	molecular_function	0.176593	0	0	0	0	0
+GO:0008941	nitric oxide dioxygenase activity	molecular_function	0.0466881	0	0	0	0	0
+GO:0008942	nitrite reductase [NAD(P)H] activity	molecular_function	0.0812241	0	0	0	0	0
+GO:0008948	oxaloacetate decarboxylase activity	molecular_function	89.2005	91.9808	86.0155	151.96	150.417	136.593
+GO:0008949	oxalyl-CoA decarboxylase activity	molecular_function	0	0	0	0	0	0.0418465
+GO:0008955	peptidoglycan glycosyltransferase activity	molecular_function	1.29329	6.72394	4.69255	17.615	16.7616	17.2018
+GO:0008959	phosphate acetyltransferase activity	molecular_function	3.84906	26.167	24.122	49.8	56.3004	73.964
+GO:0008960	phosphatidylglycerol-membrane-oligosaccharide glycerophosphotransferase activity	molecular_function	0.0907756	0	0	0	0	0
+GO:0008961	phosphatidylglycerol-prolipoprotein diacylglyceryl transferase activity	molecular_function	48.0236	70.3409	80.3992	44.6553	44.9929	49.183
+GO:0008962	phosphatidylglycerophosphatase activity	molecular_function	0.359773	0.138901	0.580113	0.147927	0.0322939	0.175277
+GO:0008963	phospho-N-acetylmuramoyl-pentapeptide-transferase activity	molecular_function	131.557	113.922	110.665	196.914	188.244	186.001
+GO:0008964	phosphoenolpyruvate carboxylase activity	molecular_function	0.0536877	0.262166	0	0.262877	0.15294	0.185011
+GO:0008965	phosphoenolpyruvate-protein phosphotransferase activity	molecular_function	11.9199	14.503	13.3166	20.8846	25.1986	16.0476
+GO:0008966	phosphoglucosamine mutase activity	molecular_function	5.36276	24.3727	15.3275	76.9179	63.1667	59.5564
+GO:0008967	phosphoglycolate phosphatase activity	molecular_function	1.10472	12.5617	8.67494	34.2202	34.1733	43.222
+GO:0008972	phosphomethylpyrimidine kinase activity	molecular_function	0	0.451147	0.147408	0.243752	0.0708166	0.105683
+GO:0008973	phosphopentomutase activity	molecular_function	15.6617	14.8909	14.3173	23.2114	28.232	22.4618
+GO:0008977	prephenate dehydrogenase activity	molecular_function	3.62641	16.9319	12.9249	61.6974	63.1192	58.5705
+GO:0008979	prophage integrase activity	molecular_function	0.0479276	0	0	0	0	0
+GO:0008980	propionate kinase activity	molecular_function	0.0457159	0	0	0	0	0
+GO:0008982	protein-N(PI)-phosphohistidine-sugar phosphotransferase activity	molecular_function	1257.46	552.953	733.664	428.284	475.558	379.171
+GO:0008983	protein-glutamate O-methyltransferase activity	molecular_function	1.39005	3.99773	4.45073	48.722	37.7532	26.3392
+GO:0008984	protein-glutamate methylesterase activity	molecular_function	20.1425	29.1477	37.5445	97.2133	98.8375	97.557
+GO:0008986	pyruvate, water dikinase activity	molecular_function	0.607431	0.574832	0.355077	0.495985	0.352955	0.322516
+GO:0008987	quinolinate synthetase A activity	molecular_function	3.84342	39.5666	33.242	88.7446	86.3151	79.0776
+GO:0008989	rRNA (guanine-N1-)-methyltransferase activity	molecular_function	0.151123	0	0	0	0	0
+GO:0008993	rhamnulokinase activity	molecular_function	0.0552431	0	0	0	0	0
+GO:0008998	ribonucleoside-triphosphate reductase activity	molecular_function	0.137926	0.213999	0.268834	0.0912236	0.059683	0.121465
+GO:0008999	ribosomal-protein-alanine N-acetyltransferase activity	molecular_function	7.87636	3.88773	3.60458	1.22769	3.346	1.58729
+GO:0009001	serine O-acetyltransferase activity	molecular_function	1.70935	12.2732	6.72188	25.6384	18.8175	41.6856
+GO:0009002	serine-type D-Ala-D-Ala carboxypeptidase activity	molecular_function	11.5977	41.1042	43.4606	77.3469	76.4782	95.1614
+GO:0009007	site-specific DNA-methyltransferase (adenine-specific) activity	molecular_function	2.28859	23.5113	20.5403	37.9433	34.5571	34.3512
+GO:0009010	sorbitol-6-phosphate 2-dehydrogenase activity	molecular_function	0.0770925	0	0	0	0	0
+GO:0009011	starch synthase activity	molecular_function	28.4469	41.8189	33.0288	199.654	191.763	161.329
+GO:0009013	succinate-semialdehyde dehydrogenase [NAD(P)+] activity	molecular_function	0.0781861	0	0	0	0	0
+GO:0009014	succinyl-diaminopimelate desuccinylase activity	molecular_function	0.0496046	0	0	0	0	0
+GO:0009017	succinylglutamate desuccinylase activity	molecular_function	0.118701	0	0	0	0	0
+GO:0009018	sucrose phosphorylase activity	molecular_function	0	0	0.165946	0	0	0
+GO:0009022	tRNA nucleotidyltransferase activity	molecular_function	3.27018	22.0906	19.5707	49.8565	44.7456	41.7264
+GO:0009024	tagatose-6-phosphate kinase activity	molecular_function	134.941	134.531	133.368	207.117	206.169	216.128
+GO:0009025	tagatose-bisphosphate aldolase activity	molecular_function	0.103414	0	0	0	0	0
+GO:0009026	tagaturonate reductase activity	molecular_function	0.037331	0	0	0	0	0.0489934
+GO:0009027	tartrate dehydrogenase activity	molecular_function	0	0	0.0963923	0	0	0
+GO:0009028	tartronate-semialdehyde synthase activity	molecular_function	0.0297725	0	0.225667	0	0	0.0197914
+GO:0009030	thiamine-phosphate kinase activity	molecular_function	0.732208	0.75966	1.07344	1.04805	0.508174	0.872342
+GO:0009032	thymidine phosphorylase activity	molecular_function	0.0414384	0	0	0	0	0
+GO:0009033	trimethylamine-N-oxide reductase activity	molecular_function	0.023818	0	0	0	0	0
+GO:0009034	tryptophanase activity	molecular_function	8.04622	2.92195	5.98882	0.332439	0.870287	2.26893
+GO:0009035	Type I site-specific deoxyribonuclease activity	molecular_function	0.0504309	0.145202	0.0935957	0.0687908	0.0825362	0.0671032
+GO:0009036	Type II site-specific deoxyribonuclease activity	molecular_function	0	0	0.0195762	0	0	0
+GO:0009037	tyrosine-based site-specific recombinase activity	molecular_function	20.305	35.3561	37.0454	66.3327	67.0833	100.221
+GO:0009039	urease activity	molecular_function	0.0309634	0.628694	1.87584	1.02724	1.13578	2.2221
+GO:0009045	xylose isomerase activity	molecular_function	0	0	0.0769063	0	0	0
+GO:0009052	pentose-phosphate shunt, non-oxidative branch	biological_process	0.610882	1.3183	1.11259	1.49649	0.69458	0.912054
+GO:0009055	electron carrier activity	molecular_function	6265.93	17087.6	14039.6	11709.4	10529.7	14837.9
+GO:0009056	catabolic process	biological_process	0.0648918	0	0.0618859	0	0	0
+GO:0009058	biosynthetic process	biological_process	196.086	1582.63	1415.08	855.682	911.302	991.898
+GO:0009059	macromolecule biosynthetic process	biological_process	0.0777973	0.0373389	0.0360851	0.37815	0.277906	0.129388
+GO:0009060	aerobic respiration	biological_process	0.19696	0	0	0	0	0.106654
+GO:0009061	anaerobic respiration	biological_process	0.288319	0	0.605102	0	0	0.0680087
+GO:0009063	cellular amino acid catabolic process	biological_process	0.139554	0	0.0742451	0	0	0
+GO:0009073	aromatic amino acid family biosynthetic process	biological_process	35.5897	200.985	147.988	522.027	401.689	615.165
+GO:0009082	branched-chain amino acid biosynthetic process	biological_process	5.75651	34.0291	23.5696	99.5964	78.3471	48.7481
+GO:0009086	methionine biosynthetic process	biological_process	18.0869	54.278	42.5231	131.408	144.169	159.092
+GO:0009088	threonine biosynthetic process	biological_process	6.8588	38.222	33.2371	122.977	130.335	124.927
+GO:0009089	lysine biosynthetic process via diaminopimelate	biological_process	15.0902	91.9391	92.5956	263.937	268.052	323.746
+GO:0009090	homoserine biosynthetic process	biological_process	0.0825366	0	0.0395132	0	0	0
+GO:0009094	L-phenylalanine biosynthetic process	biological_process	3.19992	34.7949	21.2976	91.1197	79.4176	122.027
+GO:0009097	isoleucine biosynthetic process	biological_process	23.0182	166.779	110.218	484.051	445.67	384.469
+GO:0009098	leucine biosynthetic process	biological_process	17.2373	116.824	78.8826	337.757	263.043	200.66
+GO:0009099	valine biosynthetic process	biological_process	17.8295	144.548	89.1323	418.86	368.973	308.808
+GO:0009102	biotin biosynthetic process	biological_process	134.938	100.825	166.632	103.774	113.073	64.0356
+GO:0009103	lipopolysaccharide biosynthetic process	biological_process	28.9008	95.5152	80.0123	224.725	237.16	270.926
+GO:0009107	lipoate biosynthetic process	biological_process	0.341083	0	0	0	0	0
+GO:0009108	coenzyme biosynthetic process	biological_process	0.771678	0.763254	0.841504	1.98225	0.998638	1.40351
+GO:0009113	purine nucleobase biosynthetic process	biological_process	4.34897	6.08064	4.69372	57.9527	46.1025	36.3772
+GO:0009114	hypoxanthine catabolic process	biological_process	0.0226271	0	0	0	0	0.060215
+GO:0009115	xanthine catabolic process	biological_process	0.0258109	0	0	0	0	0.0119007
+GO:0009116	nucleoside metabolic process	biological_process	183.283	173.096	166.842	282.605	293.903	312.419
+GO:0009117	nucleotide metabolic process	biological_process	0.530436	0.20471	0	0.656919	0.523974	0.141838
+GO:0009143	nucleoside triphosphate catabolic process	biological_process	44.6282	107.691	98.1461	119.472	133.484	132.151
+GO:0009152	purine ribonucleotide biosynthetic process	biological_process	2.56609	19.096	13.0901	53.6147	49.7911	53.0492
+GO:0009156	ribonucleoside monophosphate biosynthetic process	biological_process	25.8198	63.8724	47.9149	154.152	158.062	149.163
+GO:0009163	nucleoside biosynthetic process	biological_process	0.481488	3.60526	1.98942	5.81473	5.79509	6.63769
+GO:0009165	nucleotide biosynthetic process	biological_process	30.487	98.6307	69.8079	249.977	256.024	218.589
+GO:0009166	nucleotide catabolic process	biological_process	311.175	63.4439	114.527	50.8058	59.364	47.2532
+GO:0009168	purine ribonucleoside monophosphate biosynthetic process	biological_process	0.028533	0	0	0	0	0
+GO:0009186	deoxyribonucleoside diphosphate metabolic process	biological_process	0.0600067	0	0.0919719	0	0	0.0329857
+GO:0009220	pyrimidine ribonucleotide biosynthetic process	biological_process	16.3852	34.0035	23.718	47.8695	57.1222	56.6387
+GO:0009225	nucleotide-sugar metabolic process	biological_process	0	0	0.0963923	0.118854	0.285068	0.146398
+GO:0009228	thiamine biosynthetic process	biological_process	65.9311	94.8326	96.9011	131.087	138.557	118.584
+GO:0009229	thiamine diphosphate biosynthetic process	biological_process	9.66674	36.1095	57.0916	49.4567	51.4559	44.7386
+GO:0009231	riboflavin biosynthetic process	biological_process	26.8644	123.185	75.1188	335.946	260.087	235.304
+GO:0009234	menaquinone biosynthetic process	biological_process	0	0	0.114796	0	0	0.106654
+GO:0009236	cobalamin biosynthetic process	biological_process	27.5091	102.578	67.0977	217.498	202.722	242.371
+GO:0009239	enterobactin biosynthetic process	biological_process	0.256505	0	0.463062	0	0	0
+GO:0009242	colanic acid biosynthetic process	biological_process	0.504479	0	0	0	0	0
+GO:0009243	O antigen biosynthetic process	biological_process	3.95779	2.06363	5.67248	0.881919	1.79053	2.06684
+GO:0009244	lipopolysaccharide core region biosynthetic process	biological_process	3.56912	0	2.71062	0	0	0.606904
+GO:0009245	lipid A biosynthetic process	biological_process	25.8731	67.5963	52.2234	183.861	175.804	176.931
+GO:0009246	enterobacterial common antigen biosynthetic process	biological_process	5.64991	40.0277	33.9237	99.5594	100.778	85.05
+GO:0009247	glycolipid biosynthetic process	biological_process	2.04611	24.743	19.4994	37.4554	36.2616	38.6475
+GO:0009249	protein lipoylation	biological_process	81.2114	113.076	116.419	75.2676	82.2268	88.1895
+GO:0009250	glucan biosynthetic process	biological_process	0.282267	0	0.209203	0	0	0.0477969
+GO:0009252	peptidoglycan biosynthetic process	biological_process	313.314	544.981	462.181	950.371	897.884	904.166
+GO:0009253	peptidoglycan catabolic process	biological_process	18.411	36.1215	29.4947	133.626	124.848	128.196
+GO:0009254	peptidoglycan turnover	biological_process	31.1563	42.0167	22.6178	35.7245	44.298	40.5486
+GO:0009263	deoxyribonucleotide biosynthetic process	biological_process	0.0600067	0	0	0	0	0
+GO:0009264	deoxyribonucleotide catabolic process	biological_process	37.2626	51.6837	37.4594	96.9333	82.2193	100.315
+GO:0009266	response to temperature stimulus	biological_process	0.280031	0	0.374338	0	0	0.123535
+GO:0009267	cellular response to starvation	biological_process	2264.11	440.619	906.906	318.673	321.72	232.771
+GO:0009268	response to pH	biological_process	0.613604	0	1.6706	0	0	0.175277
+GO:0009271	phage shock	biological_process	0.0802034	0	0	0	0	0
+GO:0009273	peptidoglycan-based cell wall biogenesis	biological_process	0.10949	0	0	0	0	0
+GO:0009290	DNA import into cell involved in transformation	biological_process	0.201602	0	0.187552	0	0	0
+GO:0009294	DNA mediated transformation	biological_process	2.56493	11.4758	10.3167	22.3573	23.3387	24.0672
+GO:0009297	pilus assembly	biological_process	0.242579	0	0.136672	0	0	0.267701
+GO:0009298	GDP-mannose biosynthetic process	biological_process	0.03981	0	0	0	0	0
+GO:0009305	protein biotinylation	biological_process	0.178999	0	0	0	0	0
+GO:0009306	protein secretion	biological_process	877.244	1017.66	891.253	2367.59	2080.77	2454.75
+GO:0009307	DNA restriction-modification system	biological_process	0.0504309	2.26862	0.822244	0.43274	0.435274	0.803427
+GO:0009308	amine metabolic process	biological_process	0.0686346	0	0	0	0	0
+GO:0009372	quorum sensing	biological_process	14.0495	61.0926	57.6394	116.659	97.5631	177.173
+GO:0009378	four-way junction helicase activity	molecular_function	23.5227	47.2441	33.9917	62.3641	65.5055	53.3793
+GO:0009381	excinuclease ABC activity	molecular_function	33.0723	48.8858	41.4473	86.4396	83.328	76.1268
+GO:0009389	dimethyl sulfoxide reductase activity	molecular_function	0.102199	0	0.252686	0	0	0
+GO:0009395	phospholipid catabolic process	biological_process	0	0	0.244476	0	0	0.175277
+GO:0009396	folic acid-containing compound biosynthetic process	biological_process	148.827	112.433	131.847	193.273	199.963	205.659
+GO:0009398	FMN biosynthetic process	biological_process	13.6867	25.3447	21.3303	52.5744	46.0075	49.6577
+GO:0009399	nitrogen fixation	biological_process	91.3997	67.8835	95.5277	38.4175	43.3311	42.1805
+GO:0009401	phosphoenolpyruvate-dependent sugar phosphotransferase system	biological_process	1543.52	667.246	893.312	537.755	597.365	457.14
+GO:0009403	toxin biosynthetic process	biological_process	4.60246	18.8217	6.64475	57.9102	57.4213	67.5969
+GO:0009405	pathogenesis	biological_process	31.1835	141.85	162.353	252.317	242.793	327.371
+GO:0009407	toxin catabolic process	biological_process	0.050601	0	0	0	0	0
+GO:0009408	response to heat	biological_process	109.566	50.9682	73.9788	56.7669	69.8771	78.3284
+GO:0009411	response to UV	biological_process	0.208553	0.972351	0.331306	3.19807	3.98802	2.7902
+GO:0009423	chorismate biosynthetic process	biological_process	31.1311	166.488	114.531	470.438	356.115	559.058
+GO:0009432	SOS response	biological_process	145.116	306.417	292.759	418.886	430.115	413.781
+GO:0009435	NAD biosynthetic process	biological_process	212.175	215.108	224.553	298.56	304.754	270.644
+GO:0009436	glyoxylate catabolic process	biological_process	0.0297725	0	0.225667	0	0	0.0197914
+GO:0009437	carnitine metabolic process	biological_process	0.988494	0	0.590893	0	0	0.130229
+GO:0009438	methylglyoxal metabolic process	biological_process	0	0	0.0997753	0	0	0.170588
+GO:0009443	pyridoxal 5'-phosphate salvage	biological_process	0.0681243	0	0	0	0	0
+GO:0009446	putrescine biosynthetic process	biological_process	0.0266129	0	0.0493915	0	0	0
+GO:0009447	putrescine catabolic process	biological_process	0.0785507	0	0	0	0	0.0828522
+GO:0009450	gamma-aminobutyric acid catabolic process	biological_process	0.099865399999999993	0	0.079748	0	0	0
+GO:0009451	RNA modification	biological_process	16.4155	32.9565	25.4608	66.354	59.0348	65.1518
+GO:0009605	response to external stimulus	biological_process	0.270674	0	0	0	0	0.126833
+GO:0009607	response to biotic stimulus	biological_process	0.114108	0	0	0	0	0
+GO:0009617	response to bacterium	biological_process	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0009636	response to toxic substance	biological_process	5102.53	13939.3	11938.1	4792.25	5139.37	6668.11
+GO:0009637	response to blue light	biological_process	0.0457645	0	0	0	0	0.0304632
+GO:0009658	chloroplast organization	biological_process	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009678	hydrogen-translocating pyrophosphatase activity	molecular_function	329.96	76.3616	128.399	27.1477	34.4745	46.8286
+GO:0009735	response to cytokinin	biological_process	54.7538	136.348	154.791	135.119	153.925	144.864
+GO:0009758	carbohydrate utilization	biological_process	0.0941296	0	0	0	0	0
+GO:0009791	post-embryonic development	biological_process	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009845	seed germination	biological_process	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009847	spore germination	biological_process	0.720567	4.40828	4.72669	11.3903	13.797	20.0624
+GO:0009882	blue light photoreceptor activity	molecular_function	0.0457645	0	0	0	0	0.0304632
+GO:0009927	histidine phosphotransfer kinase activity	molecular_function	0.0862308	0	0.0824995	0	0	0.0390654
+GO:0009970	cellular response to sulfate starvation	biological_process	0	0	0.111097	0	0	0
+GO:0009982	pseudouridine synthase activity	molecular_function	70.3399	130.899	109.994	224.307	223.807	282.881
+GO:0009992	cellular water homeostasis	biological_process	0.0545626	0	0	0	0	0.0773546
+GO:0010033	response to organic substance	biological_process	0.098796	0	0.0815072	0	0	0
+GO:0010038	response to metal ion	biological_process	0	0	0	0.444106	0	0
+GO:0010041	response to iron(III) ion	biological_process	0	0	0.287237	0	0	0.103032
+GO:0010043	response to zinc ion	biological_process	0.151682	0	0	0	0	0
+GO:0010045	response to nickel cation	biological_process	0.535151	0.341931	0.68724	0.364397	1.03378	0.533074
+GO:0010124	phenylacetate catabolic process	biological_process	7.54172	28.8002	27.2003	80.5649	75.2042	66.3658
+GO:0010133	proline catabolic process to glutamate	biological_process	8.85997	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0010181	FMN binding	molecular_function	79.7964	351.531	281.643	831.394	763.525	871.377
+GO:0010188	response to microbial phytotoxin	biological_process	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0010212	response to ionizing radiation	biological_process	0.0778216	0	0	0	0	0.0845339
+GO:0010285	L,L-diaminopimelate aminotransferase activity	molecular_function	0.157101	6.67792	14.7784	14.832	20.9314	21.7579
+GO:0010312	detoxification of zinc ion	biological_process	0.0237208	0	0.0220119	0	0	0
+GO:0010340	carboxyl-O-methyltransferase activity	molecular_function	0	0.465523	0.128508	0.212515	0.618316	0.2764
+GO:0010438	cellular response to sulfur starvation	biological_process	0.0481949	0	0.0452868	0	0	0.0217641
+GO:0010468	regulation of gene expression	biological_process	0.0281198	0	0	0	0	0
+GO:0010498	proteasomal protein catabolic process	biological_process	1.61894	3.5695	1.70137	1.70878	0.959095	2.58087
+GO:0010501	RNA secondary structure unwinding	biological_process	0.0880779	0	0.0645923	0	0	0.0529711
+GO:0010608	posttranscriptional regulation of gene expression	biological_process	0.108493	0	0	0	0	0
+GO:0010628	positive regulation of gene expression	biological_process	0.0309148	0	0	0	0	0.0822378
+GO:0010629	negative regulation of gene expression	biological_process	0	0	0	0	0	0.112378
+GO:0010795	regulation of ubiquinone biosynthetic process	biological_process	0.130416	0	0.0604876	0	0	0
+GO:0010967	regulation of polyamine biosynthetic process	biological_process	0.0983099	0	0.072937	0	0	0
+GO:0010974	negative regulation of barrier septum assembly	biological_process	0.108615	0	0	0	0	0.144684
+GO:0015020	glucuronosyltransferase activity	molecular_function	0.0280226	0	0	0	0	0
+GO:0015031	protein transport	biological_process	13.7671	74.1518	52.2411	164.606	155.869	146.374
+GO:0015035	protein disulfide oxidoreductase activity	molecular_function	145.999	885.684	795.836	1827.91	1439.39	2201.69
+GO:0015036	disulfide oxidoreductase activity	molecular_function	0.101688	0	0	0	0	0
+GO:0015074	DNA integration	biological_process	27.3991	127.474	85.9255	151.825	123.73	127.694
+GO:0015075	ion transmembrane transporter activity	molecular_function	70.5704	19.0135	31.7417	17.3804	35.2874	19.128
+GO:0015078	hydrogen ion transmembrane transporter activity	molecular_function	246.541	810.498	544.595	1167.5	1155.27	996.899
+GO:0015079	potassium ion transmembrane transporter activity	molecular_function	0.40753	0.73609	0.355799	0.343382	0.256746	0.876125
+GO:0015081	sodium ion transmembrane transporter activity	molecular_function	60.2483	44.5481	43.3408	46.845	57.0023	66.4675
+GO:0015087	cobalt ion transmembrane transporter activity	molecular_function	1.96107	1.08189	1.39771	1.00187	0.476835	1.53742
+GO:0015091	ferric iron transmembrane transporter activity	molecular_function	0.0223597	0	0	0	0	0
+GO:0015093	ferrous iron transmembrane transporter activity	molecular_function	6.34015	8.23393	6.00289	4.17142	3.75402	2.55047
+GO:0015094	lead ion transmembrane transporter activity	molecular_function	0.0237208	0	0.0220119	0	0	0
+GO:0015095	magnesium ion transmembrane transporter activity	molecular_function	3.45443	8.08905	6.66595	21.5822	20.5815	22.4521
+GO:0015098	molybdate ion transmembrane transporter activity	molecular_function	0.436355	0.566151	0	1.2966	0.352889	0.449155
+GO:0015099	nickel cation transmembrane transporter activity	molecular_function	0.120232	0	0.0220119	0	0	0.0478292
+GO:0015103	inorganic anion transmembrane transporter activity	molecular_function	0.44909	5.70109	5.86013	1.55391	2.56268	2.3099
+GO:0015105	arsenite transmembrane transporter activity	molecular_function	0	0	0.0395583	0	0	0.185755
+GO:0015109	chromate transmembrane transporter activity	molecular_function	0.238277	0.228794	0.110556	0.121913	0.212775	0
+GO:0015112	nitrate transmembrane transporter activity	molecular_function	0.15331	0	0	0	0	0
+GO:0015113	nitrite transmembrane transporter activity	molecular_function	0.15331	0	0	0	0	0
+GO:0015116	sulfate transmembrane transporter activity	molecular_function	0	0	0	0.0751824	0	0
+GO:0015128	gluconate transmembrane transporter activity	molecular_function	210.961	295.704	262.895	84.4667	105.365	123.21
+GO:0015129	lactate transmembrane transporter activity	molecular_function	0.161403	0	0.119757	0	0	0
+GO:0015143	urate transmembrane transporter activity	molecular_function	0.0374282	0	0.0694638	0	0	0
+GO:0015144	carbohydrate transmembrane transporter activity	molecular_function	0.525138	0	0.245965	0	0	0.178543
+GO:0015145	monosaccharide transmembrane transporter activity	molecular_function	13.8332	15.9374	18.7236	2.48895	4.0153	5.54124
+GO:0015153	rhamnose transmembrane transporter activity	molecular_function	0.0960253	0	0.119351	0	0	0
+GO:0015159	polysaccharide transmembrane transporter activity	molecular_function	0.147258	0	0.186966	0	0	0
+GO:0015169	glycerol-3-phosphate transmembrane transporter activity	molecular_function	0.0724747	0	0	0	0	0
+GO:0015171	amino acid transmembrane transporter activity	molecular_function	0.37314	0	0.11042	0	0	3.23389
+GO:0015173	aromatic amino acid transmembrane transporter activity	molecular_function	0.246224	0	0.199641	0	0	0.134886
+GO:0015179	L-amino acid transmembrane transporter activity	molecular_function	0.460343	0	0.523098	0	0	0.179351
+GO:0015181	arginine transmembrane transporter activity	molecular_function	0.0498962	0	0	0	0	0
+GO:0015185	gamma-aminobutyric acid transmembrane transporter activity	molecular_function	0.0388622	0	0	0	0	0
+GO:0015188	L-isoleucine transmembrane transporter activity	molecular_function	0.145411	0	0	0	0	0
+GO:0015190	L-leucine transmembrane transporter activity	molecular_function	0.246832	0	0	0	0	0
+GO:0015197	peptide transporter activity	molecular_function	0.233756	0	0	0	0	0
+GO:0015199	amino-acid betaine transmembrane transporter activity	molecular_function	0.265619	0	0	0	0	0
+GO:0015205	nucleobase transmembrane transporter activity	molecular_function	0.186874	0	0	0	0	0
+GO:0015207	adenine transmembrane transporter activity	molecular_function	0.123489	0	0.151873	0	0	0.054588
+GO:0015208	guanine transmembrane transporter activity	molecular_function	0.0803249	0	0	0	0	0.0530681
+GO:0015210	uracil transmembrane transporter activity	molecular_function	0	0	0	0	0	0.0548468
+GO:0015211	purine nucleoside transmembrane transporter activity	molecular_function	0.141109	0	0	0	0	0
+GO:0015212	cytidine transmembrane transporter activity	molecular_function	0.0219952	0	0	0	0	0.0584364
+GO:0015213	uridine transmembrane transporter activity	molecular_function	0.0219952	0	0	0	0	0.0584364
+GO:0015214	pyrimidine nucleoside transmembrane transporter activity	molecular_function	0.0219952	0	0	0	0	0.0584364
+GO:0015218	pyrimidine nucleotide transmembrane transporter activity	molecular_function	0	0	0	0	0	0.0548468
+GO:0015220	choline transmembrane transporter activity	molecular_function	0.265619	0	0	0	0	0
+GO:0015221	lipopolysaccharide transmembrane transporter activity	molecular_function	0	0	0.416332	0	0	0
+GO:0015225	biotin transporter activity	molecular_function	9.47858	197.164	228.553	271.753	319.404	474.813
+GO:0015230	FAD transmembrane transporter activity	molecular_function	0.0959524	0	0	0	0	0.0780984
+GO:0015232	heme transporter activity	molecular_function	0.237475	0	0	0	0	0.0756407
+GO:0015233	pantothenate transmembrane transporter activity	molecular_function	0.111993	0	0	0	0	0
+GO:0015234	thiamine transmembrane transporter activity	molecular_function	35.435	13.8448	25.477	9.90637	9.92735	6.56379
+GO:0015235	cobalamin transporter activity	molecular_function	0.0914562	0	0.0530902	0	0	0.0381599
+GO:0015238	drug transmembrane transporter activity	molecular_function	12.022	48.1493	30.7446	121.927	117.634	130.881
+GO:0015288	porin activity	molecular_function	1.54856	0	0.928875	0	0	0.781017
+GO:0015291	secondary active transmembrane transporter activity	molecular_function	0.0773355	0	0	0	0	0
+GO:0015292	uniporter activity	molecular_function	0	0	0.0807855	0	0	0
+GO:0015293	symporter activity	molecular_function	1.78885	0	0.82071	0	0	0.350036
+GO:0015294	solute:cation symporter activity	molecular_function	0.36388	0	0	0	0	0.0281348
+GO:0015295	solute:proton symporter activity	molecular_function	0.0392997	0	0	0	0	0.0261298
+GO:0015297	antiporter activity	molecular_function	12.7682	53.8504	36.9337	123.48	120.197	133.283
+GO:0015299	solute:proton antiporter activity	molecular_function	0.413485	0.51817	0.381104	1.39514	1.11039	2.00582
+GO:0015307	drug:proton antiporter activity	molecular_function	0.265619	0	0	0	0	0
+GO:0015315	organophosphate:inorganic phosphate antiporter activity	molecular_function	0.0724747	0	0	0	0	0
+GO:0015321	sodium-dependent phosphate transmembrane transporter activity	molecular_function	100.206	340.16	298.103	639.719	576.173	680.089
+GO:0015333	peptide:proton symporter activity	molecular_function	0.115323	0	0.253047	0	0	0
+GO:0015343	siderophore transmembrane transporter activity	molecular_function	0.0426293	0	0.117682	0	0	0
+GO:0015385	sodium:proton antiporter activity	molecular_function	0.151584	0	0.0323864	0	0	0
+GO:0015386	potassium:proton antiporter activity	molecular_function	0.151584	0	0	0	0	0
+GO:0015388	potassium uptake transmembrane transporter activity	molecular_function	0.0557049	0	0	0	0	0
+GO:0015407	monosaccharide-transporting ATPase activity	molecular_function	0.0354596	0	0	0	0	0
+GO:0015412	molybdate transmembrane-transporting ATPase activity	molecular_function	0.106914	0	0.498786	0.0785896	0	0
+GO:0015413	nickel-transporting ATPase activity	molecular_function	0	0	0.0733429	0	0	0
+GO:0015415	phosphate ion transmembrane-transporting ATPase activity	molecular_function	0.685301	0.541461	0.985303	0.412869	0.901517	1.71157
+GO:0015419	sulfate transmembrane-transporting ATPase activity	molecular_function	61.6675	791.322	689.438	1110.28	1083.96	1272.55
+GO:0015420	cobalamin-transporting ATPase activity	molecular_function	2.30271	14.3187	12.2331	34.4749	32.102	42.6066
+GO:0015424	amino acid-transporting ATPase activity	molecular_function	6.33663	8.68545	7.12933	13.8828	13.851	13.1018
+GO:0015430	glycerol-3-phosphate-transporting ATPase activity	molecular_function	0	0	0.0978357	0	0	0
+GO:0015439	heme-transporting ATPase activity	molecular_function	0	0	0.192785	0	0	0
+GO:0015444	magnesium-importing ATPase activity	molecular_function	0	0	0	0	0	0.101479
+GO:0015446	arsenite-transmembrane transporting ATPase activity	molecular_function	0	0	0	0	0	0.31359
+GO:0015450	P-P-bond-hydrolysis-driven protein transmembrane transporter activity	molecular_function	375.607	799.033	617.147	1752.16	1525.45	1792.4
+GO:0015459	potassium channel regulator activity	molecular_function	0.208748	0	0.176185	0	0	0.0427844
+GO:0015473	fimbrial usher porin activity	molecular_function	0.242579	0	0.136672	0	0	0.203735
+GO:0015481	maltose transporting porin activity	molecular_function	0.0408065	0	0	0	0	0
+GO:0015487	melibiose:monovalent cation symporter activity	molecular_function	0.142252	0	0.0880025	0	0	0.212208
+GO:0015489	putrescine transmembrane transporter activity	molecular_function	0.0392997	0	0	0	0	0.0261298
+GO:0015496	putrescine:ornithine antiporter activity	molecular_function	0.103876	0	0	0	0	0
+GO:0015499	formate transmembrane transporter activity	molecular_function	0.139019	0	0	0	0	0
+GO:0015501	glutamate:sodium symporter activity	molecular_function	0.23327	0	0.0854314	0	0	0.0613145
+GO:0015503	glutathione-regulated potassium exporter activity	molecular_function	0.132068	0	0	0	0	0.0393888
+GO:0015513	nitrite uptake transmembrane transporter activity	molecular_function	0.143588	0	0	0	0	0
+GO:0015517	galactose:proton symporter activity	molecular_function	0.0410252	0	0	0	0	0.0554289
+GO:0015518	arabinose:proton symporter activity	molecular_function	0.0410252	0	0	0	0	0.0554289
+GO:0015527	glycerol-phosphate:inorganic phosphate antiporter activity	molecular_function	0.0724747	0	0	0	0	0
+GO:0015535	fucose:proton symporter activity	molecular_function	0.0410252	0	0	0	0	0.0554289
+GO:0015538	sialic acid:proton symporter activity	molecular_function	0.0194189	0	0	0	0	0.103387
+GO:0015542	sugar efflux transmembrane transporter activity	molecular_function	0.117413	0	0	0	0	0.0624787
+GO:0015546	sulfathiazole transmembrane transporter activity	molecular_function	0.0266372	0	0.0494366	0	0	0
+GO:0015556	C4-dicarboxylate transmembrane transporter activity	molecular_function	0.167188	0	0.0759591	0	0	0
+GO:0015558	p-aminobenzoyl-glutamate uptake transmembrane transporter activity	molecular_function	0.0773355	0	0	0	0	0
+GO:0015562	efflux transmembrane transporter activity	molecular_function	0.177055	0	0	0	0	0.0861185
+GO:0015565	threonine efflux transmembrane transporter activity	molecular_function	0.0443792	0	0	0	0	0
+GO:0015568	L-idonate transmembrane transporter activity	molecular_function	0.145363	0	0	0	0	0.0552672
+GO:0015572	N-acetylglucosamine transmembrane transporter activity	molecular_function	0.0270504	0	0	0	0	0
+GO:0015574	trehalose transmembrane transporter activity	molecular_function	0.0383275	0	0	0	0	0.0431401
+GO:0015577	galactitol transmembrane transporter activity	molecular_function	0.122468	0	0	0	0	0
+GO:0015591	D-ribose transmembrane transporter activity	molecular_function	0.122857	0	0.0664868	0	0	0.109467
+GO:0015592	methylgalactoside transmembrane transporter activity	molecular_function	0.142252	0	0.0880025	0	0	0.212208
+GO:0015594	putrescine-importing ATPase activity	molecular_function	1.49691	24.2779	16.7626	104.586	98.4303	50.9936
+GO:0015595	spermidine-importing ATPase activity	molecular_function	1.49691	24.2779	16.7626	104.586	98.4303	50.9279
+GO:0015606	spermidine transmembrane transporter activity	molecular_function	0.251401	0	0	0	0	0
+GO:0015612	L-arabinose-importing ATPase activity	molecular_function	1.68101	4.31054	6.05995	3.25868	3.82395	4.79958
+GO:0015614	D-xylose-importing ATPase activity	molecular_function	0.0174503	0	0.0323864	0	0	0
+GO:0015616	DNA translocase activity	molecular_function	0.0241582	0	0	0	0	0
+GO:0015620	ferric-enterobactin transmembrane transporter activity	molecular_function	0.053153	0	0.0917012	0	0	0.0327593
+GO:0015623	iron-chelate-transporting ATPase activity	molecular_function	0	0	0.139198	0	0	0
+GO:0015628	protein secretion by the type II secretion system	biological_process	12.2854	16.6253	20.5292	8.68141	8.19072	6.27339
+GO:0015643	toxic substance binding	molecular_function	0.107934	0	0.406363	0	0	0
+GO:0015648	lipid-linked peptidoglycan transporter activity	molecular_function	0.0443792	0	0	0	0	0
+GO:0015655	alanine:sodium symporter activity	molecular_function	0.0759016	0	0.139018	0	0	0
+GO:0015658	branched-chain amino acid transmembrane transporter activity	molecular_function	19.4622	2.06521	1.51941	1.18974	1.11601	0.516032
+GO:0015661	L-lysine efflux transmembrane transporter activity	molecular_function	0.129711	0	0	0	0	0
+GO:0015675	nickel cation transport	biological_process	0.0341229	0	0	0	0	0
+GO:0015682	ferric iron transport	biological_process	0.0223597	0	0	0	0	0
+GO:0015684	ferrous iron transport	biological_process	0.329004	0	0.0804246	0	0	0
+GO:0015685	ferric-enterobactin transport	biological_process	0.053153	0	0.0917012	0	0	0.0327593
+GO:0015692	lead ion transport	biological_process	0.0237208	0	0.0220119	0	0	0
+GO:0015693	magnesium ion transport	biological_process	3.45443	8.08905	6.66595	21.5822	20.5815	22.5536
+GO:0015700	arsenite transport	biological_process	0	0	0.0395583	0	0	0.185755
+GO:0015707	nitrite transport	biological_process	0.143588	0	0	0	0	0
+GO:0015716	organic phosphonate transport	biological_process	0	0	0	0	0	0.112281
+GO:0015724	formate transport	biological_process	0.139019	0	0	0	0	0
+GO:0015726	L-idonate transport	biological_process	0.145363	0	0	0	0	0.0552672
+GO:0015734	taurine transport	biological_process	0	0	0.111097	0	0	0
+GO:0015739	sialic acid transport	biological_process	0.0194189	0	0	0	0	0.103387
+GO:0015747	urate transport	biological_process	0.0374282	0	0.0694638	0	0	0
+GO:0015749	monosaccharide transport	biological_process	13.7127	15.9374	18.7236	2.48895	4.0153	5.54124
+GO:0015751	arabinose transport	biological_process	0.0410252	0	0	0	0	0.0554289
+GO:0015753	D-xylose transport	biological_process	0.115323	0	0	0	0	0
+GO:0015756	fucose transport	biological_process	0.0410252	0	0	0	0	0.0554289
+GO:0015757	galactose transport	biological_process	0.333597	0	0.109022	0	0	0.0554289
+GO:0015765	methylgalactoside transport	biological_process	0.142252	0	0.0880025	0	0	0.212208
+GO:0015769	melibiose transport	biological_process	0.142252	0	0.0880025	0	0	0.212208
+GO:0015771	trehalose transport	biological_process	0.0383275	0	0	0	0	0.0431401
+GO:0015793	glycerol transport	biological_process	0.0724747	0	0	0	0	0
+GO:0015794	glycerol-3-phosphate transport	biological_process	304.345	363.281	353.869	1322.03	1123.95	903.593
+GO:0015803	branched-chain amino acid transport	biological_process	0.145411	0	0	0	0	0
+GO:0015807	L-amino acid transport	biological_process	0.707175	0	0.523098	0	0	0.179351
+GO:0015809	arginine transport	biological_process	0.0835087	0	0.154985	0	0	0
+GO:0015814	p-aminobenzoyl-glutamate transport	biological_process	0.0773355	0	0	0	0	0
+GO:0015818	isoleucine transport	biological_process	0.145411	0	0	0	0	0
+GO:0015820	leucine transport	biological_process	0.246832	0	0	0	0	0
+GO:0015823	phenylalanine transport	biological_process	0	0	0.0920621	0	0	0.105328
+GO:0015829	valine transport	biological_process	0.26941	0	0	0	0	0
+GO:0015833	peptide transport	biological_process	491.249	168.535	222.653	139.432	169.307	136.43
+GO:0015846	polyamine transport	biological_process	2.86812	14.2759	7.52225	83.8084	72.8267	32.8495
+GO:0015847	putrescine transport	biological_process	0.0392997	0	0	0	0	0.0918424
+GO:0015851	nucleobase transport	biological_process	0.186874	0	0	0	0	0
+GO:0015853	adenine transport	biological_process	0.123489	0	0.151873	0	0	0.054588
+GO:0015857	uracil transport	biological_process	0	0	0	0	0	0.0548468
+GO:0015860	purine nucleoside transmembrane transport	biological_process	0.0219952	0	0	0	0	0.0584364
+GO:0015861	cytidine transport	biological_process	0.0219952	0	0	0	0	0.0584364
+GO:0015862	uridine transport	biological_process	0.0219952	0	0	0	0	0.0584364
+GO:0015864	pyrimidine nucleoside transport	biological_process	0.0219952	0	0	0	0	0.0584364
+GO:0015871	choline transport	biological_process	0.265619	0	0	0	0	0
+GO:0015886	heme transport	biological_process	0	0	0	0	0	0.0756407
+GO:0015887	pantothenate transmembrane transport	biological_process	0.111993	0	0	0	0	0
+GO:0015889	cobalamin transport	biological_process	0.0426293	0	0	0	0	0
+GO:0015891	siderophore transport	biological_process	0.111726	0	0.135725	0	0	0.0669738
+GO:0015906	sulfathiazole transport	biological_process	0.0266372	0	0.0494366	0	0	0
+GO:0015914	phospholipid transport	biological_process	0.110462	0	0	0	0	0
+GO:0015920	lipopolysaccharide transport	biological_process	0.098796	0	0.497839	0	0	0
+GO:0015926	glucosidase activity	molecular_function	1.0845	6.84132	6.46965	14.4016	15.454	20.6395
+GO:0015936	coenzyme A metabolic process	biological_process	0.0465666	0.357427	0	0.0476512	0.12349	0.0309807
+GO:0015937	coenzyme A biosynthetic process	biological_process	69.5847	227.028	184.01	397.362	386.661	371.383
+GO:0015940	pantothenate biosynthetic process	biological_process	97.1265	94.8856	87.6264	143.069	144.308	146.625
+GO:0015941	pantothenate catabolic process	biological_process	6.30447	18.6416	12.7659	39.1608	40.3548	32.1954
+GO:0015948	methanogenesis	biological_process	27.9748	18.0663	28.4618	27.1532	16.1025	27.568
+GO:0015949	nucleobase-containing small molecule interconversion	biological_process	0.153577	0	0	0	0	0
+GO:0015969	guanosine tetraphosphate metabolic process	biological_process	13.5723	19.9592	12.9071	43.7139	42.9844	38.2954
+GO:0015970	guanosine tetraphosphate biosynthetic process	biological_process	0.333403	0	0.0675693	0	0	0.0484437
+GO:0015974	guanosine pentaphosphate catabolic process	biological_process	0.254877	0	0.0675693	0	0	0.0484437
+GO:0015976	carbon utilization	biological_process	0.867339	16.1959	9.881	72.5495	65.9282	34.5646
+GO:0015977	carbon fixation	biological_process	0.0536877	0.262166	0	0.262877	0.15294	0.185011
+GO:0015979	photosynthesis	biological_process	61.4381	81.1147	63.6955	117.286	117.294	105.517
+GO:0015986	ATP synthesis coupled proton transport	biological_process	126.206	739.009	479.364	1006.93	1002.24	853.165
+GO:0015991	ATP hydrolysis coupled proton transport	biological_process	354.567	962.68	659.932	1463.09	1463.12	1243.33
+GO:0015992	proton transport	biological_process	330.37	76.3616	128.621	27.1477	34.4745	47.0193
+GO:0015995	chlorophyll biosynthetic process	biological_process	5.92637	27.1213	22.577	55.5186	46.9209	68.2654
+GO:0016024	CDP-diacylglycerol biosynthetic process	biological_process	0.323463	0	0	0	0	0
+GO:0016036	cellular response to phosphate starvation	biological_process	0.190058	0	0	0	0	0
+GO:0016048	detection of temperature stimulus	biological_process	0.0815887	0	0	0	0	0
+GO:0016051	carbohydrate biosynthetic process	biological_process	2.06361	7.19922	4.5266	48.9485	36.4906	40.2848
+GO:0016052	carbohydrate catabolic process	biological_process	93.6512	50.6441	44.0169	84.454	66.52	94.0968
+GO:0016075	rRNA catabolic process	biological_process	1.29891	6.48698	2.88541	28.1773	22.2648	16.6507
+GO:0016114	terpenoid biosynthetic process	biological_process	108.678	157.056	112.756	248.69	255.036	238.313
+GO:0016117	carotenoid biosynthetic process	biological_process	0.298381	0.635321	0.0921974	0.101719	0.133147	0.674751
+GO:0016149	translation release factor activity, codon specific	molecular_function	108.72	123.273	103.282	226.088	236.443	217.129
+GO:0016151	nickel cation binding	molecular_function	95.5613	116.694	129.353	185.078	161.464	123.64
+GO:0016153	urocanate hydratase activity	molecular_function	18.4303	10.6455	37.127	1.77538	2.92599	4.555
+GO:0016154	pyrimidine-nucleoside phosphorylase activity	molecular_function	31.3666	24.7419	28.296	34.0698	41.2712	25.1916
+GO:0016162	cellulose 1,4-beta-cellobiosidase activity	molecular_function	29.1765	25.9726	18.4872	104.811	91.8518	100.319
+GO:0016163	nitrogenase activity	molecular_function	0.545869	1.22402	0.7655	2.16848	0.836213	1.44442
+GO:0016197	endosomal transport	biological_process	0.85927	1.48119	1.15811	14.8812	12.7606	11.0413
+GO:0016208	AMP binding	molecular_function	0.383591	0.603863	0.128914	0.461639	0	0.431271
+GO:0016209	antioxidant activity	molecular_function	54.6751	156.565	201.502	344.836	243.783	517.337
+GO:0016226	iron-sulfur cluster assembly	biological_process	67.5399	131.269	125.617	121.655	120.686	146.809
+GO:0016259	selenocysteine metabolic process	biological_process	33.3003	51.5545	66.8396	27.4989	35.3101	21.7446
+GO:0016260	selenocysteine biosynthetic process	biological_process	16.3616	34.1096	29.3355	57.1364	63.6455	59.2512
+GO:0016298	lipase activity	molecular_function	0.0364075	0	0	0	0	0
+GO:0016301	kinase activity	molecular_function	567.597	685.338	712.31	1243.18	1272.8	1353.44
+GO:0016310	phosphorylation	biological_process	15.3791	15.1858	15.7908	10.365	13.4177	12.2402
+GO:0016311	dephosphorylation	biological_process	12.9899	14.8895	8.95988	35.2135	27.3549	28.9802
+GO:0016405	CoA-ligase activity	molecular_function	0.294541	0.161957	0.702937	0.517149	0.187709	0.47619
+GO:0016407	acetyltransferase activity	molecular_function	0.0728149	0	0.0817327	0	0.0704043	0.0524537
+GO:0016410	N-acyltransferase activity	molecular_function	0.118215	0	0	0	0	0
+GO:0016413	O-acetyltransferase activity	molecular_function	0	0	0.223276	0	0	0
+GO:0016415	octanoyltransferase activity	molecular_function	0.341083	0	0	0	0	0
+GO:0016416	O-palmitoyltransferase activity	molecular_function	0.118264	0	0	0	0	0
+GO:0016429	tRNA (adenine-N1-)-methyltransferase activity	molecular_function	1.10792	4.53042	3.23462	11.0983	8.2845	15.2462
+GO:0016430	tRNA (adenine-N6-)-methyltransferase activity	molecular_function	0	0	0.140416	0	0	0
+GO:0016434	rRNA (cytosine) methyltransferase activity	molecular_function	0.129006	0	0	0	0	0
+GO:0016437	tRNA cytidylyltransferase activity	molecular_function	0.0223111	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0016462	pyrophosphatase activity	molecular_function	55.8796	57.2489	43.0339	109.841	105.757	84.084
+GO:0016463	zinc-exporting ATPase activity	molecular_function	3.865	1.36716	1.79235	2.1443	2.67512	1.34029
+GO:0016485	protein processing	biological_process	0.169424	0	0	0	0	0
+GO:0016491	oxidoreductase activity	molecular_function	6615.84	15841.3	14052.3	7621.57	8026.85	10297.8
+GO:0016539	intein-mediated protein splicing	biological_process	16.1904	81.2351	104.913	136.01	145.539	150.51
+GO:0016540	protein autoprocessing	biological_process	0.0596421	0	0.0552553	0	0	0
+GO:0016597	amino acid binding	molecular_function	97.9473	230.082	188.689	545.858	501.965	497.639
+GO:0016614	oxidoreductase activity, acting on CH-OH group of donors	molecular_function	50.5726	31.2073	25.4638	34.1845	36.3999	40.605
+GO:0016616	oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor	molecular_function	127.06	257.394	188.293	518.415	487.706	381.468
+GO:0016620	oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor	molecular_function	0.0302342	0	0.112225	0	0	0
+GO:0016624	oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor	molecular_function	160.445	10.9993	20.7678	5.23805	5.2151	4.77089
+GO:0016625	oxidoreductase activity, acting on the aldehyde or oxo group of donors, iron-sulfur protein as acceptor	molecular_function	445.336	222.067	294.933	276.6	280.777	281.721
+GO:0016627	oxidoreductase activity, acting on the CH-CH group of donors	molecular_function	0.0368206	0	0	0	0	0
+GO:0016628	oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor	molecular_function	0.937772	3.08653	2.41955	11.0282	7.57577	7.39054
+GO:0016639	oxidoreductase activity, acting on the CH-NH2 group of donors, NAD or NADP as acceptor	molecular_function	0.179704	0.425617	0.388095	0.100799	0.109795	0.294898
+GO:0016645	oxidoreductase activity, acting on the CH-NH group of donors	molecular_function	0.335372	0.166391	0.522873	0.201	0.2735	0.238855
+GO:0016651	oxidoreductase activity, acting on NAD(P)H	molecular_function	112.445	82.7121	86.0745	124.867	120.885	68.0534
+GO:0016652	oxidoreductase activity, acting on NAD(P)H, NAD(P) as acceptor	molecular_function	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0016655	oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor	molecular_function	0	0	0	0	0	0.156229
+GO:0016661	oxidoreductase activity, acting on other nitrogenous compounds as donors	molecular_function	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0016667	oxidoreductase activity, acting on a sulfur group of donors	molecular_function	0.0564826	0	0	0	0	0
+GO:0016668	oxidoreductase activity, acting on a sulfur group of donors, NAD(P) as acceptor	molecular_function	0.0206584	0	0	0	0	0
+GO:0016671	oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor	molecular_function	0.0685131	0	0	0	0	0
+GO:0016682	oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor	molecular_function	0.0920638	0	0.0646374	0	0	0.023187
+GO:0016692	NADH peroxidase activity	molecular_function	56.6641	72.7031	100.891	75.3205	108.043	91.2171
+GO:0016705	oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen	molecular_function	6.27951	1.48707	6.3337	6.22444	5.29137	12.8244
+GO:0016706	oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors	molecular_function	0.0500177	0	0	0	0	0
+GO:0016708	oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of two atoms of oxygen into one donor	molecular_function	0.0498476	0	0	0	0	0
+GO:0016722	oxidoreductase activity, oxidizing metal ions	molecular_function	0.068659	0	0	0	0	0
+GO:0016726	oxidoreductase activity, acting on CH or CH2 groups, NAD or NADP as acceptor	molecular_function	4.49934	10.4549	9.30097	23.4627	26.5046	34.5337
+GO:0016730	oxidoreductase activity, acting on iron-sulfur proteins as donors	molecular_function	0	0.610117	0.416738	0.650205	0.283701	0.422055
+GO:0016740	transferase activity	molecular_function	1431.28	1149.87	1138.52	1593.6	1558.42	1505.15
+GO:0016741	transferase activity, transferring one-carbon groups	molecular_function	0.0964628	0	0	0	0	0
+GO:0016742	hydroxymethyl-, formyl- and related transferase activity	molecular_function	0.0265157	0	0.049211	0	0	0
+GO:0016743	carboxyl- or carbamoyltransferase activity	molecular_function	6.11293	12.0109	6.4719	16.6064	14.7058	16.8578
+GO:0016744	transferase activity, transferring aldehyde or ketonic groups	molecular_function	0.149324	0.501741	0.346552	0.076401	0.266447	0.347061
+GO:0016746	transferase activity, transferring acyl groups	molecular_function	46.2188	36.0857	33.998	51.2694	52.8752	49.5157
+GO:0016747	transferase activity, transferring acyl groups other than amino-acyl groups	molecular_function	89.5512	151.594	93.4149	313.882	287.66	201.393
+GO:0016755	transferase activity, transferring amino-acyl groups	molecular_function	0.201408	2.10419	0.942452	5.19669	4.29486	4.19435
+GO:0016757	transferase activity, transferring glycosyl groups	molecular_function	48.1157	123.841	108.206	207.87	212.029	213.466
+GO:0016758	transferase activity, transferring hexosyl groups	molecular_function	25.6559	36.8606	28.4907	60.6222	61.4397	65.7839
+GO:0016760	cellulose synthase (UDP-forming) activity	molecular_function	0.0393726	0	0	0	0	0
+GO:0016763	transferase activity, transferring pentosyl groups	molecular_function	3.13863	1.14346	1.749	0.728719	1.27641	0.422896
+GO:0016765	transferase activity, transferring alkyl or aryl (other than methyl) groups	molecular_function	7.03943	60.8742	54.7926	118.004	119.019	128.559
+GO:0016772	transferase activity, transferring phosphorus-containing groups	molecular_function	0	0.187441	0.287237	0	0	0.234489
+GO:0016773	phosphotransferase activity, alcohol group as acceptor	molecular_function	14.0297	44.5877	37.5679	52.7354	53.3961	64.5291
+GO:0016774	phosphotransferase activity, carboxyl group as acceptor	molecular_function	0.114132	0.120978	0.117006	0.61285	0	0.248783
+GO:0016775	phosphotransferase activity, nitrogenous group as acceptor	molecular_function	6.59697	103.14	172.408	53.3925	61.8042	46.4737
+GO:0016776	phosphotransferase activity, phosphate group as acceptor	molecular_function	0.0975565	0	0	0	0	0
+GO:0016779	nucleotidyltransferase activity	molecular_function	122.501	250.55	213.123	459.621	435.155	463.134
+GO:0016780	phosphotransferase activity, for other substituted phosphate groups	molecular_function	0.28917	0.121071	0.59996	0.534235	0.431063	0.411124
+GO:0016783	sulfurtransferase activity	molecular_function	51.559	64.684	59.1457	104.14	95.2811	70.4174
+GO:0016787	hydrolase activity	molecular_function	998.414	1469.39	1381.29	2586.6	2604.06	3003.78
+GO:0016788	hydrolase activity, acting on ester bonds	molecular_function	43.333	130.82	151.136	257.244	258.192	293.836
+GO:0016790	thiolester hydrolase activity	molecular_function	1.01686	3.35602	5.04993	6.21626	8.14849	13.8948
+GO:0016791	phosphatase activity	molecular_function	2.98315	10.1261	8.87138	22.7806	24.3596	18.8859
+GO:0016795	phosphoric triester hydrolase activity	molecular_function	0.0461291	0	0.0378893	0	0	0
+GO:0016798	hydrolase activity, acting on glycosyl bonds	molecular_function	112.883	89.1165	78.4089	98.7041	125.597	140.844
+GO:0016805	dipeptidase activity	molecular_function	18.2892	20.5591	13.7913	26.6542	23.1164	21.2198
+GO:0016807	cysteine-type carboxypeptidase activity	molecular_function	0.0143151	0	0	0	0	0
+GO:0016810	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds	molecular_function	301.31	299.88	278.836	371.498	391.702	396.907
+GO:0016811	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides	molecular_function	23.8251	6.46948	6.65377	6.49899	7.4956	6.15199
+GO:0016812	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides	molecular_function	0.0786479	0	0	0	0	0
+GO:0016813	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines	molecular_function	31.334	20.0835	26.696	23.9334	29.1499	17.6021
+GO:0016817	hydrolase activity, acting on acid anhydrides	molecular_function	0.123538	0	0	0	0	0
+GO:0016818	hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides	molecular_function	0.127402	0	0	0	0	0.151831
+GO:0016820	hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances	molecular_function	0.516534	0.104082	0.292921	0.744661	0.0469868	0.557296
+GO:0016829	lyase activity	molecular_function	215.679	347.876	313.202	769.239	773.308	704.317
+GO:0016831	carboxy-lyase activity	molecular_function	0.286302	0.290917	0.321247	0.177324	0.0580336	0.0576602
+GO:0016832	aldehyde-lyase activity	molecular_function	4.18625	33.5688	33.2177	51.4121	45.198	55.465
+GO:0016833	oxo-acid-lyase activity	molecular_function	0.0401017	0.121538	0.501086	0.19431	0.0565144	0.252599
+GO:0016835	carbon-oxygen lyase activity	molecular_function	0.065062	0	0	0	0	0
+GO:0016836	hydro-lyase activity	molecular_function	28.0274	113.01	60.609	248.642	137.255	380.865
+GO:0016837	carbon-oxygen lyase activity, acting on polysaccharides	molecular_function	0.55124	0	0	0	0	0.0656156
+GO:0016840	carbon-nitrogen lyase activity	molecular_function	3.04151	11.5857	11.1617	40.1001	36.3649	33.772
+GO:0016851	magnesium chelatase activity	molecular_function	5.69072	20.9491	16.3345	41.9706	36.3545	57.0848
+GO:0016852	sirohydrochlorin cobaltochelatase activity	molecular_function	0	0.196916	0.379841	0.419758	0.457866	1.36338
+GO:0016853	isomerase activity	molecular_function	162.51	296.421	357.58	337.048	360.901	348.075
+GO:0016855	racemase and epimerase activity, acting on amino acids and derivatives	molecular_function	0.0595692	0	0	0	0	0
+GO:0016857	racemase and epimerase activity, acting on carbohydrates and derivatives	molecular_function	6.1219	36.3442	27.3266	100.769	88.9785	89.8748
+GO:0016861	intramolecular oxidoreductase activity, interconverting aldoses and ketoses	molecular_function	13.9383	8.82271	4.81488	8.87252	10.4749	8.15105
+GO:0016862	intramolecular oxidoreductase activity, interconverting keto- and enol-groups	molecular_function	3.3367	20.9109	5.65737	28.5364	43.3716	65.2845
+GO:0016868	intramolecular transferase activity, phosphotransferases	molecular_function	23.8758	16.5116	9.65199	29.9251	31.5825	22.7957
+GO:0016869	intramolecular transferase activity, transferring amino groups	molecular_function	0.027658	0	0	0	0	0
+GO:0016872	intramolecular lyase activity	molecular_function	0.782007	1.13095	2.00534	0.404388	0.791896	0.524763
+GO:0016874	ligase activity	molecular_function	192.968	197.545	219.333	281.394	269.232	196.398
+GO:0016878	acid-thiol ligase activity	molecular_function	0.069704	0	0.0642766	0	0	0
+GO:0016879	ligase activity, forming carbon-nitrogen bonds	molecular_function	8.56013	33.0802	22.2378	79.196	72.136	73.8471
+GO:0016881	acid-amino acid ligase activity	molecular_function	1.61858	8.27644	7.79537	23.5333	21.6319	23.9263
+GO:0016884	carbon-nitrogen ligase activity, with glutamine as amido-N-donor	molecular_function	81.9279	515.531	283.671	1246.55	1075.61	1162.66
+GO:0016887	ATPase activity	molecular_function	1238.08	1327.36	1300.99	2440.02	2193.85	2076.13
+GO:0016888	endodeoxyribonuclease activity, producing 5'-phosphomonoesters	molecular_function	26.4127	20.988	18.4815	46.0516	41.0375	29.6912
+GO:0016901	oxidoreductase activity, acting on the CH-OH group of donors, quinone or similar compound as acceptor	molecular_function	0.0155303	0	0	0	0	0
+GO:0016903	oxidoreductase activity, acting on the aldehyde or oxo group of donors	molecular_function	29.5536	61.9239	43.7609	166.456	134.099	114.344
+GO:0016920	pyroglutamyl-peptidase activity	molecular_function	40.8456	71.071	59.7194	78.6609	88.171	67.0996
+GO:0016966	nitric oxide reductase activity	molecular_function	0.0447681	0	0.124584	0	0	0
+GO:0016985	mannan endo-1,4-beta-mannosidase activity	molecular_function	41.2293	46.4253	52.9957	128.966	117.098	135.834
+GO:0016987	sigma factor activity	molecular_function	235.297	462.444	388.982	1021.57	991.807	1065.32
+GO:0016989	sigma factor antagonist activity	molecular_function	0.0604685	1.24413	1.65441	4.88044	4.12021	4.4064
+GO:0016992	lipoate synthase activity	molecular_function	33.1878	42.7352	36.02	30.6123	37.2339	39.0065
+GO:0016993	precorrin-8X methylmutase activity	molecular_function	0.206512	0	0.0957608	0.158398	0.276473	0.0686555
+GO:0016994	precorrin-6A reductase activity	molecular_function	0	0	0.35634	0.393172	0.171605	0.340787
+GO:0016998	cell wall macromolecule catabolic process	biological_process	0.439126	0	0	0	0	0.0966933
+GO:0017001	antibiotic catabolic process	biological_process	0.073617	0	0	0	0	0
+GO:0017004	cytochrome complex assembly	biological_process	8.20043	83.5873	68.034	138.875	101.532	229.216
+GO:0017013	protein flavinylation	biological_process	0.670865	14.7097	11.1055	32.1483	25.356	47.2252
+GO:0017038	protein import	biological_process	23.8563	23.491	36.2436	37.2525	40.2542	29.3329
+GO:0017057	6-phosphogluconolactonase activity	molecular_function	0	0	0.0532706	0	0	0
+GO:0017061	S-methyl-5-thioadenosine phosphorylase activity	molecular_function	56.8616	52.7732	51.6302	90.3719	87.092	80.0514
+GO:0017103	UTP:galactose-1-phosphate uridylyltransferase activity	molecular_function	9.59595	13.7924	5.45755	15.3531	18.278	12.0259
+GO:0017108	5'-flap endonuclease activity	molecular_function	0.335566	0	0.32251	0.475343	0.103718	0.0772576
+GO:0017111	nucleoside-triphosphatase activity	molecular_function	44.9633	107.896	98.1461	120.129	134.008	132.293
+GO:0017116	single-stranded DNA-dependent ATP-dependent DNA helicase activity	molecular_function	0.110802	0	0	0	0	0.0384186
+GO:0017148	negative regulation of translation	biological_process	7.01082	25.0691	19.2406	52.9358	50.1984	76.4403
+GO:0017150	tRNA dihydrouridine synthase activity	molecular_function	10.0255	48.933	61.0745	85.0827	94.8384	114.182
+GO:0017153	sodium:dicarboxylate symporter activity	molecular_function	0.170153	0	0.0387464	0	0	0
+GO:0017183	peptidyl-diphthamide biosynthetic process from peptidyl-histidine	biological_process	0	0	0.139875	0	0	0.200404
+GO:0018106	peptidyl-histidine phosphorylation	biological_process	0.417033	0	0.500184	0	0	0.103032
+GO:0018160	peptidyl-pyrromethane cofactor linkage	biological_process	0.294711	3.26552	4.38637	6.47436	5.09181	5.94657
+GO:0018298	protein-chromophore linkage	biological_process	0.311699	0.196403	0.151828	0	0.0730737	0.0304632
+GO:0018307	enzyme active site formation	biological_process	0.0764362	0.299178	0.290079	0.637695	0.418042	0.414617
+GO:0018339	peptidyl-L-beta-methylthioaspartic acid biosynthetic process from peptidyl-aspartic acid	biological_process	1.58093	13.9746	12.425	28.6716	24.4524	24.9415
+GO:0018364	peptidyl-glutamine methylation	biological_process	1.75908	8.97286	6.41728	11.9222	13.9485	13.8792
+GO:0018378	cytochrome c-heme linkage via heme-L-cysteine	biological_process	0.0655237	0	0.100903	0	0	0
+GO:0018455	alcohol dehydrogenase [NAD(P)+] activity	molecular_function	0.0479276	0	0	0	0	0
+GO:0018492	carbon-monoxide dehydrogenase (acceptor) activity	molecular_function	0.2139	31.3103	29.1451	43.6714	37.8473	33.6393
+GO:0018493	formylmethanofuran dehydrogenase activity	molecular_function	1.53774	3.50888	3.31902	2.70077	1.62173	2.40061
+GO:0018537	coenzyme F420-dependent N5,N10-methenyltetrahydromethanopterin reductase activity	molecular_function	7.03269	3.21927	8.41721	8.43702	7.34774	17.9235
+GO:0018580	nitronate monooxygenase activity	molecular_function	90.8081	8.77324	9.87973	39.3985	47.2665	24.2261
+GO:0018697	carbonyl sulfide nitrogenase activity	molecular_function	0.545869	1.22402	0.7655	2.14768	0.836213	1.36341
+GO:0018738	S-formylglutathione hydrolase activity	molecular_function	0.0710651	0	0	0	0	0
+GO:0018741	alkyl sulfatase activity	molecular_function	0.0264671	0	0	0	0	0
+GO:0018759	methenyltetrahydromethanopterin cyclohydrolase activity	molecular_function	0.209234	0.459268	0.166442	0.428189	0.160406	0.874961
+GO:0018801	glutaconyl-CoA decarboxylase activity	molecular_function	21.7383	13.8552	10.5367	15.8808	17.9128	16.441
+GO:0018937	nitroglycerin metabolic process	biological_process	0.165389	0	0	0	0	0
+GO:0019003	GDP binding	molecular_function	0.0286545	0	0	0	0	0
+GO:0019073	viral DNA genome packaging	biological_process	20.3105	0	23.4071	0	0	18.4157
+GO:0019076	viral release from host cell	biological_process	0.209817	0	0.588457	0	0	0.0758994
+GO:0019104	DNA N-glycosylase activity	molecular_function	31.4191	48.7669	53.0236	107.603	108.132	171.073
+GO:0019107	myristoyltransferase activity	molecular_function	0.029578	0	0	0	0	0
+GO:0019134	glucosamine-1-phosphate N-acetyltransferase activity	molecular_function	23.5292	49.9847	39.6301	131.475	129.738	104.702
+GO:0019143	3-deoxy-manno-octulosonate-8-phosphatase activity	molecular_function	0	0	0.21633	0	0	0
+GO:0019144	ADP-sugar diphosphatase activity	molecular_function	0.118264	0	0	0	0	0
+GO:0019146	arabinose-5-phosphate isomerase activity	molecular_function	0	0	0.107759	0	0	0.0772576
+GO:0019148	D-cysteine desulfhydrase activity	molecular_function	0.0580624	0	0.107759	0	0	0
+GO:0019159	nicotinamide-nucleotide amidase activity	molecular_function	0.0696311	0	0	0	0	0
+GO:0019164	pyruvate synthase activity	molecular_function	53.9385	482.906	413.001	1160.31	1142.75	930.088
+GO:0019172	glyoxalase III activity	molecular_function	0	0	0	0	0	0.175277
+GO:0019180	dTDP-4-amino-4,6-dideoxygalactose transaminase activity	molecular_function	0	0	0.0459634	0	0	0
+GO:0019239	deaminase activity	molecular_function	0	53.2952	41.7632	133.282	125.444	119.676
+GO:0019242	methylglyoxal biosynthetic process	biological_process	8.8476	8.17008	7.28098	5.97475	7.36417	4.43159
+GO:0019243	methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione	biological_process	0.226611	0	0.148851	0	0	0.175277
+GO:0019249	lactate biosynthetic process	biological_process	0	0	0	0	0	0.175277
+GO:0019251	anaerobic cobalamin biosynthetic process	biological_process	0	0.196916	0.379841	0.419758	0.457866	1.36338
+GO:0019253	reductive pentose-phosphate cycle	biological_process	0.11593	0	0	0	0	0.1225
+GO:0019262	N-acetylneuraminate catabolic process	biological_process	0.205345	0	0	0	0	0.0434635
+GO:0019264	glycine biosynthetic process from serine	biological_process	25.3314	64.9289	48.212	188.888	198.919	156.268
+GO:0019272	L-alanine biosynthetic process from pyruvate	biological_process	0.0446465	0	0	0	0	0
+GO:0019277	UDP-N-acetylgalactosamine biosynthetic process	biological_process	38.5198	118.21	85.9788	227.429	202.19	226.148
+GO:0019281	L-methionine biosynthetic process from homoserine via O-succinyl-L-homoserine and cystathionine	biological_process	1.9575	18.6499	14.6035	39.4573	34.2343	40.4424
+GO:0019284	L-methionine biosynthetic process from S-adenosylmethionine	biological_process	24.8705	22.4835	33.9172	42.5619	38.2325	44.7121
+GO:0019285	glycine betaine biosynthetic process from choline	biological_process	0.086328	0	0.162338	0	0	0.0355404
+GO:0019287	isopentenyl diphosphate biosynthetic process, mevalonate pathway	biological_process	0.0638711	0	0	0.0326296	0.0569702	0
+GO:0019288	isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway	biological_process	60.0166	143.452	99.0494	354.131	322.236	283.559
+GO:0019290	siderophore biosynthetic process	biological_process	0.0814186	0	0	0	0	0
+GO:0019294	keto-3-deoxy-D-manno-octulosonic acid biosynthetic process	biological_process	0	0	0.0639608	0	0	0
+GO:0019295	coenzyme M biosynthetic process	biological_process	0.912739	1.67978	1.961	2.31954	1.29925	1.0969
+GO:0019298	coenzyme B biosynthetic process	biological_process	0	0.18198	0.0879123	0.242384	0.0846197	0
+GO:0019299	rhamnose metabolic process	biological_process	5.73814	29.6624	24.26	87.8646	80.5556	79.2626
+GO:0019301	rhamnose catabolic process	biological_process	0.13795	0	0	0	0	0
+GO:0019303	D-ribose catabolic process	biological_process	0.84092	1.13095	2.00534	0.404388	0.791896	0.60312
+GO:0019305	dTDP-rhamnose biosynthetic process	biological_process	3.901	2.06363	5.77668	0.881919	1.79053	2.31061
+GO:0019316	D-allose catabolic process	biological_process	0.0890257	0	0.704922	0	0	0
+GO:0019323	pentose catabolic process	biological_process	0.0890257	0	0.0933701	0	0	0
+GO:0019324	L-lyxose metabolic process	biological_process	0.0359457	0	0.267842	0	0	0
+GO:0019344	cysteine biosynthetic process	biological_process	0.290069	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0019354	siroheme biosynthetic process	biological_process	1.10209	14.4086	9.26245	24.4094	23.5221	33.2723
+GO:0019357	nicotinate nucleotide biosynthetic process	biological_process	0.0461534	0	0	0	0	0.0614116
+GO:0019358	nicotinate nucleotide salvage	biological_process	1.5758	3.20363	4.54108	9.51954	9.20165	8.45937
+GO:0019363	pyridine nucleotide biosynthetic process	biological_process	0.0696311	0	0	0	0	0
+GO:0019379	sulfate assimilation, phosphoadenylyl sulfate reduction by phosphoadenylyl-sulfate reductase (thioredoxin)	biological_process	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0019380	3-phenylpropionate catabolic process	biological_process	0.172632	0	0.281554	0	0	0
+GO:0019386	methanogenesis, from carbon dioxide	biological_process	35.4646	20.0618	50.7883	37.8944	33.1387	60.675
+GO:0019402	galactitol metabolic process	biological_process	0.124996	0	0	0	0	0.07577
+GO:0019404	galactitol catabolic process	biological_process	0.0436744	0	0.0810561	0	0	0
+GO:0019419	sulfate reduction	biological_process	0.0639926	0	0	0	0	0
+GO:0019427	acetyl-CoA biosynthetic process from acetate	biological_process	0.383591	0.603863	0.128914	0.461639	0	0.431271
+GO:0019430	removal of superoxide radicals	biological_process	64.4873	76.0617	64.6682	101.956	88.0925	71.7822
+GO:0019439	aromatic compound catabolic process	biological_process	0.244353	0	0.205008	0	0	0
+GO:0019441	tryptophan catabolic process to kynurenine	biological_process	15.886	13.0764	8.93453	11.7272	10.8371	8.93229
+GO:0019464	glycine decarboxylation via glycine cleavage system	biological_process	706.074	325.416	401.597	307.487	371.456	244.037
+GO:0019478	D-amino acid catabolic process	biological_process	20.9862	30.9195	28.0743	78.9672	72.0467	71.1338
+GO:0019491	ectoine biosynthetic process	biological_process	0.395184	0.94332	0	0	0	0.131458
+GO:0019509	L-methionine biosynthetic process from methylthioadenosine	biological_process	24.3449	21.0582	32.8268	42.3088	37.8183	44.3421
+GO:0019516	lactate oxidation	biological_process	6.27698	1.48707	6.31074	6.12275	5.15822	12.2466
+GO:0019518	L-threonine catabolic process to glycine	biological_process	0.374696	0	0	0	0	0
+GO:0019521	D-gluconate metabolic process	biological_process	0.431421	0	0.288636	0	0	0.128612
+GO:0019538	protein metabolic process	biological_process	547.353	494.582	735.731	152.002	154.133	151.57
+GO:0019544	arginine catabolic process to glutamate	biological_process	0.241704	0	0	0	0	0
+GO:0019545	arginine catabolic process to succinate	biological_process	0.241704	0	0	0	0	0
+GO:0019546	arginine deiminase pathway	biological_process	1.56909	2.58642	1.39825	7.4204	5.77356	4.76255
+GO:0019547	arginine catabolic process to ornithine	biological_process	1.50707	2.58642	1.39825	7.4204	5.77356	4.76255
+GO:0019552	glutamate catabolic process via 2-hydroxyglutarate	biological_process	21.7383	13.8552	10.5367	15.8808	17.9128	16.441
+GO:0019556	histidine catabolic process to glutamate and formamide	biological_process	22.0551	11.8131	40.4703	1.99762	3.44961	5.27732
+GO:0019557	histidine catabolic process to glutamate and formate	biological_process	22.0551	11.8131	40.4703	1.99762	3.44961	5.27732
+GO:0019563	glycerol catabolic process	biological_process	15.1719	14.9984	15.1648	10.3004	13.3047	12.0596
+GO:0019588	anaerobic glycerol catabolic process	biological_process	0.0508684	0	0	0	0	0
+GO:0019594	mannitol metabolic process	biological_process	0.0797659	0	0.225757	0	0	0
+GO:0019605	butyrate metabolic process	biological_process	81.3009	96.7253	101.091	83.5603	101.809	119.134
+GO:0019627	urea metabolic process	biological_process	0.0764362	0.299178	0.290079	0.637695	0.418042	0.414617
+GO:0019630	quinate metabolic process	biological_process	1.38574	7.35655	3.7173	17.0606	15.9985	19.0732
+GO:0019632	shikimate metabolic process	biological_process	1.85411	8.3528	5.09463	37.9082	41.0562	40.5462
+GO:0019645	anaerobic electron transport chain	biological_process	0.0810054	0	0.252686	0	0	0
+GO:0019646	aerobic electron transport chain	biological_process	0.146432	0	0.0646374	0	0	0.023187
+GO:0019674	NAD metabolic process	biological_process	30.4359	83.2505	69.5922	122.072	124.981	159.533
+GO:0019693	ribose phosphate metabolic process	biological_process	0.222333	0.573012	0.41146	0.532295	0.266599	0.446632
+GO:0019698	D-galacturonate catabolic process	biological_process	1.43953	0	0	0	0	0
+GO:0019700	organic phosphonate catabolic process	biological_process	0.0798145	0	0	0	0	0
+GO:0019740	nitrogen utilization	biological_process	0.0551702	0	0	0	0	0
+GO:0019752	carboxylic acid metabolic process	biological_process	0.298235	0	0	0	0	0
+GO:0019808	polyamine binding	molecular_function	2.86812	14.2759	7.52225	83.8084	72.8267	32.8495
+GO:0019825	oxygen binding	molecular_function	0.0466881	0	0	0	0	0
+GO:0019829	cation-transporting ATPase activity	molecular_function	5.67291	21.8896	19.1135	79.3547	55.2495	45.92
+GO:0019835	cytolysis	biological_process	0.154063	0	0.176907	0	0	0
+GO:0019843	rRNA binding	molecular_function	2335.91	3412.04	2374.98	8672.29	7748.98	7408.42
+GO:0019853	L-ascorbic acid biosynthetic process	biological_process	0.0540036	0	0	0	0	0
+GO:0019854	L-ascorbic acid catabolic process	biological_process	0.0683187	0	0	0	0	0
+GO:0019856	pyrimidine nucleobase biosynthetic process	biological_process	5.2121	4.68626	2.36768	1.02219	2.77335	2.067
+GO:0019877	diaminopimelate biosynthetic process	biological_process	11.4257	39.3362	36.3326	113.055	118.05	124.952
+GO:0019932	second-messenger-mediated signaling	biological_process	4.19311	21.5017	17.5922	87.8474	83.4249	100.137
+GO:0020037	heme binding	molecular_function	1.75582	23.9784	17.7679	64.733	54.3817	45.9608
+GO:0022611	dormancy process	biological_process	0.0428724	0	0	0	0	0
+GO:0022820	potassium ion symporter activity	molecular_function	1.94099	7.99094	4.77929	25.7575	26.9227	25.4754
+GO:0022857	transmembrane transporter activity	molecular_function	0.641821	0	0.523008	0	0	0.102935
+GO:0022872	protein-N(PI)-phosphohistidine-mannitol phosphotransferase system transmembrane transporter activity	molecular_function	0.201845	0	0.29901	0	0	0.0426873
+GO:0022877	protein-N(PI)-phosphohistidine-fructose phosphotransferase system transporter activity	molecular_function	92.4791	20.5231	28.8183	18.3597	14.3406	8.55328
+GO:0022885	bacteriocin transmembrane transporter activity	molecular_function	7.07246	25.0548	21.4841	39.2775	35.7906	61.1063
+GO:0022889	serine transmembrane transporter activity	molecular_function	0.0443792	0	0	0	0	0
+GO:0022891	substrate-specific transmembrane transporter activity	molecular_function	0.698766	0	0.306904	0	0	0.0769342
+GO:0022900	electron transport chain	biological_process	27.3557	113.233	113.138	293.625	296.322	288.779
+GO:0022904	respiratory electron transport chain	biological_process	0.395208	0	0.108165	0	0	0.0508367
+GO:0023014	signal transduction by protein phosphorylation	biological_process	0.571121	0	0.500184	0	0	0.103032
+GO:0030001	metal ion transport	biological_process	36.125	175.856	110.975	722.656	567.118	567.619
+GO:0030060	L-malate dehydrogenase activity	molecular_function	0.440074	0.281489	0.162202	0.240295	0.104847	0
+GO:0030091	protein repair	biological_process	3.29731	4.97825	3.64838	5.47374	3.37402	9.35085
+GO:0030145	manganese ion binding	molecular_function	55.1761	223.458	231.399	545.885	485.236	463.56
+GO:0030151	molybdenum ion binding	molecular_function	14.7401	20.6429	13.2799	18.5172	19.7137	17.7204
+GO:0030153	bacteriocin immunity	biological_process	0.424738	0	0.188139	0	0	0
+GO:0030163	protein catabolic process	biological_process	25.4008	70.6792	62.1631	127.028	117.186	124.922
+GO:0030170	pyridoxal phosphate binding	molecular_function	602.917	2056.53	1906.27	1891.96	1890.42	1844.18
+GO:0030234	enzyme regulator activity	molecular_function	30.1924	132.648	93.1264	282.021	269.392	418.149
+GO:0030244	cellulose biosynthetic process	biological_process	0.0566041	0	0.280742	0	0	0.0229283
+GO:0030245	cellulose catabolic process	biological_process	360.189	492.19	489.415	1494.12	1317.1	1291.15
+GO:0030246	carbohydrate binding	molecular_function	488.543	423.134	439.242	951.603	857.024	887.145
+GO:0030248	cellulose binding	molecular_function	96.9815	115.552	93.088	368.944	317.694	349.076
+GO:0030254	protein secretion by the type III secretion system	biological_process	1.77383	6.01273	5.19088	50.7058	47.3394	37.1062
+GO:0030259	lipid glycosylation	biological_process	24.735	18.7543	14.0262	47.2428	39.7042	40.5931
+GO:0030261	chromosome condensation	biological_process	942.796	2504.37	1747.06	2318.02	2447.43	3131.54
+GO:0030266	quinate 3-dehydrogenase (NAD+) activity	molecular_function	0.0327619	0	0	0	0	0
+GO:0030268	methylenetetrahydromethanopterin dehydrogenase activity	molecular_function	6.52795	5.96223	21.7131	10.4726	10.4144	28.2812
+GO:0030269	tetrahydromethanopterin S-methyltransferase activity	molecular_function	26.7966	9.15881	23.6886	22.4062	18.9856	22.9934
+GO:0030270	formylmethanofuran-tetrahydromethanopterin N-formyltransferase activity	molecular_function	0.615063	0.430891	1.07935	0.989756	0.893184	2.66469
+GO:0030272	5-formyltetrahydrofolate cyclo-ligase activity	molecular_function	4.04441	28.8063	17.0263	112.805	85.4843	97.9911
+GO:0030337	DNA polymerase processivity factor activity	molecular_function	0.179753	0.159437	0.0770868	0.595043	0.519394	1.1055
+GO:0030388	fructose 1,6-bisphosphate metabolic process	biological_process	70.5196	253.916	185.44	531.912	522.567	515.549
+GO:0030393	fructoselysine metabolic process	biological_process	0.040928	0	0.0374834	0	0	0
+GO:0030409	glutamate formimidoyltransferase activity	molecular_function	38.7195	12.9166	45.4751	2.07255	4.42169	4.76219
+GO:0030410	nicotianamine synthase activity	molecular_function	0	0	0	0.458381	0.165789	0.19869
+GO:0030418	nicotianamine biosynthetic process	biological_process	0	0	0	0.458381	0.165789	0.19869
+GO:0030420	establishment of competence for transformation	biological_process	26.6111	282.329	362.044	180.511	165.892	181.106
+GO:0030435	sporulation resulting in formation of a cellular spore	biological_process	305.004	732.425	485.842	1545.83	1440.33	2197.97
+GO:0030436	asexual sporulation	biological_process	1.06843	21.4712	7.272	53.8536	45.1479	49.5785
+GO:0030497	fatty acid elongation	biological_process	1.23664	9.73149	5.54831	27.9807	25.9851	38.4535
+GO:0030515	snoRNA binding	molecular_function	0	0	4.51064	3.85666	1.44687	0
+GO:0030541	plasmid partitioning	biological_process	0.0836546	0	0	0	0	0
+GO:0030573	bile acid catabolic process	biological_process	0.157247	0	0	0	0	0
+GO:0030599	pectinesterase activity	molecular_function	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0030604	1-deoxy-D-xylulose-5-phosphate reductoisomerase activity	molecular_function	6.30255	12.792	5.92476	25.5152	23.586	18.452
+GO:0030632	D-alanine biosynthetic process	biological_process	5.98602	12.431	8.13114	28.4637	26.1066	25.8735
+GO:0030643	cellular phosphate ion homeostasis	biological_process	135.519	181.203	114.123	130.628	159.54	130.57
+GO:0030655	beta-lactam antibiotic catabolic process	biological_process	211864	95932	117416	37667.8	49698.2	24928.3
+GO:0030674	protein binding, bridging	molecular_function	0.0814915	0	0.0755531	0	0	0
+GO:0030697	S-adenosylmethionine-dependent tRNA (m5U54) methyltransferase activity	molecular_function	0.0511114	0	0	0	0	0
+GO:0030698	5,10-methylenetetrahydrofolate-dependent tRNA (m5U54) methyltransferase activity	molecular_function	16.943	33.2904	24.8852	49.5534	49.4214	42.0487
+GO:0030699	glycine reductase activity	molecular_function	149.417	194.567	244.91	115.624	154.387	113.778
+GO:0030788	precorrin-2 C20-methyltransferase activity	molecular_function	0.177006	0.170032	0	0.226492	0.513556	0.471145
+GO:0030798	trans-aconitate 2-methyltransferase activity	molecular_function	0.0798145	0	0	0	0	0
+GO:0030955	potassium ion binding	molecular_function	82.6554	172.006	221.728	91.3702	114.013	90.918
+GO:0030961	peptidyl-arginine hydroxylation	biological_process	0.0500177	0	0	0	0	0
+GO:0030976	thiamine pyrophosphate binding	molecular_function	176.047	372.93	307.356	857.798	734.696	711.694
+GO:0030980	alpha-glucan catabolic process	biological_process	0.168573	0	0.129139	0	0	0
+GO:0030983	mismatched DNA binding	molecular_function	37.764	54.4805	44.2317	91.8449	100.232	96.6145
+GO:0031071	cysteine desulfurase activity	molecular_function	4.05751	56.0209	51.7516	114.906	99.4755	130.986
+GO:0031119	tRNA pseudouridine synthesis	biological_process	3.29281	13.1071	9.93864	29.9147	30.6453	21.9864
+GO:0031154	culmination involved in sorocarp development	biological_process	0.0403933	0	0.0750119	0	0	0
+GO:0031167	rRNA methylation	biological_process	5.43679	17.2148	17.3638	40.546	37.9954	59.0436
+GO:0031176	endo-1,4-beta-xylanase activity	molecular_function	39.2754	60.4228	57.7899	127.287	102.867	96.3288
+GO:0031218	arabinogalactan endo-1,4-beta-galactosidase activity	molecular_function	1.0845	6.84132	6.44917	14.4016	15.454	20.6395
+GO:0031220	maltodextrin phosphorylase activity	molecular_function	0.0643814	0	0.0803795	0	0	0
+GO:0031222	arabinan catabolic process	biological_process	0.249773	2.9802	2.21887	5.951	5.87756	6.05251
+GO:0031280	negative regulation of cyclase activity	biological_process	0.108493	0	0	0	0	0
+GO:0031297	replication fork processing	biological_process	0.0241582	0	0	0	0	0
+GO:0031388	organic acid phosphorylation	biological_process	42.9862	9.93042	11.9993	14.1016	15.5978	11.5215
+GO:0031402	sodium ion binding	molecular_function	0.200047	0	0	0	0	0
+GO:0031418	L-ascorbic acid binding	molecular_function	0.0692422	0	0	0	0	0
+GO:0031419	cobalamin binding	molecular_function	154.579	221.709	240.23	253.182	238.668	170.708
+GO:0031460	glycine betaine transport	biological_process	0.328907	0	0.042851	0	0	0
+GO:0031564	transcription antitermination	biological_process	86.1381	170.16	128.306	326.122	359.305	290.429
+GO:0031669	cellular response to nutrient levels	biological_process	0.25614	0	0	0	0	0
+GO:0031956	medium-chain fatty acid-CoA ligase activity	molecular_function	0.0767036	0	0	0	0	0.0216994
+GO:0031992	energy transducer activity	molecular_function	0.0426293	0	0	0	0	0
+GO:0032026	response to magnesium ion	biological_process	0	0	0.244476	0	0	0.175277
+GO:0032049	cardiolipin biosynthetic process	biological_process	0.17618	3.14249	2.99236	4.88365	5.64617	5.86957
+GO:0032135	DNA insertion or deletion binding	molecular_function	0.315175	0	0	0	0	0
+GO:0032196	transposition	biological_process	1.22062	0	0.559229	0	0	0.106039
+GO:0032238	adenosine transport	biological_process	0.0219952	0	0	0	0	0.0584364
+GO:0032259	methylation	biological_process	0.0764849	0	0	0	0	0
+GO:0032264	IMP salvage	biological_process	0.125603	0.634761	0.54087	0.0564054	0.0984227	0.309904
+GO:0032297	negative regulation of DNA-dependent DNA replication initiation	biological_process	0.12276	0	0.227832	0	0	0
+GO:0032324	molybdopterin cofactor biosynthetic process	biological_process	86.0071	34.7013	28.6731	35.9442	36.881	25.9151
+GO:0032450	maltose alpha-glucosidase activity	molecular_function	0.016867	0	0	0	0	0
+GO:0032467	positive regulation of cytokinesis	biological_process	0.0424106	0	0	0	0	0
+GO:0032508	DNA duplex unwinding	biological_process	0.234704	0	0.0936859	0	0	0.0384186
+GO:0032543	mitochondrial translation	biological_process	0.0469554	0	0	0	0	0
+GO:0032549	ribonucleoside binding	molecular_function	35.0364	32.9571	22.0045	74.5482	73.3699	59.6743
+GO:0032775	DNA methylation on adenine	biological_process	0.0768494	0	0.071268	0	0	0
+GO:0032781	positive regulation of ATPase activity	biological_process	0.0933276	0	0	0	0	0
+GO:0032784	regulation of DNA-templated transcription, elongation	biological_process	130.454	227.407	165.567	492.175	498.609	433.19
+GO:0032955	regulation of barrier septum assembly	biological_process	57.2966	189.028	160.35	360.639	349.388	259.476
+GO:0032973	amino acid export	biological_process	0.162035	0	0	0	0	0.215603
+GO:0033094	butane-1,4-diamine:2-oxoglutarate aminotransferase activity	molecular_function	176.201	53.7552	61.3663	40.5953	46.613	27.8609
+GO:0033212	iron assimilation	biological_process	0	0	0.198062	0	0	0
+GO:0033228	cysteine export	biological_process	0.090168	0	0.0573753	0	0	0.0861185
+GO:0033362	lysine biosynthetic process via diaminopimelate, diaminopimelate-aminotransferase pathway	biological_process	0.157101	6.67792	14.7784	14.832	20.9314	21.7579
+GO:0033384	geranyl diphosphate biosynthetic process	biological_process	0.129589	0	0	0	0	0
+GO:0033387	putrescine biosynthetic process from ornithine	biological_process	0.0726691	0	0.0220119	0	0	0
+GO:0033388	putrescine biosynthetic process from arginine	biological_process	1.78679	13.4693	13.2085	36.5505	39.1243	37.5637
+GO:0033499	galactose catabolic process via UDP-galactose	biological_process	0.0545626	0	0	0	0	0
+GO:0033539	fatty acid beta-oxidation using acyl-CoA dehydrogenase	biological_process	0.12327	0	0.0611642	0	0	0
+GO:0033543	fatty acid beta-oxidation, unsaturated, even number, reductase/isomerase pathway	biological_process	0.039008	0	0.144836	0	0	0
+GO:0033554	cellular response to stress	biological_process	18.2676	26.4392	23.0705	51.9233	53.0269	60.8482
+GO:0033567	DNA replication, Okazaki fragment processing	biological_process	0.0401017	0	0	0	0	0
+GO:0033592	RNA strand annealing activity	molecular_function	0	0	0	0	0	0.027294
+GO:0033608	formyl-CoA transferase activity	molecular_function	0.0441605	0	0	0	0	0
+GO:0033611	oxalate catabolic process	biological_process	0.0441605	0	0	0	0	0.0418465
+GO:0033680	ATP-dependent DNA/RNA helicase activity	molecular_function	0.0579166	0	0.0179072	0	0	0.0256771
+GO:0033721	aldehyde dehydrogenase (NADP+) activity	molecular_function	0.0479276	0	0	0	0	0
+GO:0033726	aldehyde ferredoxin oxidoreductase activity	molecular_function	209.021	34.6766	39.8562	70.1212	80.2354	39.5824
+GO:0033739	preQ1 synthase activity	molecular_function	0.0694853	0	0.129049	0	0	0
+GO:0033743	peptide-methionine (R)-S-oxide reductase activity	molecular_function	2.37813	2.10927	1.97737	1.99371	1.68072	1.40121
+GO:0033748	hydrogenase (acceptor) activity	molecular_function	0.0312793	0	0.0465498	0	0	0
+GO:0033764	steroid dehydrogenase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor	molecular_function	1.43953	0	0	0	0	0
+GO:0033785	heptose 7-phosphate kinase activity	molecular_function	0.0189329	0	0.0702306	0	0	0
+GO:0033786	heptose-1-phosphate adenylyltransferase activity	molecular_function	0.0189329	0	0.0702306	0	0	0
+GO:0033794	sarcosine reductase activity	molecular_function	39.2407	35.7679	37.5771	30.153	31.4085	22.4047
+GO:0033795	betaine reductase activity	molecular_function	39.2407	35.7679	37.5771	30.153	31.4085	22.4047
+GO:0033817	beta-ketoacyl-acyl-carrier-protein synthase II activity	molecular_function	66.4879	3.17819	4.16665	18.499	28.3962	21.9105
+GO:0033818	beta-ketoacyl-acyl-carrier-protein synthase III activity	molecular_function	4.04767	19.5069	7.83488	91.367	62.7221	37.8774
+GO:0033819	lipoyl(octanoyl) transferase activity	molecular_function	0.341083	0	0	0	0	0
+GO:0033856	pyridoxine 5'-phosphate synthase activity	molecular_function	0	0	0	0	0	0.0555582
+GO:0033862	UMP kinase activity	molecular_function	43.472	107.429	80.7567	190.647	224.319	333.813
+GO:0033883	pyridoxal phosphatase activity	molecular_function	0.0746134	0	0.138477	0	0	0.0419435
+GO:0033897	ribonuclease T2 activity	molecular_function	0.0369908	0	0	0	0	0
+GO:0033905	xylan endo-1,3-beta-xylosidase activity	molecular_function	16.3941	19.9949	19.8209	38.1925	25.6185	20.6253
+GO:0033971	hydroxyisourate hydrolase activity	molecular_function	0	0	0	0	0	0.246875
+GO:0033990	ectoine synthase activity	molecular_function	0.395184	0.94332	0	0	0	0.131458
+GO:0034015	L-ribulose-5-phosphate 3-epimerase activity	molecular_function	0.0683187	0	0	0	0	0
+GO:0034023	5-(carboxyamino)imidazole ribonucleotide mutase activity	molecular_function	5.36721	5.34754	4.64663	28.6754	36.4129	35.6437
+GO:0034028	5-(carboxyamino)imidazole ribonucleotide synthase activity	molecular_function	0.0529585	0	0.0982867	0	0	0
+GO:0034038	deoxyhypusine synthase activity	molecular_function	0.125603	0	0	0.28919	0	0.0417172
+GO:0034039	8-oxo-7,8-dihydroguanine DNA N-glycosylase activity	molecular_function	0	0	0	0.189038	0.0550169	0.0819791
+GO:0034040	lipid-transporting ATPase activity	molecular_function	0.150977	0	0	0	0	0.040456
+GO:0034194	D-galactonate catabolic process	biological_process	0.216379	0	0	0	0	0
+GO:0034198	cellular response to amino acid starvation	biological_process	0	0	0	0	0	0.0362842
+GO:0034200	D,D-heptose 1,7-bisphosphate phosphatase activity	molecular_function	0.114108	0	0.21227	0	0	0
+GO:0034213	quinolinate catabolic process	biological_process	0.0653293	0	0	0	0	0
+GO:0034219	carbohydrate transmembrane transport	biological_process	0.699835	0	0.245965	0	0	0.108206
+GO:0034220	ion transmembrane transport	biological_process	0.466103	0	0	0	0	0.102676
+GO:0034224	cellular response to zinc ion starvation	biological_process	0.0484137	0	0	0	0	0
+GO:0034227	tRNA thio-modification	biological_process	2.03138	8.16051	7.27895	27.6894	29.1535	21.9688
+GO:0034257	nicotinamide riboside transmembrane transporter activity	molecular_function	0.0875918	4.78624	2.8431	6.88935	7.03481	9.66661
+GO:0034567	chromate reductase activity	molecular_function	0.165389	0	0	0	0	0
+GO:0034599	cellular response to oxidative stress	biological_process	0.0685131	0	0	0	0	0
+GO:0034618	arginine binding	molecular_function	60.3777	60.9099	61.8876	46.3072	57.1298	66.983
+GO:0034628	'de novo' NAD biosynthetic process from aspartate	biological_process	0.0653293	0	0	0	0	0
+GO:0034639	L-amino acid efflux transmembrane transporter activity	molecular_function	0.162035	0	0	0	0	0.215603
+GO:0034661	ncRNA catabolic process	biological_process	0.0135617	0	0	0	0	0.0352171
+GO:0034700	allulose 6-phosphate 3-epimerase activity	molecular_function	0.0890257	0	0	0	0	0
+GO:0034775	glutathione transmembrane transport	biological_process	0.090168	0	0.0573753	0	0	0
+GO:0034979	NAD-dependent protein deacetylase activity	molecular_function	45.9588	119.606	131.267	111.654	132.763	170.964
+GO:0035312	5'-3' exodeoxyribonuclease activity	molecular_function	0	0	0.116555	0	0	0.0883498
+GO:0035344	hypoxanthine transport	biological_process	0.0803249	0	0	0	0	0.0530681
+GO:0035350	FAD transmembrane transport	biological_process	0.0959524	0	0	0	0	0.0780984
+GO:0035368	selenocysteine insertion sequence binding	molecular_function	0.0286545	0	0	0	0	0
+GO:0035429	gluconate transmembrane transport	biological_process	0.285791	0	0	0	0	0.164637
+GO:0035435	phosphate ion transmembrane transport	biological_process	64.8398	13.1457	11.0697	18.7107	19.8673	11.59
+GO:0035438	cyclic-di-GMP binding	molecular_function	200.484	528.744	669.018	1387.52	1436.29	1947.91
+GO:0035442	dipeptide transmembrane transport	biological_process	0.217035	0	0	0	0	0.0780984
+GO:0035444	nickel cation transmembrane transport	biological_process	0.0848698	0	0.0220119	0	0	0
+GO:0035527	3-hydroxypropionate dehydrogenase (NADP+) activity	molecular_function	0	0	0.151106	0	0	0
+GO:0035556	intracellular signal transduction	biological_process	0	0	0.442223	0	0	0
+GO:0035725	sodium ion transmembrane transport	biological_process	0.38189	0	0.0880025	0	0	0.212208
+GO:0035998	7,8-dihydroneopterin 3'-triphosphate biosynthetic process	biological_process	23.8375	54.1174	39.3276	81.2648	80.2505	84.8721
+GO:0035999	tetrahydrofolate interconversion	biological_process	158.735	143.081	157.319	322.067	344.398	315.873
+GO:0036009	protein-glutamine N-methyltransferase activity	molecular_function	1.75908	8.97286	6.41728	11.9222	13.9485	13.8792
+GO:0036094	small molecule binding	molecular_function	0.912593	1.12829	1.69573	1.86282	1.3843	2.54177
+GO:0036104	Kdo2-lipid A biosynthetic process	biological_process	0.0942025	0	0	0	0	0
+GO:0036108	4-amino-4-deoxy-alpha-L-arabinopyranosyl undecaprenyl phosphate biosynthetic process	biological_process	0	0	0	0	0	0.0872827
+GO:0036131	prostaglandin D2 11-ketoreductase activity	molecular_function	0.143394	0	0	0	0	0
+GO:0036355	2-iminoacetate synthase activity	molecular_function	0.235895	3.02095	6.31945	2.49507	2.07163	1.83132
+GO:0036356	cyclic 2,3-diphosphoglycerate synthetase activity	molecular_function	0.156226	0.374836	0.253588	0.199235	0.174296	0.363424
+GO:0036361	racemase activity, acting on amino acids and derivatives	molecular_function	53.0678	40.5321	36.5296	34.0965	36.1008	39.929
+GO:0036374	glutathione hydrolase activity	molecular_function	0.0455458	0	0	0	0	0
+GO:0036380	UDP-N-acetylglucosamine-undecaprenyl-phosphate N-acetylglucosaminephosphotransferase activity	molecular_function	0.0765578	0	0.0472715	0	0	0
+GO:0036381	pyridoxal 5'-phosphate synthase (glutamine hydrolysing) activity	molecular_function	0.996102	1.67288	1.284	2.39159	0.79411	2.81018
+GO:0036439	glycerol-3-phosphate dehydrogenase [NADP+] activity	molecular_function	1.81461	8.36484	5.71376	33.8568	32.5297	24.5134
+GO:0040008	regulation of growth	biological_process	0.0489484	0	0.0452868	0	0	0
+GO:0042026	protein refolding	biological_process	54.7863	136.348	154.791	135.119	153.925	144.907
+GO:0042126	nitrate metabolic process	biological_process	0.033734	0	0	0	0	0
+GO:0042128	nitrate assimilation	biological_process	0.887876	0	0.482954	0	0	0
+GO:0042132	fructose 1,6-bisphosphate 1-phosphatase activity	molecular_function	0.157174	0.06735	0.260354	0.0717752	0.156587	0
+GO:0042158	lipoprotein biosynthetic process	biological_process	48.0586	70.3409	80.3992	44.6553	44.9929	49.183
+GO:0042168	heme metabolic process	biological_process	0	0	0.0861531	0	0	0
+GO:0042173	regulation of sporulation resulting in formation of a cellular spore	biological_process	4.93358	18.9337	16.2534	63.1571	73.0955	145.364
+GO:0042182	ketone catabolic process	biological_process	0	0	0	0	0	0.0350877
+GO:0042242	cobyrinic acid a,c-diamide synthase activity	molecular_function	0.14247	0.234488	0.151106	0.208287	0.127222	0.0271
+GO:0042244	spore wall assembly	biological_process	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0042245	RNA repair	biological_process	0.112552	0.15365	0.409295	0.0614043	0.0178615	0
+GO:0042254	ribosome biogenesis	biological_process	90.5366	149.361	101.133	498.353	422.023	306.142
+GO:0042256	mature ribosome assembly	biological_process	6.04631	25.0691	19.5015	53.3668	50.5327	76.8763
+GO:0042274	ribosomal small subunit biogenesis	biological_process	34.962	85.0196	68.6769	133.842	135.724	110.401
+GO:0042277	peptide binding	molecular_function	0.066666	0	0	0	0	0
+GO:0042278	purine nucleoside metabolic process	biological_process	0.0852829	0	0	0	0	0
+GO:0042279	nitrite reductase (cytochrome, ammonia-forming) activity	molecular_function	0.188502	0	0.139875	0	0	0
+GO:0042286	glutamate-1-semialdehyde 2,1-aminomutase activity	molecular_function	0.46885	6.25604	6.42752	13.6374	10.7565	11.4639
+GO:0042301	phosphate ion binding	molecular_function	0.109077	0	0.202663	0	0	0
+GO:0042355	L-fucose catabolic process	biological_process	0.0539064	0	0.0554808	0	0	0
+GO:0042398	cellular modified amino acid biosynthetic process	biological_process	0.0496775	0	0	0	0	0
+GO:0042450	arginine biosynthetic process via ornithine	biological_process	1.85894	2.88611	1.32504	13.0639	7.671	6.69098
+GO:0042493	response to drug	biological_process	0.678982	0	0.178802	0	0	0
+GO:0042542	response to hydrogen peroxide	biological_process	0.198613	0	0.071674	0	0	0
+GO:0042545	cell wall modification	biological_process	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0042558	pteridine-containing compound metabolic process	biological_process	7.74466	2.41881	7.82649	5.41403	4.73477	6.22433
+GO:0042577	lipid phosphatase activity	molecular_function	0	0	0.244476	0	0	0.175277
+GO:0042586	peptide deformylase activity	molecular_function	10.0293	35.8297	26.3327	78.8803	86.829	107.225
+GO:0042602	riboflavin reductase (NADPH) activity	molecular_function	0.086012	0	0.23753	0	0	0
+GO:0042623	ATPase activity, coupled	molecular_function	0.0375984	0	0.0348672	0	0	0
+GO:0042626	ATPase activity, coupled to transmembrane movement of substances	molecular_function	90.2097	150.678	142.996	232.597	232.65	259.123
+GO:0042732	D-xylose metabolic process	biological_process	0	0	0.0769063	0	0	0
+GO:0042742	defense response to bacterium	biological_process	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0042744	hydrogen peroxide catabolic process	biological_process	0.0460319	0	0	0	0	0
+GO:0042773	ATP synthesis coupled electron transport	biological_process	102.057	96.495	68.4726	314.813	295.65	225.54
+GO:0042777	plasma membrane ATP synthesis coupled proton transport	biological_process	207.599	525.102	423.201	1060.89	1015.48	822.622
+GO:0042781	3'-tRNA processing endoribonuclease activity	molecular_function	0.0942025	0.241209	0.524361	0.321024	0	0.208812
+GO:0042802	identical protein binding	molecular_function	21.2888	29.5114	30.7923	80.3926	73.2713	83.1425
+GO:0042803	protein homodimerization activity	molecular_function	0.0800576	0.184127	1.33312	0.689474	0.256333	0.748484
+GO:0042819	vitamin B6 biosynthetic process	biological_process	0.996102	1.67288	1.284	2.39159	0.79411	2.81018
+GO:0042823	pyridoxal phosphate biosynthetic process	biological_process	5.93274	13.1833	12.1403	14.2349	11.4887	17.5151
+GO:0042834	peptidoglycan binding	molecular_function	0.0633607	0	0	0	0	0
+GO:0042838	D-glucarate catabolic process	biological_process	0.217886	0	0	0	0	0.129873
+GO:0042840	D-glucuronate catabolic process	biological_process	1.49497	0	0	0	0	0
+GO:0042843	D-xylose catabolic process	biological_process	0.0744919	0	0	0	0	0.0247716
+GO:0042867	pyruvate catabolic process	biological_process	0.046445	0	0	0	0	0
+GO:0042882	L-arabinose transport	biological_process	1.68101	4.31054	6.05995	3.25868	3.82395	4.79958
+GO:0042884	microcin transport	biological_process	0.0769709	0	0.214075	0	0	0
+GO:0042888	molybdenum ion transmembrane transporter activity	molecular_function	0.106914	0	0	0	0	0
+GO:0042906	xanthine transport	biological_process	0.0374282	0	0.0694638	0	0	0
+GO:0042907	xanthine transmembrane transporter activity	molecular_function	0.0374282	0	0.0694638	0	0	0
+GO:0042912	colicin transmembrane transporter activity	molecular_function	0	0	0.117682	0	0	0
+GO:0042914	colicin transport	biological_process	0.0426293	0	0	0	0	0
+GO:0042925	benzoate transporter activity	molecular_function	0.0475144	0	0	0	0	0
+GO:0042931	enterobactin transporter activity	molecular_function	0.0882966	0	0.0819582	0	0	0.0587598
+GO:0042936	dipeptide transporter activity	molecular_function	0.115323	0	0.253047	0	0	0
+GO:0042937	tripeptide transporter activity	molecular_function	0.0781618	0	0.218585	0	0	0
+GO:0042938	dipeptide transport	biological_process	0.0402232	0	0	0	0	0
+GO:0042939	tripeptide transport	biological_process	0.0347305	0	0	0	0	0
+GO:0042942	D-serine transport	biological_process	0.098796	0	0	0	0	0
+GO:0042945	D-serine transmembrane transporter activity	molecular_function	0.098796	0	0	0	0	0
+GO:0042953	lipoprotein transport	biological_process	0.600091	0	0	0	0	0
+GO:0042954	lipoprotein transporter activity	molecular_function	0.600091	0	0	0	0	0
+GO:0042958	maltodextrin transmembrane transporter activity	molecular_function	0.0408065	0	0	0	0	0
+GO:0042972	licheninase activity	molecular_function	1.13682	8.18688	5.5922	7.09522	7.08042	10.4741
+GO:0043022	ribosome binding	molecular_function	146.566	275.026	238.198	534.163	495.458	480.474
+GO:0043023	ribosomal large subunit binding	molecular_function	3.59783	14.764	9.49006	44.2985	44.8502	38.8289
+GO:0043024	ribosomal small subunit binding	molecular_function	0.0375984	0	0.0348672	0	0	0
+GO:0043039	tRNA aminoacylation	biological_process	27.0738	37.966	41.1948	36.6099	54.6363	39.6919
+GO:0043086	negative regulation of catalytic activity	biological_process	0.180142	0	0.072937	0	0	0
+GO:0043093	FtsZ-dependent cytokinesis	biological_process	249.217	676.977	564.927	1651.68	1701.78	2069.27
+GO:0043094	cellular metabolic compound salvage	biological_process	15.6617	14.8909	14.3173	23.2114	28.232	22.4618
+GO:0043103	hypoxanthine salvage	biological_process	0	0.634761	0.307761	0.0564054	0.0984227	0
+GO:0043115	precorrin-2 dehydrogenase activity	molecular_function	1.40405	15.0646	9.34062	24.9796	24.1863	34.0244
+GO:0043136	glycerol-3-phosphatase activity	molecular_function	0	0	0.180065	0	0	0.193645
+GO:0043137	DNA replication, removal of RNA primer	biological_process	0.232128	0	0.32251	0.475343	0.103718	0.0772576
+GO:0043140	ATP-dependent 3'-5' DNA helicase activity	molecular_function	0.136953	0	0.0470459	0	0	0.0384186
+GO:0043141	ATP-dependent 5'-3' DNA helicase activity	molecular_function	1.90991	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0043142	single-stranded DNA-dependent ATPase activity	molecular_function	0.0289947	0	0	0	0	0
+GO:0043150	DNA synthesis involved in double-strand break repair via homologous recombination	biological_process	0.0735927	0	0	0	0	0
+GO:0043164	Gram-negative-bacterium-type cell wall biogenesis	biological_process	0.0143151	0	0	0	0	0
+GO:0043165	Gram-negative-bacterium-type cell outer membrane assembly	biological_process	0.350149	0	0.694818	0	0	0
+GO:0043169	cation binding	molecular_function	73.3805	17.9424	25.2186	36.1533	40.772	44.7865
+GO:0043171	peptide catabolic process	biological_process	3.49947	3.40423	4.12114	2.4798	3.00514	1.70061
+GO:0043213	bacteriocin transport	biological_process	0.0230889	0	0.654358	0	0	0
+GO:0043215	daunorubicin transport	biological_process	0	0.391685	0.32851	0.1772	0	0.225143
+GO:0043266	regulation of potassium ion transport	biological_process	0.208748	0	0.176185	0	0	0.0427844
+GO:0043295	glutathione binding	molecular_function	0.0403933	0	0.0750119	0	0	0
+GO:0043335	protein unfolding	biological_process	0.828574	2.49783	0.874477	1.07929	0.741198	1.48685
+GO:0043365	[formate-C-acetyltransferase]-activating enzyme activity	molecular_function	19.565	128.33	125.265	326.89	276.162	251.047
+GO:0043419	urea catabolic process	biological_process	0.0309634	0.628694	1.87584	1.02724	1.13578	2.2221
+GO:0043433	negative regulation of sequence-specific DNA binding transcription factor activity	biological_process	0.0888556	0	0.0854314	0	0	0.0304632
+GO:0043462	regulation of ATPase activity	biological_process	0	0	0.835325	0	0	0
+GO:0043470	regulation of carbohydrate catabolic process	biological_process	0.068659	0	0	0	0	0
+GO:0043488	regulation of mRNA stability	biological_process	0.16534	0	0	0	0	0
+GO:0043492	ATPase activity, coupled to movement of substances	molecular_function	0.0432126	0	0.214075	0	0	0
+GO:0043531	ADP binding	molecular_function	0.0324945	0	0	0	0	0.0418465
+GO:0043546	molybdopterin cofactor binding	molecular_function	0.128252	0	0	0	0	0.0230576
+GO:0043565	sequence-specific DNA binding	molecular_function	46.4134	248.628	173.836	298.457	285.679	319.185
+GO:0043571	maintenance of CRISPR repeat elements	biological_process	14.1343	6.87586	3.31347	19.3701	16.8093	22.7483
+GO:0043621	protein self-association	molecular_function	0.0255679	0	0	0	0	0
+GO:0043687	post-translational protein modification	biological_process	0.0500177	0	0	0	0	0
+GO:0043708	cell adhesion involved in biofilm formation	biological_process	0.0270747	0	0.0635097	0	0	0.0755436
+GO:0043709	cell adhesion involved in single-species biofilm formation	biological_process	0.237767	0	0.0414076	0	0	0.251952
+GO:0043711	pilus organization	biological_process	0.912131	0	0.704742	0	0	0.104067
+GO:0043714	(R)-citramalate synthase activity	molecular_function	0.0362373	0.139181	0.0672536	0.222513	0	0.192837
+GO:0043726	5-amino-6-(5-phosphoribitylamino)uracil phosphatase activity	molecular_function	0.114885	0	0.131891	0	0	0
+GO:0043737	deoxyribonuclease V activity	molecular_function	8.41664	5.77819	4.71772	5.81506	8.1438	8.24891
+GO:0043740	GTP cyclohydrolase IIa activity	molecular_function	0.526596	0.388931	0.751788	0.828871	0.469695	2.42383
+GO:0043752	adenosylcobinamide kinase activity	molecular_function	0.176107	3.3816	2.72149	10.0231	7.27764	13.1028
+GO:0043755	alpha-ribazole phosphatase activity	molecular_function	0.550997	2.53531	1.5333	6.70068	5.21243	4.3977
+GO:0043761	archaetidylserine synthase activity	molecular_function	1.22575	1.77486	1.71368	1.3061	1.02104	1.75351
+GO:0043765	T/G mismatch-specific endonuclease activity	molecular_function	0.150029	0	0	0	0	0
+GO:0043766	Sep-tRNA:Cys-tRNA synthase activity	molecular_function	0.320984	0.664072	0.412452	0.379046	0.154329	0.262915
+GO:0043768	S-ribosylhomocysteine lyase activity	molecular_function	0	0	0.492967	0	0	0
+GO:0043772	acyl-phosphate glycerol-3-phosphate acyltransferase activity	molecular_function	302.318	110.993	96.964	122.632	142.067	125.987
+GO:0043773	coenzyme F420-0 gamma-glutamyl ligase activity	molecular_function	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0043781	cobalt-factor II C20-methyltransferase activity	molecular_function	0.177006	0.170032	0	0.226492	0.513556	0.471145
+GO:0043801	hexulose-6-phosphate synthase activity	molecular_function	0.0453757	0.172926	0.0842136	0.742945	0.162121	0.332153
+GO:0043805	indolepyruvate ferredoxin oxidoreductase activity	molecular_function	137.869	67.4283	101.111	48.3755	53.7129	79.4731
+GO:0043807	3-methyl-2-oxobutanoate dehydrogenase (ferredoxin) activity	molecular_function	108.753	61.7926	47.705	59.1111	66.9468	93.9611
+GO:0043814	phospholactate guanylyltransferase activity	molecular_function	0.465325	0	0.172802	0.238231	0	0
+GO:0043815	phosphoribosylglycinamide formyltransferase 2 activity	molecular_function	0	0	0.26297	0	0	0.124181
+GO:0043817	phosphosulfolactate synthase activity	molecular_function	0.232565	0.595509	0.863065	1.54662	0.415307	0.670579
+GO:0043821	propionyl-CoA:succinate CoA-transferase activity	molecular_function	0.0623156	0	0	0	0	0.0829169
+GO:0043825	succinylornithine transaminase activity	molecular_function	0.0680757	0	0	0	0	0
+GO:0043838	phosphatidylethanolamine:Kdo2-lipid A phosphoethanolamine transferase activity	molecular_function	0.0630447	0	0	0	0	0
+GO:0043884	CO-methylating acetyl-CoA synthase activity	molecular_function	0.039421200000000003	0	0	0	0.0704043	0.0524537
+GO:0043887	melibiose:sodium symporter activity	molecular_function	0.142252	0	0.0880025	0	0	0.212208
+GO:0043917	ribose 1,5-bisphosphate isomerase activity	molecular_function	0.222333	0.573012	0.41146	0.532295	0.266599	0.446632
+GO:0043934	sporulation	biological_process	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0043937	regulation of sporulation	biological_process	0.816179	4.93041	4.15096	24.8279	21.9791	19.7016
+GO:0043952	protein transport by the Sec complex	biological_process	95.2524	101.751	87.5394	245.802	195.747	155.367
+GO:0043953	protein transport by the Tat complex	biological_process	0.621406	0	0	0	0	0
+GO:0043957	acryloyl-CoA reductase (NADP+) activity	molecular_function	0.117777	0	0.21845	0	0	0
+GO:0044010	single-species biofilm formation	biological_process	0.214726	0	0.526166	0	0	1.27302
+GO:0044036	cell wall macromolecule metabolic process	biological_process	0.0143151	0	0	0	0	0
+GO:0044038	cell wall macromolecule biosynthetic process	biological_process	0.0765578	0	0.0472715	0	0	0
+GO:0044092	negative regulation of molecular function	biological_process	0.168767	0	0	0	0	0
+GO:0044179	hemolysis in other organism	biological_process	0	0	0	0	0	0.0424286
+GO:0044183	protein binding involved in protein folding	molecular_function	0.702582	0	0.704742	0	0	0
+GO:0044205	'de novo' UMP biosynthetic process	biological_process	19.4928	44.1653	39.3358	99.6152	108.781	109.723
+GO:0044206	UMP salvage	biological_process	34.539	101.442	94.9208	154.13	149.831	165.571
+GO:0044208	'de novo' AMP biosynthetic process	biological_process	37.488	46.8342	42.4175	116.478	132.705	106.66
+GO:0044209	AMP salvage	biological_process	92.9624	95.0476	63.2241	179.437	139.521	142.404
+GO:0044210	'de novo' CTP biosynthetic process	biological_process	128.517	156.367	124.671	267.003	311.013	400.72
+GO:0044211	CTP salvage	biological_process	10.1265	24.3598	14.7753	15.3747	16.4329	16.4033
+GO:0044212	transcription regulatory region DNA binding	molecular_function	0.423012	0	0.411956	0	0	0.379206
+GO:0044237	cellular metabolic process	biological_process	9.47532	8.33493	8.53972	5.25356	5.34	5.49489
+GO:0044238	primary metabolic process	biological_process	99.9982	257.672	217.979	871.723	621.865	821.805
+GO:0044260	cellular macromolecule metabolic process	biological_process	0	0	0.267977	0	0.0645879	0.240537
+GO:0044262	cellular carbohydrate metabolic process	biological_process	0.0890257	0	0.0933701	0	0	0
+GO:0044281	small molecule metabolic process	biological_process	0.0604685	0	0	0	0	0
+GO:0044283	small molecule biosynthetic process	biological_process	0.143856	0	0.138477	0	0	0.0419435
+GO:0044318	L-aspartate:fumarate oxidoreductase activity	molecular_function	2.06198	11.9143	6.784	25.377	25.8602	20.0365
+GO:0044349	DNA excision	biological_process	1.42047	0	0	0	0	0
+GO:0044571	[2Fe-2S] cluster assembly	biological_process	3.91947	55.9324	51.6661	114.788	99.4343	130.863
+GO:0044610	FMN transmembrane transporter activity	molecular_function	0.0959524	0	0	0	0	0.0780984
+GO:0044667	(R)-carnitine:4-(trimethylammonio)butanoate antiporter activity	molecular_function	0.0349249	0	0	0	0	0
+GO:0044689	7,8-didemethyl-8-hydroxy-5-deazariboflavin synthase activity	molecular_function	0.120913	0.263659	0.169871	0.81472	0.656687	1.09606
+GO:0044718	siderophore transmembrane transport	biological_process	0	0	0.117682	0	0	0
+GO:0044780	bacterial-type flagellum assembly	biological_process	33.6046	88.8166	65.9186	967.809	899.021	747.623
+GO:0044781	bacterial-type flagellum organization	biological_process	15.8754	45.6453	37.7114	405.282	394.889	280.533
+GO:0044822	poly(A) RNA binding	molecular_function	1.45856	0.187441	1.44701	1.9968	1.30741	2.72633
+GO:0045127	N-acetylglucosamine kinase activity	molecular_function	0.0637981	0	0	0	0	0.0424286
+GO:0045148	tripeptide aminopeptidase activity	molecular_function	3.49947	3.40423	4.12114	2.4798	3.00514	1.70061
+GO:0045150	acetoin catabolic process	biological_process	115.779	6.00386	9.3934	2.61932	4.8924	1.93923
+GO:0045226	extracellular polysaccharide biosynthetic process	biological_process	7.5669	45.7342	42.6538	85.2588	100.104	158.167
+GO:0045227	capsule polysaccharide biosynthetic process	biological_process	3.35204	16.584	8.70638	40.1594	35.961	49.9037
+GO:0045228	slime layer polysaccharide biosynthetic process	biological_process	0.232954	0	0.37745	0	0	0
+GO:0045330	aspartyl esterase activity	molecular_function	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0045333	cellular respiration	biological_process	0.0717456	0	0.122734	0	0	0.0111569
+GO:0045337	farnesyl diphosphate biosynthetic process	biological_process	0.129589	0	0	0	0	0
+GO:0045437	uridine nucleosidase activity	molecular_function	0.153577	0	0	0	0	0
+GO:0045454	cell redox homeostasis	biological_process	153.79	952.077	856.77	2014.43	1580.85	2320.96
+GO:0045471	response to ethanol	biological_process	0.269994	0	0.200453	0	0	0
+GO:0045490	pectin catabolic process	biological_process	0.218955	0.150196	0.268834	0.495139	0.349135	0.332929
+GO:0045493	xylan catabolic process	biological_process	29.4383	51.7107	53.1545	97.1435	79.9344	78.4948
+GO:0045550	geranylgeranyl reductase activity	molecular_function	0.266154	1.40968	0.781738	1.31692	1.02676	1.37405
+GO:0045717	negative regulation of fatty acid biosynthetic process	biological_process	2.61811	19.529	5.98408	62.2942	58.1151	35.9727
+GO:0045727	positive regulation of translation	biological_process	4.98386	17.2294	11.4699	31.2616	34.3021	35.1088
+GO:0045828	positive regulation of isoprenoid metabolic process	biological_process	0.0932304	0	0	0	0	0
+GO:0045862	positive regulation of proteolysis	biological_process	0.0281198	0	0	0	0	0
+GO:0045892	negative regulation of transcription, DNA-templated	biological_process	90.9291	289.743	245.239	1148.45	1201.22	1573.41
+GO:0045893	positive regulation of transcription, DNA-templated	biological_process	2.81635	0	0.931942	0	0	1.34226
+GO:0045901	positive regulation of translational elongation	biological_process	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0045905	positive regulation of translational termination	biological_process	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0045910	negative regulation of DNA recombination	biological_process	21.7637	28.6087	23.2871	45.1221	50.631	46.856
+GO:0045936	negative regulation of phosphate metabolic process	biological_process	135.519	181.203	114.123	130.628	159.54	130.57
+GO:0045947	negative regulation of translational initiation	biological_process	0.168767	0	0	0	0	0
+GO:0045982	negative regulation of purine nucleobase metabolic process	biological_process	1.63228	13.8764	9.70138	49.8668	49.5821	67.5221
+GO:0046026	precorrin-4 C11-methyltransferase activity	molecular_function	0.0830956	0.0797652	0	0.0849563	0.111293	0.0551701
+GO:0046034	ATP metabolic process	biological_process	0.85927	1.48119	1.15811	14.8812	12.7606	11.0413
+GO:0046039	GTP metabolic process	biological_process	1.32146	7.17098	4.90211	16.84	15.7692	21.3615
+GO:0046080	dUTP metabolic process	biological_process	11.2078	30.0108	19.2557	52.7854	62.0241	79.491
+GO:0046104	thymidine metabolic process	biological_process	0.0414384	0	0	0	0	0
+GO:0046113	nucleobase catabolic process	biological_process	2.14196	3.38192	3.26796	1.73579	2.60042	1.87404
+GO:0046133	pyrimidine ribonucleoside catabolic process	biological_process	0	0	0.0567438	0	0	0.040844
+GO:0046140	corrin biosynthetic process	biological_process	0.581693	1.30481	0.516017	0.416077	0.164313	0.0683321
+GO:0046167	glycerol-3-phosphate biosynthetic process	biological_process	16.9865	23.3632	20.8785	44.1572	45.8344	36.5379
+GO:0046168	glycerol-3-phosphate catabolic process	biological_process	1.81461	8.36484	5.71376	33.8568	32.5297	24.5134
+GO:0046176	aldonic acid catabolic process	biological_process	0.0899007	0	0	0	0	0
+GO:0046177	D-gluconate catabolic process	biological_process	0.100206	0	0	0	0	0
+GO:0046183	L-idonate catabolic process	biological_process	0.431421	0	0	0	0	0.128612
+GO:0046214	enterobactin catabolic process	biological_process	0	0	0	0	0	0.0307219
+GO:0046256	2,4,6-trinitrotoluene catabolic process	biological_process	0.165389	0	0	0	0	0
+GO:0046279	3,4-dihydroxybenzoate biosynthetic process	biological_process	1.38574	7.35655	3.7173	17.0606	15.9985	19.0732
+GO:0046294	formaldehyde catabolic process	biological_process	0.0710651	0	0	0	0	0
+GO:0046296	glycolate catabolic process	biological_process	0.0297725	0	0.0829055	0	0	0.0197914
+GO:0046316	gluconokinase activity	molecular_function	0.247318	0	0	0	0	0
+GO:0046336	ethanolamine catabolic process	biological_process	0.0953205	0	0.27339	0	0	0.221715
+GO:0046348	amino sugar catabolic process	biological_process	0.071381	0	0	0	0	0.0951734
+GO:0046356	acetyl-CoA catabolic process	biological_process	0.0396156	0	0.0734782	0.0405383	0	0
+GO:0046365	monosaccharide catabolic process	biological_process	0	0	0	0	0	0.0350877
+GO:0046373	L-arabinose metabolic process	biological_process	4.20574	10.9966	12.1554	20.5277	18.1504	28.5563
+GO:0046386	deoxyribose phosphate catabolic process	biological_process	21.7813	36.7928	23.142	73.7219	53.9873	77.8534
+GO:0046392	galactarate catabolic process	biological_process	0.266859	0	0	0	0	0.129873
+GO:0046416	D-amino acid metabolic process	biological_process	13.9579	8.65483	7.72546	10.4077	13.1879	9.88361
+GO:0046417	chorismate metabolic process	biological_process	0.237451	0	0.306859	0	0.420168	0.432759
+GO:0046429	4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase activity	molecular_function	18.231	45.0118	33.4474	82.3387	81.4814	85.8727
+GO:0046444	FMN metabolic process	biological_process	0.0794256	0.457588	0.588683	1.70599	0.70834	0.422734
+GO:0046459	short-chain fatty acid metabolic process	biological_process	0.0336125	0	0.211098	0	0	0.24694
+GO:0046467	membrane lipid biosynthetic process	biological_process	0.266154	1.40968	0.781738	1.31692	1.02676	1.37405
+GO:0046474	glycerophospholipid biosynthetic process	biological_process	0.162837	0	0.622107	0.291528	0.327171	0.554192
+GO:0046487	glyoxylate metabolic process	biological_process	0.0661313	0	0	0	0	0
+GO:0046523	S-methyl-5-thioribose-1-phosphate isomerase activity	molecular_function	24.8705	22.4835	33.9172	42.5619	38.2325	44.7121
+GO:0046537	2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity	molecular_function	14.1345	126.064	107.908	490.414	487.742	613.033
+GO:0046538	2,3-bisphosphoglycerate-dependent phosphoglycerate mutase activity	molecular_function	55.8674	437.949	223.846	234.611	312.144	253.308
+GO:0046553	D-malate dehydrogenase (decarboxylating) activity	molecular_function	0	0	0.0963923	0	0	0
+GO:0046555	acetylxylan esterase activity	molecular_function	7.87794	11.7939	11.5945	20.9763	16.3192	17.9495
+GO:0046556	alpha-L-arabinofuranosidase activity	molecular_function	4.20574	10.9966	12.1554	20.5277	18.1504	28.5563
+GO:0046618	drug export	biological_process	0.265619	0	0	0	0	0
+GO:0046654	tetrahydrofolate biosynthetic process	biological_process	5.06829	33.8886	29.322	80.9409	73.8015	74.2593
+GO:0046656	folic acid biosynthetic process	biological_process	2.25223	7.73797	6.08304	21.7524	18.4385	14.4682
+GO:0046657	folic acid catabolic process	biological_process	0	0	0	0	0	0.0557199
+GO:0046677	response to antibiotic	biological_process	211876	95946.2	117427	37702.5	49725.5	24957.5
+GO:0046685	response to arsenic-containing substance	biological_process	0	0.295351	0.134733	0.209879	0	0.63575
+GO:0046686	response to cadmium ion	biological_process	0.0721344	0	0.0220119	0	0	0
+GO:0046688	response to copper ion	biological_process	0.316682	0	0	0	0	0
+GO:0046718	viral entry into host cell	biological_process	15.5896	0	16.7385	0	0	15.7476
+GO:0046777	protein autophosphorylation	biological_process	0.542758	0	0.142265	0	0	0
+GO:0046790	virion binding	molecular_function	0.0348277	0	0	0	0	0
+GO:0046797	viral procapsid maturation	biological_process	15.7062	0	20.3094	0	0	17.5375
+GO:0046820	4-amino-4-deoxychorismate synthase activity	molecular_function	0.0401017	0	0.148851	0	0	0
+GO:0046834	lipid phosphorylation	biological_process	0	0	0.300724	0	0	0
+GO:0046835	carbohydrate phosphorylation	biological_process	0.460051	0	1.23943	0	0	0.0247716
+GO:0046839	phospholipid dephosphorylation	biological_process	0	0	0.244476	0	0	0.175277
+GO:0046854	phosphatidylinositol phosphorylation	biological_process	37.4463	42.6245	34.9784	32.6609	40.6059	39.8263
+GO:0046855	inositol phosphate dephosphorylation	biological_process	0	0	0.27587	0	0	0
+GO:0046857	oxidoreductase activity, acting on other nitrogenous compounds as donors, with NAD or NADP as acceptor	molecular_function	0.234874	0	0.129049	0	0	0
+GO:0046870	cadmium ion binding	molecular_function	0.0484137	0	0	0	0	0
+GO:0046872	metal ion binding	molecular_function	3270.97	5844.48	5119.37	11565.1	10502	11534.1
+GO:0046873	metal ion transmembrane transporter activity	molecular_function	43.7174	107.347	92.5615	204.958	200.241	243.191
+GO:0046892	peptidyl-S-carbamoyl-L-cysteine dehydration	biological_process	0	0	0	0	0	0.0375455
+GO:0046912	transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer	molecular_function	6.10508	49.202	32.0363	101.227	94.517	107.523
+GO:0046914	transition metal ion binding	molecular_function	18.102	63.9075	43.5643	97.9464	98.1613	189.499
+GO:0046917	triphosphoribosyl-dephospho-CoA synthase activity	molecular_function	0.0632878	0	0.0587285	0.0645628	0.113029	0.0842105
+GO:0046933	proton-transporting ATP synthase activity, rotational mechanism	molecular_function	223.331	534.62	430.882	1075.64	1035.43	832.309
+GO:0046944	protein carbamoylation	biological_process	6.11293	12.0109	6.4719	16.6064	14.7058	16.8578
+GO:0046952	ketone body catabolic process	biological_process	0.0336125	0	0.0312136	0	0	0.24694
+GO:0046961	proton-transporting ATPase activity, rotational mechanism	molecular_function	67.2136	185.241	145.185	433.771	412.093	300.262
+GO:0046982	protein heterodimerization activity	molecular_function	1.06967	1.02038	0.93077	0.713151	0.591752	1.73427
+GO:0046983	protein dimerization activity	molecular_function	4.28099	23.3423	17.1938	71.7053	61.57	63.4518
+GO:0047001	2-dehydro-3-deoxy-D-gluconate 5-dehydrogenase activity	molecular_function	1.43953	0	0	0	0	0
+GO:0047017	prostaglandin-F synthase activity	molecular_function	0.143394	0	0	0	0	0
+GO:0047068	N5,N10-methenyltetrahydromethanopterin hydrogenase activity	molecular_function	0.932547	1.73215	2.1757	2.31429	2.1895	5.72751
+GO:0047111	formate dehydrogenase (cytochrome-c-553) activity	molecular_function	0.0717456	0	0	0	0	0.0111569
+GO:0047134	protein-disulfide reductase activity	molecular_function	0.0314008	0	0	0	0	0
+GO:0047138	aquacobalamin reductase activity	molecular_function	0.086012	0	0.23753	0	0	0
+GO:0047151	methylenetetrahydrofolate-tRNA-(uracil-5-)-methyltransferase (FADH2-oxidizing) activity	molecular_function	16.943	33.2904	24.8852	49.5534	49.4214	42.0487
+GO:0047154	methylmalonyl-CoA carboxytransferase activity	molecular_function	9.46407	45.2124	18.9764	191.309	126.004	123.774
+GO:0047241	lipopolysaccharide N-acetylmannosaminouronosyltransferase activity	molecular_function	0.0822449	0	0	0	0	0
+GO:0047244	N-acetylglucosaminyldiphosphoundecaprenol N-acetyl-beta-D-mannosaminyltransferase activity	molecular_function	0.405076	2.40616	2.02437	5.00743	5.81415	7.05007
+GO:0047270	lipopolysaccharide glucosyltransferase II activity	molecular_function	0.279254	0	0.0518272	0	0	0.148694
+GO:0047294	phosphoglycerol geranylgeranyltransferase activity	molecular_function	0.162837	0	0.37763	0.291528	0.327171	0.378915
+GO:0047295	geranylgeranylglycerol-phosphate geranylgeranyltransferase activity	molecular_function	0	0	0	0.10719	0.187014	0.092942
+GO:0047298	(S)-3-amino-2-methylpropionate transaminase activity	molecular_function	0.0217764	0	0.079748	0	0	0
+GO:0047310	glutamine-scyllo-inositol transaminase activity	molecular_function	0.21441	2.05887	0.309565	6.04406	8.5926	8.3998
+GO:0047324	phosphoenolpyruvate-glycerone phosphotransferase activity	molecular_function	0	0	0	0	0	0.0350877
+GO:0047334	diphosphate-fructose-6-phosphate 1-phosphotransferase activity	molecular_function	7.50242	63.6197	37.5005	278.781	233.258	164.662
+GO:0047355	CDP-glycerol glycerophosphotransferase activity	molecular_function	10.9342	25.5153	10.5777	19.301	22.5462	21.648
+GO:0047360	undecaprenyl-phosphate galactose phosphotransferase activity	molecular_function	3.31325	18.5234	21.8266	35.8816	36.2974	57.8469
+GO:0047372	acylglycerol lipase activity	molecular_function	130.308	180.976	306.722	127.162	177.056	100.76
+GO:0047429	nucleoside-triphosphate diphosphatase activity	molecular_function	44.6282	107.691	98.1461	119.472	133.484	132.151
+GO:0047440	2-dehydro-3-deoxy-D-pentonate aldolase activity	molecular_function	0.0899007	0	0	0	0	0
+GO:0047451	3-hydroxyoctanoyl-[acyl-carrier-protein] dehydratase activity	molecular_function	2.00445	17.7779	12.6864	52.541	46.1825	72.3142
+GO:0047475	phenylacetate-CoA ligase activity	molecular_function	7.49318	54.0553	42.4283	103.56	95.1987	85.3541
+GO:0047480	UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity	molecular_function	96.3775	104.522	111.311	118.453	117.118	103.798
+GO:0047484	regulation of response to osmotic stress	biological_process	0.0815887	0	0	0	0	0
+GO:0047527	2,3-dihydroxybenzoate-serine ligase activity	molecular_function	0	0	0.127425	0	0	0
+GO:0047553	2-oxoglutarate synthase activity	molecular_function	71.6	160.133	152.736	302.593	296.317	244.684
+GO:0047617	acyl-CoA hydrolase activity	molecular_function	0.0976051	0	0	0	0	0
+GO:0047631	ADP-ribose diphosphatase activity	molecular_function	3.14524	23.2511	19.2002	64.0822	62.3987	82.9162
+GO:0047693	ATP diphosphatase activity	molecular_function	0.0150928	0	0	0	0	0
+GO:0047760	butyrate-CoA ligase activity	molecular_function	2.2203	6.36735	3.39344	23.8122	21.0374	16.1112
+GO:0047761	butyrate kinase activity	molecular_function	99.7304	47.3327	54.2261	18.4366	26.1416	51.9546
+GO:0047850	diaminopimelate dehydrogenase activity	molecular_function	2.37006	16.0535	10.7892	47.5035	45.7581	47.6459
+GO:0047952	glycerol-3-phosphate dehydrogenase [NAD(P)+] activity	molecular_function	1.81461	8.36484	5.71376	33.8568	32.5297	24.5134
+GO:0048001	erythrose-4-phosphate dehydrogenase activity	molecular_function	0.055875	0	0	0	0	0
+GO:0048029	monosaccharide binding	molecular_function	9.93008	21.712	19.6471	49.2977	49.5806	64.6015
+GO:0048034	heme O biosynthetic process	biological_process	0.0657425	0	0.122238	0	0	0
+GO:0048037	cofactor binding	molecular_function	23.7111	122.456	112.408	309.585	238.458	369.057
+GO:0048038	quinone binding	molecular_function	116.008	136.706	144.934	177.225	169.089	97.0807
+GO:0048040	UDP-glucuronate decarboxylase activity	molecular_function	0.0923797	0	0	0.0630458	0.0274976	0.0819791
+GO:0048388	endosomal lumen acidification	biological_process	0.85927	1.48119	1.15811	14.8812	12.7606	11.0413
+GO:0048472	threonine-phosphate decarboxylase activity	molecular_function	1.54258	10.312	9.53233	28.0006	25.9179	34.9722
+GO:0048473	D-methionine transport	biological_process	0.291284	0	0.135454	0	0	0
+GO:0048511	rhythmic process	biological_process	1.62028	2.65867	0	0	0.824819	0
+GO:0048870	cell motility	biological_process	0	0	0.142987	0	0	0
+GO:0050081	maltose-6'-phosphate glucosidase activity	molecular_function	0.0207314	0	0.115382	0	0	0
+GO:0050089	mannose isomerase activity	molecular_function	0	0	0.0826348	0	0	0
+GO:0050136	NADH dehydrogenase (quinone) activity	molecular_function	0.331191	4.92771	2.86822	9.38924	10.3754	12.6874
+GO:0050163	oxaloacetate tautomerase activity	molecular_function	0	0	0.06784	0	0	0.042752
+GO:0050182	phosphate butyryltransferase activity	molecular_function	84.1331	96.2858	106.577	80.2442	97.0631	110.934
+GO:0050225	pseudouridine kinase activity	molecular_function	0	0	0	0	0	0.112378
+GO:0050242	pyruvate, phosphate dikinase activity	molecular_function	56.0102	66.3887	55.8741	111.507	113.804	78.337
+GO:0050263	ribosylpyrimidine nucleosidase activity	molecular_function	0	0	0.0567438	0	0	0.040844
+GO:0050270	S-adenosylhomocysteine deaminase activity	molecular_function	2.20426	9.32091	4.05384	40.4601	33.0883	28.9665
+GO:0050297	stizolobate synthase activity	molecular_function	0.109417	0	0	0	0	0
+GO:0050308	sugar-phosphatase activity	molecular_function	0.549369	0	0.318541	0	0	0.235589
+GO:0050355	triphosphatase activity	molecular_function	0.338191	3.34197	2.52293	10.5247	8.16498	9.25041
+GO:0050380	undecaprenyl-diphosphatase activity	molecular_function	11.5334	14.8895	8.18062	35.2135	27.3549	28.5416
+GO:0050418	hydroxylamine reductase activity	molecular_function	0.708658	1.0699	1.01462	1.06713	0.931467	0.667248
+GO:0050454	coenzyme F420 hydrogenase activity	molecular_function	14.4802	5.58436	16.7493	14.0663	9.30224	8.95946
+GO:0050462	N-acetylneuraminate synthase activity	molecular_function	2.01823	7.02629	4.44239	48.2055	36.2254	39.8759
+GO:0050480	imidazolonepropionase activity	molecular_function	3.62478	1.16768	3.34324	0.222239	0.523626	0.722321
+GO:0050485	oxidoreductase activity, acting on X-H and Y-H to form an X-Y bond, with a disulfide as acceptor	molecular_function	42.2174	67.3724	100.564	54.2061	62.3147	39.6642
+GO:0050492	glycerol-1-phosphate dehydrogenase [NAD(P)+] activity	molecular_function	27.602	29.9521	19.8093	34.4512	36.0669	26.5214
+GO:0050511	undecaprenyldiphospho-muramoylpentapeptide beta-N-acetylglucosaminyltransferase activity	molecular_function	1.59748	8.55392	5.82296	31.9707	23.7419	22.9967
+GO:0050515	4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity	molecular_function	0.848941	11.2061	6.29861	25.2185	22.7673	27.9916
+GO:0050518	2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase activity	molecular_function	22.2779	26.5389	23.1429	32.7589	38.2172	30.9616
+GO:0050524	coenzyme-B sulfoethylthiotransferase activity	molecular_function	13.3118	5.09979	12.4445	8.37245	5.00675	6.70278
+GO:0050532	2-phosphosulfolactate phosphatase activity	molecular_function	53.6896	49.2805	49.4914	34.7994	35.9121	36.6541
+GO:0050545	sulfopyruvate decarboxylase activity	molecular_function	0.497091	0.362934	0.552778	0.060509	0.212775	0
+GO:0050560	aspartate-tRNA(Asn) ligase activity	molecular_function	3.12655	10.6102	7.49032	31.8326	26.4339	21.7855
+GO:0050567	glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity	molecular_function	36.721	42.8338	38.5456	66.7557	76.0985	73.456
+GO:0050568	protein-glutamine glutaminase activity	molecular_function	2.31897	4.866	4.02655	38.4534	35.0295	26.73
+GO:0050569	glycolaldehyde dehydrogenase activity	molecular_function	0.0389594	0	0	0	0	0
+GO:0050570	4-hydroxythreonine-4-phosphate dehydrogenase activity	molecular_function	4.88074	11.5105	10.8563	11.8434	10.6946	14.7049
+GO:0050572	L-idonate 5-dehydrogenase activity	molecular_function	0.110219	0	0	0	0	0.0733446
+GO:0050583	hydrogen dehydrogenase (NADP+) activity	molecular_function	0.799117	5.95667	2.0352	64.6092	63.8474	70.9831
+GO:0050605	superoxide reductase activity	molecular_function	101.378	70.6654	81.4959	72.8676	86.3606	90.5291
+GO:0050660	flavin adenine dinucleotide binding	molecular_function	187.618	441.77	401.997	966.175	863.082	775.812
+GO:0050661	NADP binding	molecular_function	117.284	665.368	477.942	1327.78	1463.19	1198.88
+GO:0050662	coenzyme binding	molecular_function	95.1695	158.552	141.619	158.54	171.785	172.648
+GO:0050782	galactose uniporter activity	molecular_function	0.172097	0	0.109022	0	0	0
+GO:0050797	thymidylate synthase (FAD) activity	molecular_function	32.4181	24.5272	22.7811	26.6489	29.5605	19.1002
+GO:0050821	protein stabilization	biological_process	1.17768	0	0	0	0	0
+GO:0050897	cobalt ion binding	molecular_function	2.20251	1.41622	6.73718	7.25927	8.9755	7.89793
+GO:0050911	detection of chemical stimulus involved in sensory perception of smell	biological_process	0.361523	0	0.379841	0	0	0.0899345
+GO:0050919	negative chemotaxis	biological_process	0.0341229	0	0	0	0	0
+GO:0050983	deoxyhypusine biosynthetic process from spermidine	biological_process	0.125603	0	0	0.28919	0	0.0417172
+GO:0050992	dimethylallyl diphosphate biosynthetic process	biological_process	12.4779	47.9035	30.2358	188.3	156.184	120.281
+GO:0051060	pullulanase activity	molecular_function	71.8698	13.8513	20.8748	10.7321	12.5328	16.2434
+GO:0051073	adenosylcobinamide-GDP ribazoletransferase activity	molecular_function	0.529245	6.25324	4.22822	14.6174	14.1724	18.2461
+GO:0051090	regulation of sequence-specific DNA binding transcription factor activity	biological_process	0.201602	0	0.187552	0	0	0
+GO:0051103	DNA ligation involved in DNA repair	biological_process	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0051108	carnitine-CoA ligase activity	molecular_function	0.069704	0	0.0642766	0	0	0
+GO:0051109	crotonobetaine-CoA ligase activity	molecular_function	0.069704	0	0.0642766	0	0	0
+GO:0051116	cobaltochelatase activity	molecular_function	0.0293107	0.0187628	0.145017	0.0799574	0.0784994	0.12997
+GO:0051156	glucose 6-phosphate metabolic process	biological_process	0	0	0.404198	0	0	0
+GO:0051186	cofactor metabolic process	biological_process	3.1352	1.82909	1.6582	6.13782	3.74195	5.20659
+GO:0051188	cofactor biosynthetic process	biological_process	3.07629	24.4403	23.7832	39.1166	39.9074	62.4739
+GO:0051205	protein insertion into membrane	biological_process	16.4215	32.7858	21.0151	98.5691	94.7931	78.7478
+GO:0051213	dioxygenase activity	molecular_function	90.2897	9.60543	10.7543	60.6024	63.7715	35.3734
+GO:0051252	regulation of RNA metabolic process	biological_process	0.0135617	0	0	0	0	0.0352171
+GO:0051258	protein polymerization	biological_process	63.0478	137.272	112.739	250.599	231.39	273.853
+GO:0051259	protein oligomerization	biological_process	60.4039	61.2259	62.072	47.6919	58.7627	68.564
+GO:0051260	protein homooligomerization	biological_process	0.0977023	0	0.0675693	0	0	0
+GO:0051262	protein tetramerization	biological_process	0	0	0.284125	0	0	0
+GO:0051271	negative regulation of cellular component movement	biological_process	0.103414	0	0	0	0	0
+GO:0051276	chromosome organization	biological_process	0.0836546	0	0	0	0	0
+GO:0051287	NAD binding	molecular_function	311.944	1050.95	843.089	2398.32	2363.33	1952.44
+GO:0051289	protein homotetramerization	biological_process	1.74559	9.73149	5.92973	27.9807	25.9851	38.7365
+GO:0051301	cell division	biological_process	472.613	1025.4	862.851	1869.93	1786.99	1893.24
+GO:0051302	regulation of cell division	biological_process	2.1843	6.72123	11.0618	36.7201	30.3302	29.292
+GO:0051304	chromosome separation	biological_process	0.598098	2.71552	4.03521	9.00478	12.1324	10.1976
+GO:0051345	positive regulation of hydrolase activity	biological_process	0.10949	0	0	0	0	0
+GO:0051391	tRNA acetylation	biological_process	0	0	0.096708	0	0	0
+GO:0051392	tRNA N-acetyltransferase activity	molecular_function	0	0	0.096708	0	0	0
+GO:0051409	response to nitrosative stress	biological_process	0.0466881	0	0	0	0	0
+GO:0051454	intracellular pH elevation	biological_process	0.0229187	0	0	0	0	0
+GO:0051536	iron-sulfur cluster binding	molecular_function	892.178	899.437	823.465	1076.2	1067.48	967.25
+GO:0051537	2 iron, 2 sulfur cluster binding	molecular_function	30.1169	212.404	153.129	384.985	394.601	468.847
+GO:0051538	3 iron, 4 sulfur cluster binding	molecular_function	10.9288	46.6363	29.8306	186.272	153.421	117.459
+GO:0051539	4 iron, 4 sulfur cluster binding	molecular_function	905.432	2229.63	1970.29	5080.38	4459.53	5105.05
+GO:0051575	5'-deoxyribose-5-phosphate lyase activity	molecular_function	0	0	0.0705914	0	0	0
+GO:0051595	response to methylglyoxal	biological_process	0.298308	0	0.266082	0	0	0.0856334
+GO:0051603	proteolysis involved in cellular protein catabolic process	biological_process	0	0	0	0	0	0.0846632
+GO:0051604	protein maturation	biological_process	0.111629	0	0.117006	0	0	0.0375455
+GO:0051606	detection of stimulus	biological_process	4.93358	18.9337	16.2534	63.1571	73.0955	145.364
+GO:0051607	defense response to virus	biological_process	15.1423	7.19334	4.50211	19.7084	17.2153	23.5329
+GO:0051692	cellular oligosaccharide catabolic process	biological_process	0.104191	0	0.0487149	0	0	0
+GO:0051726	regulation of cell cycle	biological_process	2.1843	6.72123	11.0618	36.7201	30.3302	29.292
+GO:0051745	4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity	molecular_function	12.3561	47.9035	30.2358	188.3	156.184	120.281
+GO:0051775	response to redox state	biological_process	20.431	57.1345	53.6397	66.8173	65.1826	75.3241
+GO:0051903	S-(hydroxymethyl)glutathione dehydrogenase activity	molecular_function	0	0	0.0939565	0	0	0.0336971
+GO:0051908	double-stranded DNA 5'-3' exodeoxyribonuclease activity	molecular_function	0.0198321	0	0	0	0	0
+GO:0051912	CoB--CoM heterodisulfide reductase activity	molecular_function	4.45484	3.66033	3.96183	9.47997	5.81855	8.38619
+GO:0051920	peroxiredoxin activity	molecular_function	262.76	738.951	605.99	838.002	807.853	1086.05
+GO:0051978	lysophospholipid transporter activity	molecular_function	0.0231618	0	0.0432119	0	0	0.0610558
+GO:0051989	coproporphyrinogen dehydrogenase activity	molecular_function	0.562736	5.12201	2.98933	9.71208	10.8358	8.56095
+GO:0051991	UDP-N-acetyl-D-glucosamine:N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine-diphosphoundecaprenol 4-beta-N-acetylglucosaminlytransferase activity	molecular_function	1.59748	8.55392	5.82296	31.9707	23.7419	22.9967
+GO:0051992	UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine:undecaprenyl-phosphate transferase activity	molecular_function	105.584	70.1846	66.754	114.141	93.432	90.4831
+GO:0052131	positive aerotaxis	biological_process	0	0	0	0	0	0.0235751
+GO:0052381	tRNA dimethylallyltransferase activity	molecular_function	5.60167	8.3101	7.91824	29.0909	31.7636	41.2526
+GO:0052547	regulation of peptidase activity	biological_process	1.07971	2.46217	0.685887	10.4612	7.32033	7.00399
+GO:0052591	sn-glycerol-3-phosphate:ubiquinone-8 oxidoreductase activity	molecular_function	0.0716727	0	0.0664868	0	0	0
+GO:0052618	coenzyme F420-0:L-glutamate ligase activity	molecular_function	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0052619	coenzyme F420-1:gamma-L-glutamate ligase activity	molecular_function	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0052621	diguanylate cyclase activity	molecular_function	0.131169	0	0.0671634	0	0	0.122855
+GO:0052645	F420-0 metabolic process	biological_process	0.420703	0.818608	0.96072	0.724417	0.181523	0.440326
+GO:0052653	3',5'-cyclic diguanylic acid metabolic process	biological_process	0.0269046	0	0.049932699999999997	0	0	0
+GO:0052654	L-leucine transaminase activity	molecular_function	2.90122	28.355	18.3265	74.8858	70.705	72.7064
+GO:0052655	L-valine transaminase activity	molecular_function	2.90122	28.355	18.3265	74.8858	70.705	72.7064
+GO:0052656	L-isoleucine transaminase activity	molecular_function	2.90122	28.355	18.3265	74.8858	70.705	72.7064
+GO:0052657	guanine phosphoribosyltransferase activity	molecular_function	8.88602	9.75838	11.612	12.1415	15.2169	13.5116
+GO:0052665	tRNA (uracil-2'-O-)-methyltransferase activity	molecular_function	0.0862065	0	0	0	0	0
+GO:0052666	tRNA (cytosine-2'-O-)-methyltransferase activity	molecular_function	0.0862065	0	0	0	0	0
+GO:0052689	carboxylic ester hydrolase activity	molecular_function	0.603227	0.619079	0.5217	0.988637	0.827684	0.938313
+GO:0052692	raffinose alpha-galactosidase activity	molecular_function	0.0402961	0	0	0	0	0
+GO:0052693	epoxyqueuosine reductase activity	molecular_function	0	0	0.182185	0	0	0
+GO:0052717	tRNA-specific adenosine-34 deaminase activity	molecular_function	7.13689	36.7174	27.1322	96.6719	75.5548	111.286
+GO:0052733	quinate 3-dehydrogenase (NADP+) activity	molecular_function	0.0327619	0	0	0	0	0
+GO:0052734	shikimate 3-dehydrogenase (NAD+) activity	molecular_function	0.0327619	0	0	0	0	0
+GO:0052737	pyruvate dehydrogenase (quinone) activity	molecular_function	0.046445	0	0	0	0	0
+GO:0052832	inositol monophosphate 3-phosphatase activity	molecular_function	37.4463	42.6245	34.9784	32.6609	40.6059	39.8263
+GO:0052833	inositol monophosphate 4-phosphatase activity	molecular_function	37.4463	42.6245	34.9784	32.6609	40.6059	39.8263
+GO:0052855	ADP-dependent NAD(P)H-hydrate dehydratase activity	molecular_function	44.7635	56.9208	55.2697	87.6348	100.463	90.9308
+GO:0052856	NADHX epimerase activity	molecular_function	0.0351437	0	0	0	0	0
+GO:0052857	NADPHX epimerase activity	molecular_function	0.0351437	0	0	0	0	0
+GO:0052865	1-deoxy-D-xylulose 5-phosphate biosynthetic process	biological_process	61.0178	61.5074	43.9427	82.8587	88.9837	75.0352
+GO:0052875	riboflavin reductase (NADH) activity	molecular_function	0.086012	0	0.23753	0	0	0
+GO:0052890	oxidoreductase activity, acting on the CH-CH group of donors, with a flavin as acceptor	molecular_function	0.065864	0	0.0611642	0	0	0
+GO:0052906	tRNA (guanine(37)-N(1))-methyltransferase activity	molecular_function	41.6974	30.8526	21.5608	46.2959	51.3478	39.2177
+GO:0052908	16S rRNA (adenine(1518)-N(6)/adenine(1519)-N(6))-dimethyltransferase activity	molecular_function	11.5002	12.4841	9.41852	19.1622	19.5427	19.2502
+GO:0052911	23S rRNA (guanine(745)-N(1))-methyltransferase activity	molecular_function	0.151123	0	0	0	0	0
+GO:0052913	16S rRNA (guanine(966)-N(2))-methyltransferase activity	molecular_function	0.826678	3.28045	1.94336	12.8537	9.63987	16.2693
+GO:0052914	16S rRNA (guanine(1207)-N(2))-methyltransferase activity	molecular_function	0.0551216	0	0	0	0	0
+GO:0052915	23S rRNA (guanine(2445)-N(2))-methyltransferase activity	molecular_function	0.0247901	0	0	0	0	0
+GO:0052916	23S rRNA (guanine(1835)-N(2))-methyltransferase activity	molecular_function	0.04924	0	0.0913855	0	0	0
+GO:0052927	CTP:tRNA cytidylyltransferase activity	molecular_function	0.0223111	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0052928	CTP:3'-cytidine-tRNA cytidylyltransferase activity	molecular_function	0.0223111	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0052929	ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity	molecular_function	0.0223111	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0055062	phosphate ion homeostasis	biological_process	0.0724747	0	0	0	0	0
+GO:0055070	copper ion homeostasis	biological_process	0.0418759	0	0	0	0	0
+GO:0055072	iron ion homeostasis	biological_process	6.57349	5.46879	4.90103	3.65355	3.48028	2.25564
+GO:0055085	transmembrane transport	biological_process	344.846	207.45	191.866	360.575	355.557	228.517
+GO:0055088	lipid homeostasis	biological_process	0.065864	0	0.0611642	0	0	0
+GO:0055114	oxidation-reduction process	biological_process	222.615	2062.79	1080.79	6391.63	4249.36	7976.38
+GO:0055129	L-proline biosynthetic process	biological_process	13.6731	70.1336	52.7249	157.35	138.219	140.283
+GO:0060698	endoribonuclease inhibitor activity	molecular_function	0.260807	0	0	0	0	0
+GO:0061077	chaperone-mediated protein folding	biological_process	1.00381	0	0.704742	0	0	0.13909
+GO:0061489	guanine import into cell	biological_process	0.0803249	0	0	0	0	0.0530681
+GO:0061593	sulfoquinovose isomerase activity	molecular_function	0	0	0.0826348	0	0	0
+GO:0061594	6-deoxy-6-sulfofructose kinase activity	molecular_function	0.065062	0	0	0	0	0
+GO:0061595	6-deoxy-6-sulfofructose-1-phosphate aldolase activity	molecular_function	0.066666	0	0	0	0	0
+GO:0061596	3-sulfolactaldehyde reductase activity	molecular_function	0.0303315	0	0	0	0	0
+GO:0061597	cyclic pyranopterin monophosphate synthase activity	molecular_function	95.3723	26.5344	26.9125	16.5919	22.7354	16.0923
+GO:0061599	molybdopterin molybdotransferase activity	molecular_function	0.0447681	0	0	0	0	0
+GO:0061602	molybdenum cofactor cytidylyltransferase activity	molecular_function	0.169958	0	0.210286	0	0	0
+GO:0061603	molybdenum cofactor guanylyltransferase activity	molecular_function	0	0.372502	0	0.303291	0	0.14006
+GO:0061634	alpha-D-xyloside xylohydrolase	molecular_function	0.0112042	0	0.109744	0	0	0
+GO:0061710	L-threonylcarbamoyladenylate synthase	molecular_function	5.48248	21.177	15.3004	33.0736	37.0345	42.3158
+GO:0061711	N(6)-L-threonylcarbamoyladenine synthase	molecular_function	16.0915	23.0494	21.522	33.2499	36.0706	42.4609
+GO:0061712	tRNA (N(6)-L-threonylcarbamoyladenosine(37)-C(2))-methylthiotransferase	molecular_function	0	0.124479	0.240552	0.0442191	0	0.229186
+GO:0065002	intracellular protein transmembrane transport	biological_process	119.523	125.59	124.571	283.823	236.665	185.567
+GO:0070006	metalloaminopeptidase activity	molecular_function	44.3862	27.1536	17.9648	128.593	88.1008	81.1036
+GO:0070008	serine-type exopeptidase activity	molecular_function	0.0127353	0	0	0	0	0
+GO:0070011	peptidase activity, acting on L-amino acid peptides	molecular_function	0	0	0	0	0	0.0547174
+GO:0070038	rRNA (pseudouridine-N3-)-methyltransferase activity	molecular_function	13.2895	74.9947	46.8949	84.975	83.2311	98.9911
+GO:0070039	rRNA (guanosine-2'-O-)-methyltransferase activity	molecular_function	0.0835087	0	0	0	0	0
+GO:0070040	rRNA (adenine-C2-)-methyltransferase activity	molecular_function	1.7819	11.4019	8.76191	33.2804	31.5624	33.2572
+GO:0070041	rRNA (uridine-C5-)-methyltransferase activity	molecular_function	0	0	0.0773123	0	0	0
+GO:0070043	rRNA (guanine-N7-)-methyltransferase activity	molecular_function	11.0177	7.9634	10.3651	20.0551	18.3224	10.6112
+GO:0070084	protein initiator methionine removal	biological_process	44.3862	27.1536	17.9648	128.593	88.1008	81.1036
+GO:0070125	mitochondrial translational elongation	biological_process	0.0469554	0	0	0	0	0
+GO:0070180	large ribosomal subunit rRNA binding	molecular_function	117.733	184.369	124.526	730.52	607.724	461.223
+GO:0070181	small ribosomal subunit rRNA binding	molecular_function	21.5368	24.1745	24.3902	57.524	58.9049	50.8204
+GO:0070301	cellular response to hydrogen peroxide	biological_process	0.0263456	0	0.0546689	0	0	0.070046
+GO:0070402	NADPH binding	molecular_function	6.30255	12.792	5.92476	25.9558	23.586	18.7702
+GO:0070403	NAD+ binding	molecular_function	45.9991	119.606	131.267	111.654	132.763	170.964
+GO:0070417	cellular response to cold	biological_process	0.0285816	0	0	0	0	0.0380952
+GO:0070453	regulation of heme biosynthetic process	biological_process	0	0	0.0573753	0	0	0
+GO:0070475	rRNA base methylation	biological_process	160.768	376.892	430.784	656.058	640.816	848.078
+GO:0070481	nuclear-transcribed mRNA catabolic process, non-stop decay	biological_process	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0070491	repressing transcription factor binding	molecular_function	0.0457645	0	0	0	0	0.0304632
+GO:0070574	cadmium ion transmembrane transport	biological_process	0.0237208	0	0.0220119	0	0	0
+GO:0070581	rolling circle DNA replication	biological_process	0.0241582	0	0	0	0	0
+GO:0070588	calcium ion transmembrane transport	biological_process	0.0880536	0	0	0	0	0
+GO:0070590	spore wall biogenesis	biological_process	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0070626	(S)-2-(5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido)succinate AMP-lyase (fumarate-forming) activity	molecular_function	4.89843	4.16777	3.46854	4.32549	3.37398	2.78114
+GO:0070677	rRNA (cytosine-2'-O-)-methyltransferase activity	molecular_function	4.34228	7.62357	4.26918	22.8476	19.7208	16.7342
+GO:0070689	L-threonine catabolic process to propionate	biological_process	0.387941	0	0.127967	0	0	0
+GO:0070814	hydrogen sulfide biosynthetic process	biological_process	0.576249	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0070929	trans-translation	biological_process	79.7135	118.496	130.922	145.468	146.627	163.955
+GO:0070966	nuclear-transcribed mRNA catabolic process, no-go decay	biological_process	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0070967	coenzyme F420 binding	molecular_function	0	0.339924	0.246461	0	0.276647	0.0588891
+GO:0070981	L-asparagine biosynthetic process	biological_process	11.4358	40.0307	28.164	51.3344	51.4781	42.3862
+GO:0071025	RNA surveillance	biological_process	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0071111	cyclic-guanylate-specific phosphodiesterase activity	molecular_function	0.543366	0	0.395628	0	0	0.189344
+GO:0071249	cellular response to nitrate	biological_process	0.0463478	0	0	0	0	0
+GO:0071250	cellular response to nitrite	biological_process	0.0463478	0	0	0	0	0
+GO:0071266	'de novo' L-methionine biosynthetic process	biological_process	2.3615	7.63254	9.34942	21.2291	25.0685	25.5842
+GO:0071271	1-butanol biosynthetic process	biological_process	0.0471013	0	0	0	0	0.0626728
+GO:0071310	cellular response to organic substance	biological_process	0.158827	0	0.0597659	0	0	0
+GO:0071424	rRNA (cytosine-N4-)-methyltransferase activity	molecular_function	158.835	365.491	422.022	622.777	609.254	814.82
+GO:0071436	sodium ion export	biological_process	60.1527	44.5481	43.1634	46.845	57.0023	66.4675
+GO:0071454	cellular response to anoxia	biological_process	0.0263456	0	0.0546689	0	0	0.070046
+GO:0071468	cellular response to acidic pH	biological_process	0	0	0.246461	0	0	0
+GO:0071470	cellular response to osmotic stress	biological_process	0.132797	0	0	0	0	0.0773546
+GO:0071474	cellular hyperosmotic response	biological_process	0.0972162	0	0.180425	0	0	0
+GO:0071555	cell wall organization	biological_process	346.486	551.734	467.682	984.504	937.407	957.887
+GO:0071577	zinc II ion transmembrane transport	biological_process	0.0237208	0	0.0220119	0	0	0
+GO:0071705	nitrogen compound transport	biological_process	0	0	0	0	0	0.0946559
+GO:0071713	para-aminobenzoyl-glutamate hydrolase activity	molecular_function	0	0	0	0	0	0.0557199
+GO:0071805	potassium ion transmembrane transport	biological_process	0.207289	0	0	0	0	0
+GO:0071897	DNA biosynthetic process	biological_process	18.9298	14.552	14.7185	14.0977	18.9586	12.1473
+GO:0071916	dipeptide transmembrane transporter activity	molecular_function	0.217035	0	0	0	0	0.0780984
+GO:0071949	FAD binding	molecular_function	0.296582	0.894313	1.33767	1.16711	0.852447	1.1448
+GO:0071963	establishment or maintenance of cell polarity regulating cell shape	biological_process	0.0255679	0	0	0	0	0
+GO:0071972	peptidoglycan L,D-transpeptidase activity	molecular_function	0.0143151	0	0	0	0	0
+GO:0071973	bacterial-type flagellum-dependent cell motility	biological_process	56.4535	142.275	108.322	1459.48	1423.45	1202.31
+GO:0071978	bacterial-type flagellum-dependent swarming motility	biological_process	0.687416	0	0	0	0	0
+GO:0072344	rescue of stalled ribosome	biological_process	0.188405	0	0	0	0	0
+GO:0072348	sulfur compound transport	biological_process	0.300422	0	0	0	0	0
+GO:0072531	pyrimidine-containing compound transmembrane transport	biological_process	0.0219952	0	0	0	0	0.0584364
+GO:0072592	oxygen metabolic process	biological_process	5102.29	13939.3	11938.1	4792.25	5139.37	6668.11
+GO:0075713	establishment of integrated proviral latency	biological_process	0.380626	0	0.0852059	0	0	0.155097
+GO:0080100	L-glutamine:2-oxoglutarate aminotransferase activity	molecular_function	0.21441	2.05887	0.309565	6.04406	8.5926	8.3998
+GO:0080130	L-phenylalanine:2-oxoglutarate aminotransferase activity	molecular_function	55.2091	31.3015	48.4859	65.7772	69.6754	103.392
+GO:0080146	L-cysteine desulfhydrase activity	molecular_function	0	0	0.0854314	0	0	0
+GO:0080167	response to karrikin	biological_process	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0080176	xyloglucan 1,6-alpha-xylosidase activity	molecular_function	0.0112042	0	0.109744	0	0	0
+GO:0089714	UDP-N-acetyl-D-mannosamine dehydrogenase activity	molecular_function	0.130999	0	0.0405055	0	0	0
+GO:0090071	negative regulation of ribosome biogenesis	biological_process	6.04631	25.0691	19.2406	52.9358	50.1984	76.4403
+GO:0090305	nucleic acid phosphodiester bond hydrolysis	biological_process	0.206973	0	0.232208	0	0	0.0883498
+GO:0090313	regulation of protein targeting to membrane	biological_process	0.0142665	0	0	0	0	0
+GO:0090501	RNA phosphodiester bond hydrolysis	biological_process	0.0369908	0	0	0	0	0
+GO:0090502	RNA phosphodiester bond hydrolysis, endonucleolytic	biological_process	1.1593	0	0	0	0	0
+GO:0090503	RNA phosphodiester bond hydrolysis, exonucleolytic	biological_process	0	0	0.187146	0	0	0.0883498
+GO:0090540	bacterial cellulose biosynthetic process	biological_process	1.24636	0	0	0	0	0
+GO:0090582	protein-phosphocysteine-D-fructose-phosphotransferase system transporter activity	molecular_function	0	0	0	0	0	0.0209879
+GO:0090589	protein-phosphocysteine-trehalose phosphotransferase system transporter activity	molecular_function	0.0383275	0	0	0	0	0.0431401
+GO:0090613	5'-deoxyadenosine deaminase activity	molecular_function	0.0428724	0	0.0795225	0	0	0.0570135
+GO:0090614	5'-methylthioadenosine deaminase activity	molecular_function	2.16138	9.32091	3.97432	40.4601	33.0883	28.9094
+GO:0097054	L-glutamate biosynthetic process	biological_process	0.0766064	0	0	0	0	0
+GO:0097056	selenocysteinyl-tRNA(Sec) biosynthetic process	biological_process	23.9163	39.7508	29.7111	62.3617	68.0186	64.3589
+GO:0097098	DNA/RNA hybrid annealing activity	molecular_function	0.0579166	0	0.0179072	0	0	0.0256771
+GO:0097171	ADP-L-glycero-beta-D-manno-heptose biosynthetic process	biological_process	0.257234	0	0.282501	0	0	0
+GO:0097173	N-acetylmuramic acid catabolic process	biological_process	0.133721	0	0	0	0	0
+GO:0097175	1,6-anhydro-N-acetyl-beta-muramic acid catabolic process	biological_process	0.065062	0	0	0	0	0
+GO:0097264	self proteolysis	biological_process	3.87399	16.78	9.76701	44.9418	44.3139	57.188
+GO:0097588	archaeal or bacterial-type flagellum-dependent cell motility	biological_process	13.7278	62.6596	40.8665	354.209	319.508	260.352
+GO:0098655	cation transmembrane transport	biological_process	0.610712	0	0	0	0	0.0281348
+GO:1900190	regulation of single-species biofilm formation	biological_process	0.0483165	0	0	0	0	0
+GO:1900191	negative regulation of single-species biofilm formation	biological_process	1.52821	0	0	0	0	0
+GO:1900751	4-(trimethylammonio)butanoate transport	biological_process	0.0349249	0	0	0	0	0
+GO:1900753	doxorubicin transport	biological_process	0	0.391685	0.32851	0.1772	0	0.225143
+GO:1901137	carbohydrate derivative biosynthetic process	biological_process	19.441	17.737	11.7986	51.7246	42.9469	34.2831
+GO:1901264	carbohydrate derivative transport	biological_process	0.0959524	0	0	0	0	0.0780984
+GO:1901285	5,6,7,8-tetrahydromethanopterin biosynthetic process	biological_process	0.170687	0.166391	0.479796	0.177249	0.232048	0.115288
+GO:1901530	response to hypochlorite	biological_process	0.174382	0	0	0	0	0
+GO:1901652	response to peptide	biological_process	0.0514031	0	0	0	0	0
+GO:1901682	sulfur compound transmembrane transporter activity	molecular_function	0.300422	0	0	0	0	0
+GO:1902021	regulation of bacterial-type flagellum-dependent cell motility	biological_process	0.0604685	0	0	0	0	0
+GO:1902201	negative regulation of bacterial-type flagellum-dependent cell motility	biological_process	0.519645	0	0	0	0	0.122855
+GO:1902209	negative regulation of bacterial-type flagellum assembly	biological_process	0.0632148	0	0	0	0	0
+GO:1902475	L-alpha-amino acid transmembrane transport	biological_process	0.707175	0	0.523098	0	0	0.179351
+GO:1902599	sulfathiazole transmembrane transport	biological_process	0.0266372	0	0.0494366	0	0	0
+GO:1902760	Mo(VI)-molybdopterin cytosine dinucleotide biosynthetic process	biological_process	0.169958	0	0.210286	0	0	0
+GO:1902765	L-arginine import into cell	biological_process	0.0835087	0	0.154985	0	0	0
+GO:1902777	6-sulfoquinovose(1-) catabolic process	biological_process	0.162084	0	0.0826348	0	0	0
+GO:1903401	L-lysine transmembrane transport	biological_process	0.129711	0	0	0	0	0
+GO:1903506	regulation of nucleic acid-templated transcription	biological_process	0.0604685	0	0	0	0	0
+GO:1903658	positive regulation of type IV pilus biogenesis	biological_process	0.201602	0	0.187552	0	0	0
+GO:1903716	guanine transmembrane transport	biological_process	0.0803249	0	0	0	0	0.0530681
+GO:1903785	L-valine transmembrane transport	biological_process	0.26941	0	0	0	0	0
+GO:1903791	uracil transmembrane transport	biological_process	0	0	0	0	0	0.0548468
+GO:1903825	organic acid transmembrane transport	biological_process	0.0374282	0	0.0694638	0	0	0
+GO:1903874	ferrous iron transmembrane transport	biological_process	0.135349	0	0	0	0	0
+GO:1990663	dihydroorotate dehydrogenase (fumarate) activity	molecular_function	0.864033	0.484005	0.13365	0.257804	0.353627	0.431174
+GO:2000142	regulation of DNA-templated transcription, initiation	biological_process	0	0	0.0968433	0	0	0
+GO:2000143	negative regulation of DNA-templated transcription, initiation	biological_process	1.42047	0	0.406363	0	0	0
+GO:2000144	positive regulation of DNA-templated transcription, initiation	biological_process	0.090727	0	0	0	0	0
+GO:2000145	regulation of cell motility	biological_process	0.16534	0	0	0	0	0
+GO:2000147	positive regulation of cell motility	biological_process	1.05166	0	0	0	0	0
+GO:2000186	negative regulation of phosphate transmembrane transport	biological_process	0.0476602	0.184127	1.33312	0.689474	0.256333	0.748484
+GO:2000678	negative regulation of transcription regulatory region DNA binding	biological_process	0.0430911	0	0	0	0	0
+GO:2000884	glucomannan catabolic process	biological_process	7.87794	11.7939	11.5945	20.9763	16.3192	17.9495
+GO:2001059	D-tagatose 6-phosphate catabolic process	biological_process	135.133	134.531	133.449	207.117	206.169	216.128
+GO:2001070	starch binding	molecular_function	11.5	46.4104	40.8239	383.819	405.859	540.485
+GO:2001118	tetrahydromethanopterin biosynthetic process	biological_process	0.265619	0.71938	1.42789	0.202194	0.11852	0.439097
+GO:2001295	malonyl-CoA biosynthetic process	biological_process	0.0405149	0	0.150294	0	0	0.0539089
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/ft_output.tabular	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,4605 @@
+id	name	namespace	genus	species	dataset_21368137	dataset_21368138	dataset_21368139	dataset_21368140	dataset_21368141	dataset_21368142
+GO:0000014	single-stranded DNA endodeoxyribonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.158851	0.457588	0.367933	0.0406378	0.212081	0.0528417
+GO:0000023	maltose metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	14.0012	10.3973	8.3927600000000009	14.0098	14.1239	9.89496
+GO:0000025	maltose catabolic process	biological_process	Escherichia	Escherichia coli	0.0251304	0	0	0	0	0
+GO:0000027	ribosomal large subunit assembly	biological_process	Clostridium	Clostridium thermocellum	4.99521	34.9239	31.4675	127.056	96.2502	105.199
+GO:0000027	ribosomal large subunit assembly	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	44.0266	70.1837	60.1184	57.3553	74.0795	40.3249
+GO:0000027	ribosomal large subunit assembly	biological_process	Escherichia	Escherichia coli	0.0285816	0	0	0	0	0.0653892
+GO:0000030	mannosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.50346	4.38419	2.69903	22.4856	20.2827	17.4859
+GO:0000030	mannosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0323487	0	0.0586834	0	0	0
+GO:0000034	adenine deaminase activity	molecular_function	Escherichia	Escherichia coli	0.0149956	0	0.0278306	0	0	0
+GO:0000034	adenine deaminase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.148644	0.127232	0.24592	0.0508594	0.103349	0.308642
+GO:0000036	ACP phosphopantetheine attachment site binding involved in fatty acid biosynthetic process	molecular_function	Clostridium	Clostridium thermocellum	26.7934	119.275	48.5853	525.102	397.776	543.996
+GO:0000036	ACP phosphopantetheine attachment site binding involved in fatty acid biosynthetic process	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.661	17.4161	23.2322	12.7903	10.7163	13.3766
+GO:0000036	ACP phosphopantetheine attachment site binding involved in fatty acid biosynthetic process	molecular_function	Escherichia	Escherichia coli	0	0	0.0413174	0	0	0.118199
+GO:0000041	transition metal ion transport	biological_process	Clostridium	Clostridium thermocellum	2.80498	29.9683	29.3116	37.9571	37.3748	29.8371
+GO:0000041	transition metal ion transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0964385	0	0.631534	0.890674	0.653019	1.67182
+GO:0000049	tRNA binding	molecular_function	Clostridium	Clostridium thermocellum	120.077	577.193	382.252	1919.14	1656.7	1821.14
+GO:0000049	tRNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	514.943	404.284	333.851	458.679	525.602	378.856
+GO:0000049	tRNA binding	molecular_function	Escherichia	Escherichia coli	0.979988	0	0.574971	0	0	0.0577249
+GO:0000049	tRNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.76975	2.89815	6.21105	6.1176	3.16754	7.03193
+GO:0000050	urea cycle	biological_process	Escherichia	Escherichia coli	0.101785	0	0.0755531	0	0	0
+GO:0000053	argininosuccinate metabolic process	biological_process	Escherichia	Escherichia coli	0.101785	0	0.0755531	0	0	0
+GO:0000062	fatty-acyl-CoA binding	molecular_function	Escherichia	Escherichia coli	0.065864	0	0.0611642	0	0	0
+GO:0000103	sulfate assimilation	biological_process	Clostridium	Clostridium thermocellum	60.4918	642.736	558.276	836.882	834.009	1015.38
+GO:0000103	sulfate assimilation	biological_process	Escherichia	Escherichia coli	0.474196	0	0	0	0	0.189053
+GO:0000104	succinate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.190617	0	0	0	0	0
+GO:0000104	succinate dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0365776	0.0702438	0.13577	0.299411	0.260999	0.0973401
+GO:0000105	histidine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	50.019	106.794	75.405	312.907	305.015	318.959
+GO:0000105	histidine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	18.6764	15.0269	9.61789	12.342	13.9724	11.9058
+GO:0000105	histidine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.316439	0	0	0	0	0.217091
+GO:0000105	histidine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.32484	2.6737	1.3264	3.74954	1.61237	3.18684
+GO:0000107	imidazoleglycerol-phosphate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	9.3861	21.7098	11.9057	58.9753	64.8784	50.9841
+GO:0000107	imidazoleglycerol-phosphate synthase activity	molecular_function	Escherichia	Escherichia coli	0.0775299	0	0	0	0	0.146657
+GO:0000107	imidazoleglycerol-phosphate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.321494	0.576652	0.67876	0.328982	0.481327	0.855364
+GO:0000150	recombinase activity	molecular_function	Clostridium	Clostridium thermocellum	1.54379	110.706	78.5557	19.1856	19.9128	16.8752
+GO:0000150	recombinase activity	molecular_function	Escherichia	Escherichia coli	0.373359	0	0	0	0	0.117487
+GO:0000150	recombinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.222965	0.142728	0	0.152106	0.132735	0.197785
+GO:0000155	phosphorelay sensor kinase activity	molecular_function	Clostridium	Clostridium thermocellum	19.9886	84.8723	77.9795	264.234	251.512	235.083
+GO:0000155	phosphorelay sensor kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	47.2634	42.6513	42.495	39.1395	45.3117	29.564
+GO:0000155	phosphorelay sensor kinase activity	molecular_function	Escherichia	Escherichia coli	1.52994	0	0.964103	0	0	0.159463
+GO:0000155	phosphorelay sensor kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	3.01421	5.38767	2.94955	2.42178	1.27238	2.52586
+GO:0000156	phosphorelay response regulator activity	molecular_function	Clostridium	Clostridium thermocellum	3.25315	9.02579	9.47242	86.7788	82.4587	83.4675
+GO:0000156	phosphorelay response regulator activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.162035	0.103709	0	0.138328	0.0482239	0.0359285
+GO:0000156	phosphorelay response regulator activity	molecular_function	Escherichia	Escherichia coli	0.524797	0	0.447726	0	0	0.379206
+GO:0000160	phosphorelay signal transduction system	biological_process	Clostridium	Clostridium thermocellum	70.2649	506.303	446.434	1488.2	1460.77	1693.63
+GO:0000160	phosphorelay signal transduction system	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	100.956	79.8029	110.565	74.3182	89.4686	68.112
+GO:0000160	phosphorelay signal transduction system	biological_process	Escherichia	Escherichia coli	1.47681	0	1.9532	0	0	0.727399
+GO:0000160	phosphorelay signal transduction system	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.51202	4.41789	3.26994	1.32585	1.20071	2.48618
+GO:0000162	tryptophan biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	25.7733	153.11	351.052	477.749	265.751	313.128
+GO:0000162	tryptophan biosynthetic process	biological_process	Escherichia	Escherichia coli	0.132749	0	0.403341	0	0	0
+GO:0000162	tryptophan biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.81597	0.102682	0.0724408	0.759484	0.268335	2.15878
+GO:0000166	nucleotide binding	molecular_function	Clostridium	Clostridium thermocellum	25.4954	114.889	85.4685	410.422	364.29	343.28
+GO:0000166	nucleotide binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	372.746	157.945	210.439	117.333	140.82	118.404
+GO:0000166	nucleotide binding	molecular_function	Escherichia	Escherichia coli	0.793357	0	1.54038	0	0	0.800485
+GO:0000166	nucleotide binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	2.14811	4.82353	3.46074	5.50809	2.69665	10.2888
+GO:0000175	3'-5'-exoribonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	2.72492	16.2016	15.1478	61.5467	63.3508	61.82
+GO:0000175	3'-5'-exoribonuclease activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	32.5488	53.4827	41.7801	34.7674	39.6371	35.03
+GO:0000175	3'-5'-exoribonuclease activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0705914	0	0	0
+GO:0000175	3'-5'-exoribonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.21215	1.6291	0.62991	0.347386	0.227186	0.62081
+GO:0000179	rRNA (adenine-N6,N6-)-dimethyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.480005	3.09628	2.75081	11.3416	10.0213	10.6301
+GO:0000179	rRNA (adenine-N6,N6-)-dimethyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.0203	9.38784	6.66771	7.82058	9.52142	8.62006
+GO:0000179	rRNA (adenine-N6,N6-)-dimethyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.108493	0.346878	0.671228	0.148027	0.0645879	0.478842
+GO:0000213	tRNA-intron endonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.265668	0.514297	0	0.411078	0.0597915	0
+GO:0000256	allantoin catabolic process	biological_process	Escherichia	Escherichia coli	0.0191516	0	0	0	0	0.0947853
+GO:0000270	peptidoglycan metabolic process	biological_process	Clostridium	Clostridium thermocellum	3.4896	22.5746	12.9726	63.0136	57.2558	69.5533
+GO:0000270	peptidoglycan metabolic process	biological_process	Escherichia	Escherichia coli	0.252908	0	0	0	0	0
+GO:0000271	polysaccharide biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	12.436	81.8708	65.7678	187.226	171.569	234.308
+GO:0000271	polysaccharide biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.0404176	0.0387858	0.149934	0.0619763	0.0541271	0.0537796
+GO:0000271	polysaccharide biosynthetic process	biological_process	Escherichia	Escherichia coli	0.103876	0	0.847052	0	0	0.0420406
+GO:0000271	polysaccharide biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0636037	0.154116	0.113533	0.511504	0.13972300000000001	0.150796
+GO:0000272	polysaccharide catabolic process	biological_process	Clostridium	Clostridium thermocellum	274.016	450.016	409.901	1307.84	1243.32	1384.78
+GO:0000286	alanine dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.111701	0.321908	0.103745	0	0.124727	0.0743471
+GO:0000287	magnesium ion binding	molecular_function	Clostridium	Clostridium thermocellum	122.057	815.864	703	2240.71	2045.67	2109.07
+GO:0000287	magnesium ion binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	657.309	681.011	699.335	647.704	720.619	549.212
+GO:0000287	magnesium ion binding	molecular_function	Escherichia	Escherichia coli	7.77015	0	4.42353	0	0	1.51142
+GO:0000287	magnesium ion binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	8.10883	14.3757	15.0581	15.1495	9.07	14.5199
+GO:0000302	response to reactive oxygen species	biological_process	Clostridium	Clostridium thermocellum	16.7778	159.381	159.13	520.725	417.94	348.992
+GO:0000302	response to reactive oxygen species	biological_process	Escherichia	Escherichia coli	0.0479276	0	0.0636902	0	0	0
+GO:0000309	nicotinamide-nucleotide adenylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.235748	0.227832	0	0.109621	0.235621
+GO:0000398	mRNA splicing, via spliceosome	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.939701	0.259072	1.13035	1.35099
+GO:0000413	protein peptidyl-prolyl isomerization	biological_process	Escherichia	Escherichia coli	0.103098	0	0	0	0	0
+GO:0000453	enzyme-directed rRNA 2'-O-methylation	biological_process	Clostridium	Clostridium thermocellum	3.29626	6.52502	3.96548	21.0496	18.4026	15.9098
+GO:0000453	enzyme-directed rRNA 2'-O-methylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	1.04605	1.09856	0.176907	1.79801	1.31821	0.824318
+GO:0000453	enzyme-directed rRNA 2'-O-methylation	biological_process	Escherichia	Escherichia coli	0	0	0.126794	0	0	0
+GO:0000703	oxidized pyrimidine nucleobase lesion DNA N-glycosylase activity	molecular_function	Escherichia	Escherichia coli	0.0757071	0	0	0	0	0
+GO:0000724	double-strand break repair via homologous recombination	biological_process	Clostridium	Clostridium thermocellum	6.01112	21.2068	21.8854	50.7726	47.1347	58.1933
+GO:0000724	double-strand break repair via homologous recombination	biological_process	Escherichia	Escherichia coli	0.123465	0	0	0	0	0
+GO:0000725	recombinational repair	biological_process	Escherichia	Escherichia coli	0.00811755	0	0.0450612	0	0	0
+GO:0000737	DNA catabolic process, endonucleolytic	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.345944	1.33071	1.63181	0.299909	0.261737	0.177217
+GO:0000738	DNA catabolic process, exonucleolytic	biological_process	Escherichia	Escherichia coli	0	0	0.0705914	0	0	0
+GO:0000738	DNA catabolic process, exonucleolytic	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.254901	0.481252	0.621024	0.380786	0.114136	0.333252
+GO:0000774	adenyl-nucleotide exchange factor activity	molecular_function	Clostridium	Clostridium thermocellum	1.50831	35.3845	47.4473	28.9627	41.5985	54.1577
+GO:0000774	adenyl-nucleotide exchange factor activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	27.0761	20.5796	21.4075	11.4793	16.9678	21.1717
+GO:0000774	adenyl-nucleotide exchange factor activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0.265116	0.231505	0.431174
+GO:0000902	cell morphogenesis	biological_process	Clostridium	Clostridium thermocellum	15.8469	88.3083	72.4931	241.257	235.342	248.508
+GO:0000902	cell morphogenesis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	154.516	156.139	179.37	181.218	209.801	168.777
+GO:0000902	cell morphogenesis	biological_process	Escherichia	Escherichia coli	0.019905	0	0.174787	0	0	0
+GO:0000902	cell morphogenesis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0791583	0.55719	1.51819	0.78311	0.494826	1.3323
+GO:0000906	6,7-dimethyl-8-ribityllumazine synthase activity	molecular_function	Clostridium	Clostridium thermocellum	7.9335	68.0065	34.1373	218.064	158.846	137.481
+GO:0000906	6,7-dimethyl-8-ribityllumazine synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.629767	0.69147	0.835325	2.11789	0	1.55272
+GO:0000908	taurine dioxygenase activity	molecular_function	Escherichia	Escherichia coli	0.0692422	0	0	0	0	0
+GO:0000917	barrier septum assembly	biological_process	Clostridium	Clostridium thermocellum	171.595	868.735	578.205	2874.96	2706.63	3615.61
+GO:0000917	barrier septum assembly	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	381.898	556.293	504.685	403.076	480.933	724.606
+GO:0000917	barrier septum assembly	biological_process	Escherichia	Escherichia coli	0.600213	0	0.0662161	0	0	0.228895
+GO:0000917	barrier septum assembly	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	8.30122	13.182	9.61681	3.9548	3.80298	7.1035
+GO:0000918	barrier septum site selection	biological_process	Clostridium	Clostridium thermocellum	8.2863	55.6835	39.4115	137.04	122.542	115.444
+GO:0000918	barrier septum site selection	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	62.4331	78.3751	78.5854	80.8657	99.0399	63.0687
+GO:0000918	barrier septum site selection	biological_process	Escherichia	Escherichia coli	0.0366505	0	0	0	0	0
+GO:0000920	cell separation after cytokinesis	biological_process	Escherichia	Escherichia coli	0.189693	0	0	0	0	0
+GO:0000967	rRNA 5'-end processing	biological_process	Clostridium	Clostridium thermocellum	20.5795	48.505	31.4653	157.155	119.907	115.06
+GO:0000967	rRNA 5'-end processing	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	34.2826	19.954	8.7021	28.5855	23.0759	32.0424
+GO:0000986	bacterial-type RNA polymerase core promoter proximal region sequence-specific DNA binding	molecular_function	Escherichia	Escherichia coli	0.149834	0	0.668882	0	0	0.181971
+GO:0000987	core promoter proximal region sequence-specific DNA binding	molecular_function	Escherichia	Escherichia coli	0.905059	0	0.261482	0	0	0
+GO:0001046	core promoter sequence-specific DNA binding	molecular_function	Escherichia	Escherichia coli	0	0	0.261482	0	0	0
+GO:0001047	core promoter binding	molecular_function	Escherichia	Escherichia coli	0.0604685	0	0	0	0	0
+GO:0001071	nucleic acid binding transcription factor activity	molecular_function	Escherichia	Escherichia coli	0.175378	0	0	0	0	0
+GO:0001123	transcription initiation from bacterial-type RNA polymerase promoter	biological_process	Clostridium	Clostridium thermocellum	9.93467	48.7134	28.9363	146.277	129.107	131.137
+GO:0001123	transcription initiation from bacterial-type RNA polymerase promoter	biological_process	Escherichia	Escherichia coli	0.181673	0	0.107579	0	0	0.0917454
+GO:0001141	transcriptional repressor activity, bacterial-type RNA polymerase core promoter proximal region sequence-specific binding	molecular_function	Escherichia	Escherichia coli	0.05675	0	0.096708	0	0	0.0693346
+GO:0001407	glycerophosphodiester transport	biological_process	Clostridium	Clostridium thermocellum	115.851	297.81	235.253	1285.84	1089.39	861.139
+GO:0001407	glycerophosphodiester transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	188.38	65.4715	118.616	36.1918	34.5571	42.4546
+GO:0001407	glycerophosphodiester transport	biological_process	Escherichia	Escherichia coli	0.0416328	0	0.0978357	0	0	0
+GO:0001514	selenocysteine incorporation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	26.1395	27.937	22.6729	21.6123	26.0746	24.3582
+GO:0001514	selenocysteine incorporation	biological_process	Escherichia	Escherichia coli	0.126284	0	0	0	0	0
+GO:0001516	prostaglandin biosynthetic process	biological_process	Escherichia	Escherichia coli	0.143394	0	0	0	0	0
+GO:0001522	pseudouridine synthesis	biological_process	Clostridium	Clostridium thermocellum	18.7966	81.1052	74.3503	155.841	154.52	229.781
+GO:0001522	pseudouridine synthesis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	48.0913	36.6866	25.7054	38.5516	38.6416	31.1142
+GO:0001522	pseudouridine synthesis	biological_process	Escherichia	Escherichia coli	0.159289	0	0	0	0	0
+GO:0001522	pseudouridine synthesis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	2.16808	4.51064	4.43357	1.44687	1.7529
+GO:0001671	ATPase activator activity	molecular_function	Escherichia	Escherichia coli	0.0933276	0	0	0	0	0
+GO:0001680	tRNA 3'-terminal CCA addition	biological_process	Escherichia	Escherichia coli	0.0223111	0	0	0	0	0
+GO:0001680	tRNA 3'-terminal CCA addition	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0001682	tRNA 5'-leader removal	biological_process	Clostridium	Clostridium thermocellum	7.86346	63.3051	50.074	182.415	160.09	200.806
+GO:0001682	tRNA 5'-leader removal	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.77181	3.4195	3.27675	5.62935	1.25308	8.58045
+GO:0001727	lipid kinase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.300724	0	0	0
+GO:0001896	autolysis	biological_process	Escherichia	Escherichia coli	0.189693	0	0	0	0	0
+GO:0002084	protein depalmitoylation	biological_process	Escherichia	Escherichia coli	0.17567	0	0	0	0	0
+GO:0002097	tRNA wobble base modification	biological_process	Escherichia	Escherichia coli	0.0261755	0	0	0	0	0
+GO:0002098	tRNA wobble uridine modification	biological_process	Clostridium	Clostridium thermocellum	0.432053	4.25612	3.46669	11.5249	12.645	9.23874
+GO:0002098	tRNA wobble uridine modification	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	10.7799	6.93449	5.37135	3.54892	5.13235	3.22302
+GO:0002098	tRNA wobble uridine modification	biological_process	Escherichia	Escherichia coli	0.0279254	0	0.1037	0	0	0
+GO:0002098	tRNA wobble uridine modification	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.427095	0.271734	0.529909	0.484967	0.289929	0.383604
+GO:0002100	tRNA wobble adenosine to inosine editing	biological_process	Clostridium	Clostridium thermocellum	4.98695	33.4582	24.2697	95.8039	74.3148	108.515
+GO:0002100	tRNA wobble adenosine to inosine editing	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	2.08128	3.25926	2.86254	0.867992	1.23995	2.77157
+GO:0002100	tRNA wobble adenosine to inosine editing	biological_process	Escherichia	Escherichia coli	0.068659	0	0	0	0	0
+GO:0002101	tRNA wobble cytosine modification	biological_process	Escherichia	Escherichia coli	0	0	0.096708	0	0	0
+GO:0002101	tRNA wobble cytosine modification	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0205126	0.0787851	0	0.0419559	0.0366128	0.109176
+GO:0002128	tRNA nucleoside ribose methylation	biological_process	Escherichia	Escherichia coli	0.0862065	0	0	0	0	0
+GO:0002128	tRNA nucleoside ribose methylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.103709	0.400725	0.331593	0	0
+GO:0002143	tRNA wobble position uridine thiolation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	589.086	181.098	207.717	182.833	172.107	155.817
+GO:0002143	tRNA wobble position uridine thiolation	biological_process	Escherichia	Escherichia coli	0.176107	0	0	0	0	0
+GO:0002143	tRNA wobble position uridine thiolation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.51649	0.259226	0.142929	0	0.557555
+GO:0002161	aminoacyl-tRNA editing activity	molecular_function	Clostridium	Clostridium thermocellum	8.00437	54.505	41.5771	136.035	128.623	122.37
+GO:0002161	aminoacyl-tRNA editing activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	158.284	105.064	94.5064	104.218	120.14	92.288
+GO:0002161	aminoacyl-tRNA editing activity	molecular_function	Escherichia	Escherichia coli	0.128714	0	0.0338298	0	0	0.0265826
+GO:0002161	aminoacyl-tRNA editing activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.345749	0.644983	0.393372	0.488176	0.292013	0.470369
+GO:0002237	response to molecule of bacterial origin	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0002935	tRNA (adenine-C2-)-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.7819	11.4019	8.76191	33.2804	31.5624	33.2572
+GO:0002949	tRNA threonylcarbamoyladenosine modification	biological_process	Clostridium	Clostridium thermocellum	7.44234	54.0843	40.7572	105.925	115.964	114.083
+GO:0002949	tRNA threonylcarbamoyladenosine modification	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	81.1817	37.9727	56.9503	29.163	30.6186	29.4938
+GO:0002949	tRNA threonylcarbamoyladenosine modification	biological_process	Escherichia	Escherichia coli	0.171173	0	0	0	0	0
+GO:0003333	amino acid transmembrane transport	biological_process	Escherichia	Escherichia coli	0.936119	0	1.37101	0	0	0.476772
+GO:0003676	nucleic acid binding	molecular_function	Clostridium	Clostridium thermocellum	114.184	520.483	387.506	1648.95	1309.34	1509.48
+GO:0003676	nucleic acid binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	309.965	429.289	376.093	304.893	314.471	286.154
+GO:0003676	nucleic acid binding	molecular_function	Escherichia	Escherichia coli	0.844274	0	0.297747	0	0	0.177929
+GO:0003676	nucleic acid binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.43943	2.57666	1.88761	3.12896	0.811602	1.79743
+GO:0003677	DNA binding	molecular_function	Clostridium	Clostridium thermocellum	484.481	3689.01	3085.13	8844.89	8093.32	10257.2
+GO:0003677	DNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2840.89	4781.45	3624.97	2278.92	2771.38	2662.95
+GO:0003677	DNA binding	molecular_function	Escherichia	Escherichia coli	39.8095	0	31.1121	0	0	22.1497
+GO:0003677	DNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	44.6392	87.6247	69.4342	114.896	62.6553	163.013
+GO:0003678	DNA helicase activity	molecular_function	Clostridium	Clostridium thermocellum	2.12709	13.591	7.47642	55.5768	47.5258	39.9705
+GO:0003678	DNA helicase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.3331	9.32455	7.93813	13.0321	15.1196	9.34772
+GO:0003678	DNA helicase activity	molecular_function	Escherichia	Escherichia coli	0.139335	0	0	0	0	0
+GO:0003684	damaged DNA binding	molecular_function	Clostridium	Clostridium thermocellum	19.1707	131.229	98.1761	272.212	265.241	284.135
+GO:0003684	damaged DNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	78.5822	94.9076	138.856	49.2771	60.6959	55.5058
+GO:0003684	damaged DNA binding	molecular_function	Escherichia	Escherichia coli	0.404322	0	0.260128	0	0	0.057789600000000003
+GO:0003684	damaged DNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.899712	1.28665	2.63782	1.85623	0.385769	1.02181
+GO:0003688	DNA replication origin binding	molecular_function	Clostridium	Clostridium thermocellum	1.62361	6.62831	5.33811	16.0679	18.1539	20.2148
+GO:0003688	DNA replication origin binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.1311	22.1648	29.882	8.47126	12.8847	8.72642
+GO:0003688	DNA replication origin binding	molecular_function	Escherichia	Escherichia coli	0.038765	0	0	0	0	0
+GO:0003689	DNA clamp loader activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.283823	0.741224	0.305686	0.199036	0	0.179513
+GO:0003690	double-stranded DNA binding	molecular_function	Clostridium	Clostridium thermocellum	10.8248	63.0403	44.6454	121.369	122.721	152.282
+GO:0003690	double-stranded DNA binding	molecular_function	Escherichia	Escherichia coli	0.20131	0	0.0179072	0	0	0.0256771
+GO:0003690	double-stranded DNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	7.15208	6.10864	6.2807	5.78837	4.03646	10.531
+GO:0003697	single-stranded DNA binding	molecular_function	Clostridium	Clostridium thermocellum	39.8208	196.064	115.522	746.779	632.797	587.862
+GO:0003697	single-stranded DNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	207.604	188.811	196.58	120.494	161.102	121.232
+GO:0003697	single-stranded DNA binding	molecular_function	Escherichia	Escherichia coli	0.499959	0	1.08585	0	0	0.269609
+GO:0003700	transcription factor activity, sequence-specific DNA binding	molecular_function	Clostridium	Clostridium thermocellum	143.228	834.154	738.52	2142.51	1981.79	2353.96
+GO:0003700	transcription factor activity, sequence-specific DNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	485.053	646.725	653.545	303.569	391.592	386.371
+GO:0003700	transcription factor activity, sequence-specific DNA binding	molecular_function	Escherichia	Escherichia coli	10.9995	0	7.20276	0	0	2.61932
+GO:0003700	transcription factor activity, sequence-specific DNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	5.23905	16.7021	13.4066	11.2138	8.94321	15.445
+GO:0003723	RNA binding	molecular_function	Clostridium	Clostridium thermocellum	233.015	1271.13	1038.43	3440.49	3280.13	3683.11
+GO:0003723	RNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1029.51	793.117	821.333	594.596	668.05	485.255
+GO:0003723	RNA binding	molecular_function	Escherichia	Escherichia coli	3.6423	0	1.39131	0	0	0.920235
+GO:0003723	RNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	11.5742	17.9269	11.8193	16.9188	7.91403	22.0151
+GO:0003725	double-stranded RNA binding	molecular_function	Clostridium	Clostridium thermocellum	2.84265	18.2528	13.1783	40.0871	42.5015	49.0472
+GO:0003725	double-stranded RNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.56638	14.5919	8.13037	9.36121	9.15373	10.0155
+GO:0003725	double-stranded RNA binding	molecular_function	Escherichia	Escherichia coli	0.11491	0	0.0214706	0	0	0
+GO:0003725	double-stranded RNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.172534	0.636721	0.820485	0.335896	0.448708	0.788519
+GO:0003729	mRNA binding	molecular_function	Clostridium	Clostridium thermocellum	14.2671	38.5654	16.046	202.671	181.592	134.609
+GO:0003729	mRNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	72.3149	29.9106	22.1704	28.929	38.3661	16.9469
+GO:0003729	mRNA binding	molecular_function	Escherichia	Escherichia coli	0	0	0.16342	0	0	0
+GO:0003735	structural constituent of ribosome	molecular_function	Clostridium	Clostridium thermocellum	1124.36	7772.48	4272.95	24818.1	22466.8	28765.6
+GO:0003735	structural constituent of ribosome	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	7076.53	8854.01	6578.44	9683.54	10960.2	8803.02
+GO:0003735	structural constituent of ribosome	molecular_function	Escherichia	Escherichia coli	1.85664	0	2.01147	0	0	0.489223
+GO:0003735	structural constituent of ribosome	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	26.9733	77.1491	97.7281	103.776	54.8019	85.1355
+GO:0003743	translation initiation factor activity	molecular_function	Clostridium	Clostridium thermocellum	15.4948	81.3768	66.6593	335.931	327.44	433.147
+GO:0003743	translation initiation factor activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	186.109	192.414	183.507	190.529	201.449	172.004
+GO:0003743	translation initiation factor activity	molecular_function	Escherichia	Escherichia coli	0.189815	0	1.12852	0	0	0.0256447
+GO:0003743	translation initiation factor activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	3.31753	11.5555	4.02295	11.0023	5.56011	10.3248
+GO:0003746	translation elongation factor activity	molecular_function	Clostridium	Clostridium thermocellum	77.4869	413.359	286.347	1635.73	1440.8	1509.42
+GO:0003746	translation elongation factor activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	696.696	691.209	633.687	628.917	735.034	601.474
+GO:0003746	translation elongation factor activity	molecular_function	Escherichia	Escherichia coli	0.147987	0	0.0273344	0	0	0.245161
+GO:0003746	translation elongation factor activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.41697	4.47698	3.78708	5.4333	2.41122	8.48663
+GO:0003755	peptidyl-prolyl cis-trans isomerase activity	molecular_function	Clostridium	Clostridium thermocellum	20.8325	125.125	91.5941	328.974	291.897	325.195
+GO:0003755	peptidyl-prolyl cis-trans isomerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	7.12833	14.9748	13.5304	19.2067	19.5046	16.6573
+GO:0003755	peptidyl-prolyl cis-trans isomerase activity	molecular_function	Escherichia	Escherichia coli	0.103098	0	0.0942272	0	0	0
+GO:0003755	peptidyl-prolyl cis-trans isomerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.176107	0.154816	1.21823	0.869957	0.330232	1.1555
+GO:0003756	protein disulfide isomerase activity	molecular_function	Escherichia	Escherichia coli	0.0814186	0	0	0	0	0
+GO:0003774	motor activity	molecular_function	Clostridium	Clostridium thermocellum	16.2424	61.3966	47.157	457.11	413.752	330.428
+GO:0003774	motor activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0527744	0	0	0.042849
+GO:0003796	lysozyme activity	molecular_function	Escherichia	Escherichia coli	0.145265	0	0	0	0	0.0966933
+GO:0003824	catalytic activity	molecular_function	Clostridium	Clostridium thermocellum	137.316	831.273	713.52	2195.99	1939.11	1950.29
+GO:0003824	catalytic activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	545.528	655.862	594.009	462.651	556.504	442.548
+GO:0003824	catalytic activity	molecular_function	Escherichia	Escherichia coli	7.69532	0	0.546509	0	0	2.76485
+GO:0003824	catalytic activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	8.65781	16.738	10.6613	9.9622	6.538	10.5079
+GO:0003825	alpha,alpha-trehalose-phosphate synthase (UDP-forming) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.162546	0.139181	0	0.0741876	0	0.0482173
+GO:0003839	gamma-glutamylcyclotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0	1.46588	1.69992	1.48547	0.477746	0.915255
+GO:0003840	gamma-glutamyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0455458	0	0	0	0	0
+GO:0003841	1-acylglycerol-3-phosphate O-acyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	5.997	47.2479	28.0874	116.149	110.111	121.998
+GO:0003842	1-pyrroline-5-carboxylate dehydrogenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.8536	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0003842	1-pyrroline-5-carboxylate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.00636766	0	0	0	0	0
+GO:0003844	1,4-alpha-glucan branching enzyme activity	molecular_function	Clostridium	Clostridium thermocellum	1.36577	4.09104	3.84514	25.4212	28.2393	28.5431
+GO:0003848	2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity	molecular_function	Clostridium	Clostridium thermocellum	1.06211	9.43031	7.26794	27.1576	18.0614	20.3111
+GO:0003848	2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2.95863	3.78878	2.34332	5.25814	5.82665	4.74163
+GO:0003848	2-amino-4-hydroxy-6-hydroxymethyldihydropteridine diphosphokinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.265619	0.339924	0.32851	0	0.11852	0.1767
+GO:0003849	3-deoxy-7-phosphoheptulonate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	4.18625	33.5688	32.7505	51.4121	45.198	55.465
+GO:0003852	2-isopropylmalate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	5.38225	20.4815	17.118	50.8821	40.6564	32.9352
+GO:0003852	2-isopropylmalate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.391392	0.616792	0.364008	0.549779	0.158713	0.287396
+GO:0003855	3-dehydroquinate dehydratase activity	molecular_function	Clostridium	Clostridium thermocellum	1.38574	7.35655	3.7173	17.0606	15.9985	19.0732
+GO:0003855	3-dehydroquinate dehydratase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.376178	0.904535	0.524316	0	0.336482	0.500897
+GO:0003856	3-dehydroquinate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	1.74464	17.7563	9.18415	61.5516	42.0406	30.4581
+GO:0003856	3-dehydroquinate synthase activity	molecular_function	Escherichia	Escherichia coli	0.155303	0	0	0	0	0
+GO:0003856	3-dehydroquinate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.123051	0.425617	0.274202	0.100799	0.109795	0.294898
+GO:0003857	3-hydroxyacyl-CoA dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.172705	0	0	0	0	0.0158461
+GO:0003861	3-isopropylmalate dehydratase activity	molecular_function	Clostridium	Clostridium thermocellum	4.98129	49.7019	32.4344	154.533	108.949	61.6607
+GO:0003861	3-isopropylmalate dehydratase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.137391	1.1134	0.36464	0.535603	0.278926	0.291018
+GO:0003862	3-isopropylmalate dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	3.41508	16.4448	10.2752	56.2522	42.2691	32.7029
+GO:0003862	3-isopropylmalate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0963923	0	0	0
+GO:0003862	3-isopropylmalate dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0287031	0.110476	0	0.118009	0.0258265	0.0764815
+GO:0003863	3-methyl-2-oxobutanoate dehydrogenase (2-methylpropanoyl-transferring) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	142.466	6.9546	14.7641	3.46147	3.02157	1.69925
+GO:0003864	3-methyl-2-oxobutanoate hydroxymethyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.87409	6.84534	6.93312	13.2033	14.2757	17.5755
+GO:0003864	3-methyl-2-oxobutanoate hydroxymethyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	28.2373	10.6405	11.762	11.5499	14.959	11.9443
+GO:0003864	3-methyl-2-oxobutanoate hydroxymethyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0376713	0	0	0	0	0
+GO:0003866	3-phosphoshikimate 1-carboxyvinyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	12.7106	54.7726	52.5702	144.858	144.756	140.053
+GO:0003866	3-phosphoshikimate 1-carboxyvinyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0428724	0	0	0	0	0
+GO:0003866	3-phosphoshikimate 1-carboxyvinyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0875918	0.168212	0.162563	0.0672239	0.0391087	0
+GO:0003867	4-aminobutyrate transaminase activity	molecular_function	Escherichia	Escherichia coli	0.0217764	0	0.079748	0	0	0
+GO:0003871	5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0114958	0	0	0	0	0.0306249
+GO:0003871	5-methyltetrahydropteroyltriglutamate-homocysteine S-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0312793	0.120138	0.0580519	0.0640157	0.0837516	0.208101
+GO:0003872	6-phosphofructokinase activity	molecular_function	Clostridium	Clostridium thermocellum	12.712	116.88	72.6404	379.328	344.769	269.537
+GO:0003872	6-phosphofructokinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	233.381	310.772	242.865	253.449	310.629	177.948
+GO:0003872	6-phosphofructokinase activity	molecular_function	Escherichia	Escherichia coli	0.1493	0	0.0554808	0	0	0
+GO:0003879	ATP phosphoribosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.26044	0.569185	0.733068	4.23322	1.01539	0.85449
+GO:0003879	ATP phosphoribosyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.21181	0	0.339561	0.227512	0.137748	0.441652
+GO:0003882	CDP-diacylglycerol-serine O-phosphatidyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0402961	0	0	0	0	0
+GO:0003883	CTP synthase activity	molecular_function	Clostridium	Clostridium thermocellum	2.99069	17.5081	9.72511	47.0376	51.3878	47.8895
+GO:0003883	CTP synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	81.7573	30.9161	34.0033	28.7358	35.2159	18.6169
+GO:0003883	CTP synthase activity	molecular_function	Escherichia	Escherichia coli	0.163323	0	0	0	0	0
+GO:0003883	CTP synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.133915	0.514297	0.186334	0.582359	0.0896765	0.400873
+GO:0003886	DNA (cytosine-5-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.14213	0	0	0
+GO:0003887	DNA-directed DNA polymerase activity	molecular_function	Clostridium	Clostridium thermocellum	13.8017	113.47	81.4022	272.913	252.09	280.244
+GO:0003887	DNA-directed DNA polymerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	193.276	136.463	164.902	92.8841	107.422	88.0927
+GO:0003887	DNA-directed DNA polymerase activity	molecular_function	Escherichia	Escherichia coli	1.29939	0	1.62008	0	0	0.107753
+GO:0003887	DNA-directed DNA polymerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.562687	1.89994	1.70858	1.80634	1.05574	5.6378
+GO:0003896	DNA primase activity	molecular_function	Clostridium	Clostridium thermocellum	9.35849	55.0787	43.5957	155.68	132.08	144.945
+GO:0003896	DNA primase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	21.8509	15.819	16.563	18.5483	22.5299	17.679
+GO:0003896	DNA primase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0282817	0	0	0
+GO:0003896	DNA primase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.702339	0.957976	0.737489	0.738419	0.33008	1.21966
+GO:0003899	DNA-directed RNA polymerase activity	molecular_function	Clostridium	Clostridium thermocellum	31.4805	122.608	89.2892	472.668	417.922	393.303
+GO:0003899	DNA-directed RNA polymerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	259.178	139.541	113.496	109.676	145.053	90.425
+GO:0003899	DNA-directed RNA polymerase activity	molecular_function	Escherichia	Escherichia coli	0.140842	0	0.0232749	0	0	0.0166869
+GO:0003899	DNA-directed RNA polymerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	24.7246	24.1352	16.6017	37.8499	10.3458	36.8199
+GO:0003904	deoxyribodipyrimidine photo-lyase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.265935	0.196403	0.151828	0	0.0730737	0
+GO:0003906	DNA-(apurinic or apyrimidinic site) lyase activity	molecular_function	Clostridium	Clostridium thermocellum	8.44359	38.6602	41.3978	94.1453	87.3801	154.826
+GO:0003906	DNA-(apurinic or apyrimidinic site) lyase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	35.2144	18.7453	22.4538	18.0727	28.9692	25.5127
+GO:0003906	DNA-(apurinic or apyrimidinic site) lyase activity	molecular_function	Escherichia	Escherichia coli	0.100011	0	0	0	0	0
+GO:0003906	DNA-(apurinic or apyrimidinic site) lyase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.164322	0.045388	0.235607	0.293152
+GO:0003908	methylated-DNA-[protein]-cysteine S-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0	1.01576	2.62726	5.81001	3.04457	5.45528
+GO:0003908	methylated-DNA-[protein]-cysteine S-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0	0	0.0848896
+GO:0003909	DNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.090241	0	0.33505	0	0	0
+GO:0003910	DNA ligase (ATP) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0003911	DNA ligase (NAD+) activity	molecular_function	Clostridium	Clostridium thermocellum	0.923554	8.33441	5.65561	19.559	20.7214	22.148
+GO:0003911	DNA ligase (NAD+) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	10.0687	5.62109	6.50628	5.73657	6.64734	6.81345
+GO:0003911	DNA ligase (NAD+) activity	molecular_function	Escherichia	Escherichia coli	0.225396	0	0.0880927	0	0	0.0421052
+GO:0003917	DNA topoisomerase type I activity	molecular_function	Clostridium	Clostridium thermocellum	2.98451	17.6204	11.4183	60.2139	61.4208	56.995
+GO:0003917	DNA topoisomerase type I activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	22.2855	14.3293	10.8965	6.45138	6.94773	5.49076
+GO:0003917	DNA topoisomerase type I activity	molecular_function	Escherichia	Escherichia coli	0.0198564	0	0.114796	0	0	0
+GO:0003917	DNA topoisomerase type I activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.108979	0.0232435	0.179794	0.148649	0.194523	0.112798
+GO:0003918	DNA topoisomerase type II (ATP-hydrolyzing) activity	molecular_function	Clostridium	Clostridium thermocellum	6.78066	44.6972	34.4645	123.05	113.338	115.841
+GO:0003918	DNA topoisomerase type II (ATP-hydrolyzing) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	44.4792	32.5295	35.4333	25.4426	27.668	20.7157
+GO:0003918	DNA topoisomerase type II (ATP-hydrolyzing) activity	molecular_function	Escherichia	Escherichia coli	0.11909	0	0.0995948	0	0	0
+GO:0003918	DNA topoisomerase type II (ATP-hydrolyzing) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.585217	2.24855	2.45496	0.509663	0.383816	0.268186
+GO:0003919	FMN adenylyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.18476	13.2453	14.3414	40.3507	33.9304	35.5191
+GO:0003919	FMN adenylyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.502	12.0994	6.78476	11.8856	12.0771	13.8432
+GO:0003919	FMN adenylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0794256	0.457588	0.588683	1.70599	0.70834	0.422734
+GO:0003922	GMP synthase (glutamine-hydrolyzing) activity	molecular_function	Clostridium	Clostridium thermocellum	3.92593	27.1335	16.1024	89.4446	80.4397	68.3222
+GO:0003922	GMP synthase (glutamine-hydrolyzing) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	51.7973	29.7592	26.6445	20.2701	25.1246	15.1858
+GO:0003922	GMP synthase (glutamine-hydrolyzing) activity	molecular_function	Escherichia	Escherichia coli	0.03405	0	0	0	0	0
+GO:0003922	GMP synthase (glutamine-hydrolyzing) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.122249	0.46977	0.616198	0.126564	0.298849	0.890322
+GO:0003924	GTPase activity	molecular_function	Clostridium	Clostridium thermocellum	91.2264	448.433	297.561	1621.13	1364.53	1261.36
+GO:0003924	GTPase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	414.785	372.913	315.105	395.09	474.382	398.036
+GO:0003924	GTPase activity	molecular_function	Escherichia	Escherichia coli	0.619389	0	0.12711	0	0	0.410316
+GO:0003924	GTPase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	9.81184	12.6318	10.4115	6.31087	3.93702	7.44855
+GO:0003933	GTP cyclohydrolase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0602254	0	0.0558868	0.614964	0.671163	0.801358
+GO:0003934	GTP cyclohydrolase I activity	molecular_function	Clostridium	Clostridium thermocellum	2.75064	26.1507	22.8737	59.1885	55.363	59.7911
+GO:0003934	GTP cyclohydrolase I activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	21.0869	27.9668	16.4539	22.0763	24.8876	25.081
+GO:0003935	GTP cyclohydrolase II activity	molecular_function	Clostridium	Clostridium thermocellum	2.5136	14.1421	9.7049	36.0382	30.5943	26.5774
+GO:0003937	IMP cyclohydrolase activity	molecular_function	Clostridium	Clostridium thermocellum	1.53247	2.87719	2.16578	36.1461	27.8234	16.8718
+GO:0003937	IMP cyclohydrolase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0520107	0	0	0	0	0
+GO:0003937	IMP cyclohydrolase activity	molecular_function	Escherichia	Escherichia coli	0.0337826	0	0	0	0	0
+GO:0003937	IMP cyclohydrolase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.158851	0	0	0.433461	0.188729	0
+GO:0003938	IMP dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	4.68312	31.4181	17.7155	99.2167	100.045	89.0826
+GO:0003938	IMP dehydrogenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	71.534	66.568	59.0969	42.1208	59.2179	36.5093
+GO:0003938	IMP dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0369179	0	0	0	0	0
+GO:0003938	IMP dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0745162	0.214605	0.449349	1.08578	0.133039	0.371444
+GO:0003939	L-iditol 2-dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	1.04194	14.1858	11.3134	21.2411	23.4366	38.7121
+GO:0003941	L-serine ammonia-lyase activity	molecular_function	Escherichia	Escherichia coli	0.311432	0	0.127967	0	0	0
+GO:0003942	N-acetyl-gamma-glutamyl-phosphate reductase activity	molecular_function	Clostridium	Clostridium thermocellum	2.68978	9.57094	10.6172	33.7309	29.9122	30.1183
+GO:0003942	N-acetyl-gamma-glutamyl-phosphate reductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.274417	0.316447	0.10176	0.224826	0.637198	0.219193
+GO:0003942	N-acetyl-gamma-glutamyl-phosphate reductase activity	molecular_function	Escherichia	Escherichia coli	0.0568472	0	0	0	0	0
+GO:0003942	N-acetyl-gamma-glutamyl-phosphate reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.301395	0.104409	0.756839	0.862297	0.295637	0.733446
+GO:0003949	1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase activity	molecular_function	Clostridium	Clostridium thermocellum	9.34921	15.2183	14.147	55.5637	53.1404	46.2995
+GO:0003949	1-(5-phosphoribosyl)-5-[(5-phosphoribosylamino)methylideneamino]imidazole-4-carboxamide isomerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.585427	0	1.31747	0.181523	0.405918
+GO:0003951	NAD+ kinase activity	molecular_function	Clostridium	Clostridium thermocellum	3.27337	43.3958	38.1945	99.6322	94.2849	136.194
+GO:0003951	NAD+ kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	34.3566	43.1891	33.5009	24.7099	33.9442	25.1287
+GO:0003951	NAD+ kinase activity	molecular_function	Escherichia	Escherichia coli	0.233368	0	0	0	0	0
+GO:0003951	NAD+ kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.207727	0.398826	0.192649	0.070855	0.15459	0
+GO:0003952	NAD+ synthase (glutamine-hydrolyzing) activity	molecular_function	Clostridium	Clostridium thermocellum	2.21493	7.67324	6.91007	20.1786	15.2167	15.9144
+GO:0003952	NAD+ synthase (glutamine-hydrolyzing) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	106.345	63.426	60.155	37.1686	45.6683	41.5932
+GO:0003952	NAD+ synthase (glutamine-hydrolyzing) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0720129	0.276494	0.801901	0.294711	0.160819	0.670579
+GO:0003954	NADH dehydrogenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.1208	53.0885	39.1071	15.0276	21.1058	31.5373
+GO:0003954	NADH dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0211688	0	0	0	0	0
+GO:0003957	NAD(P)+ transhydrogenase (B-specific) activity	molecular_function	Escherichia	Escherichia coli	0.0953691	0	0.07208	0	0	0.0517099
+GO:0003960	NADPH:quinone reductase activity	molecular_function	Escherichia	Escherichia coli	0.0582811	0	0	0	0	0
+GO:0003961	O-acetylhomoserine aminocarboxypropyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.46716	11.5092	9.78537	35.8223	26.6286	19.0933
+GO:0003962	cystathionine gamma-synthase activity	molecular_function	Escherichia	Escherichia coli	0.0480734	0	0	0	0	0
+GO:0003963	RNA-3'-phosphate cyclase activity	molecular_function	Escherichia	Escherichia coli	0.0560695	0	0	0	0	0.0371574
+GO:0003963	RNA-3'-phosphate cyclase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.224934	0.216099	0.208752	0.345421	0.175555	0.0748645
+GO:0003977	UDP-N-acetylglucosamine diphosphorylase activity	molecular_function	Clostridium	Clostridium thermocellum	6.26833	35.7007	27.2547	96.8199	94.1636	84.6506
+GO:0003977	UDP-N-acetylglucosamine diphosphorylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	17.0894	14.1176	12.1005	34.4997	35.4584	19.8786
+GO:0003977	UDP-N-acetylglucosamine diphosphorylase activity	molecular_function	Escherichia	Escherichia coli	0.019905	0	0.0738842	0	0	0
+GO:0003977	UDP-N-acetylglucosamine diphosphorylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.151609	0.166391	0.200994	0.15514	0.116067	0.172948
+GO:0003978	UDP-glucose 4-epimerase activity	molecular_function	Clostridium	Clostridium thermocellum	2.6548	27.3309	23.0112	46.6437	55.0428	57.194
+GO:0003978	UDP-glucose 4-epimerase activity	molecular_function	Escherichia	Escherichia coli	0.0280226	0	0	0	0	0
+GO:0003978	UDP-glucose 4-epimerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.117413	0.11267	0.108932	0.420429	0.104868	0.546495
+GO:0003979	UDP-glucose 6-dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	2.60525	8.90187	7.53177	29.0305	27.0512	28.6638
+GO:0003979	UDP-glucose 6-dehydrogenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0404176	0.0387858	0.149934	0.0619763	0.0541271	0.0537796
+GO:0003979	UDP-glucose 6-dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.143394	0	0	0	0	0.0636106
+GO:0003979	UDP-glucose 6-dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0636037	0.0813988	0.0787106	0.260141	0	0
+GO:0003983	UTP:glucose-1-phosphate uridylyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.00262	16.584	8.70638	40.1594	35.961	49.9037
+GO:0003983	UTP:glucose-1-phosphate uridylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0869269
+GO:0003983	UTP:glucose-1-phosphate uridylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.411541	1.18523	1.3379	0.63185	0.398466	0.410963
+GO:0003984	acetolactate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	12.3166	82.6134	56.7822	225.977	186.613	134.043
+GO:0003984	acetolactate synthase activity	molecular_function	Escherichia	Escherichia coli	0.128107	0	0	0	0	0
+GO:0003984	acetolactate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.10232	0.131013	0.205685	0.961728	0.287716	0.197397
+GO:0003985	acetyl-CoA C-acetyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	26.0275	2.18932	2.51143	2.25821	2.2474	1.51585
+GO:0003985	acetyl-CoA C-acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0471013	0	0	0	0	0.0626728
+GO:0003987	acetate-CoA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0624857	0	0	0	0	0
+GO:0003987	acetate-CoA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.321105	0.603863	0.128914	0.461639	0	0.431271
+GO:0003988	acetyl-CoA C-acyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0471013	0	0.0881829	0	0	0.0626728
+GO:0003989	acetyl-CoA carboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	2.82617	21.9157	7.62902	73.9833	56.342	36.5976
+GO:0003989	acetyl-CoA carboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	39.7308	24.1489	20.9167	25.6852	28.76	20.2805
+GO:0003989	acetyl-CoA carboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0405149	0	0.431307	0	0	0.0539089
+GO:0003991	acetylglutamate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	0.540085	2.86455	2.88893	11.9237	4.87905	5.78973
+GO:0003991	acetylglutamate kinase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.103581
+GO:0003991	acetylglutamate kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.331896	0.127419	0.184846	0.203761	0.237191	0.353367
+GO:0003992	N2-acetyl-L-ornithine:2-oxoglutarate 5-aminotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.22298	3.18963	1.49848	18.1541	7.37558	5.86201
+GO:0003992	N2-acetyl-L-ornithine:2-oxoglutarate 5-aminotransferase activity	molecular_function	Escherichia	Escherichia coli	0.0217764	0	0.079748	0	0	0
+GO:0003992	N2-acetyl-L-ornithine:2-oxoglutarate 5-aminotransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.118774	0.319248	0.264549	0.170087	0.212016	0.56897
+GO:0003993	acid phosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	20.2842	21.6924	22.903	67.0532	58.2092	73.6737
+GO:0003993	acid phosphatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.114674
+GO:0003994	aconitate hydratase activity	molecular_function	Clostridium	Clostridium thermocellum	1.10559	12.6957	13.5628	26.4564	26.7358	26.7353
+GO:0003994	aconitate hydratase activity	molecular_function	Escherichia	Escherichia coli	0.00991605	0	0	0	0	0
+GO:0003995	acyl-CoA dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.178829	0	0.0908442	0	0	0.315563
+GO:0003999	adenine phosphoribosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	5.3083	25.8836	13.0491	63.7916	59.4961	59.5095
+GO:0003999	adenine phosphoribosyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	82.9271	58.608	43.511	37.0193	45.5653	50.1944
+GO:0003999	adenine phosphoribosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.224404	0	0	0
+GO:0004000	adenosine deaminase activity	molecular_function	Escherichia	Escherichia coli	0.028533	0	0	0	0	0
+GO:0004003	ATP-dependent DNA helicase activity	molecular_function	Clostridium	Clostridium thermocellum	8.84993	39.5339	36.4808	92.6987	88.1387	100.731
+GO:0004003	ATP-dependent DNA helicase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	12.2596	9.9679	9.19547	12.8521	13.1056	10.1141
+GO:0004003	ATP-dependent DNA helicase activity	molecular_function	Escherichia	Escherichia coli	0.170104	0	0.269691	0	0	0.0384186
+GO:0004003	ATP-dependent DNA helicase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.076655	0.0736043	0	0.117685	0.0456412	0.136017
+GO:0004004	ATP-dependent RNA helicase activity	molecular_function	Escherichia	Escherichia coli	0.160625	0	0.14619	0	0	0.1496
+GO:0004008	copper-exporting ATPase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	15.9607	6.2729799999999996	12.8348	2.63258	3.93105	6.52706
+GO:0004013	adenosylhomocysteinase activity	molecular_function	Clostridium	Clostridium thermocellum	4.23802	22.4967	18.8175	78.4721	77.705	67.3157
+GO:0004013	adenosylhomocysteinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.9332	21.8965	19.3373	29.1334	37.6344	21.9112
+GO:0004013	adenosylhomocysteinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.169052	0.0817327	0.315378	0.196498	0.263659
+GO:0004014	adenosylmethionine decarboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	17.8211	150.459	93.7517	655.139	644.823	950.994
+GO:0004014	adenosylmethionine decarboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	91.4887	110.189	143.464	72.4909	93.239	81.7297
+GO:0004014	adenosylmethionine decarboxylase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0699148	0	0	0.0501253
+GO:0004015	adenosylmethionine-8-amino-7-oxononanoate transaminase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0595449	0.0762647	0.405281	0.710987	0.726831	0.501964
+GO:0004015	adenosylmethionine-8-amino-7-oxononanoate transaminase activity	molecular_function	Escherichia	Escherichia coli	0.0448653	0	0.0833114	0	0	0
+GO:0004016	adenylate cyclase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0269706
+GO:0004017	adenylate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	4.57971	10.556	6.43956	78.6257	34.4591	32.6999
+GO:0004017	adenylate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	48.9564	13.5506	11.9735	20.7761	29.4811	23.4327
+GO:0004017	adenylate kinase activity	molecular_function	Escherichia	Escherichia coli	0.147307	0	0	0	0	0
+GO:0004017	adenylate kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.22209	0	1.10759	0.351738	0.366345	0.880976
+GO:0004018	N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity	molecular_function	Clostridium	Clostridium thermocellum	2.56609	19.096	13.0901	53.6147	49.7911	53.0492
+GO:0004018	N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	4.73713	3.81776	2.90485	3.76601	3.22935	2.67336
+GO:0004018	N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity	molecular_function	Escherichia	Escherichia coli	0.03981	0	0	0	0	0
+GO:0004018	N6-(1,2-dicarboxyethyl)AMP AMP-lyase (fumarate-forming) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.121496	0.350005	0.563694	0.559503	0.14465	0.107786
+GO:0004019	adenylosuccinate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	3.47798	25.0905	23.5623	91.833	104.184	82.8417
+GO:0004019	adenylosuccinate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	28.881	17.4687	14.6117	19.1518	24.4513	19.9258
+GO:0004019	adenylosuccinate synthase activity	molecular_function	Escherichia	Escherichia coli	0.0634579	0	0	0	0	0
+GO:0004019	adenylosuccinate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.167042	0.107163	0.774972	1.16755	0.6956	1.11123
+GO:0004020	adenylylsulfate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	0.117826	27.1204	16.2624	73.8219	53.4032	41.2491
+GO:0004020	adenylylsulfate kinase activity	molecular_function	Escherichia	Escherichia coli	0.108032	0	0	0	0	0
+GO:0004021	L-alanine:2-oxoglutarate aminotransferase activity	molecular_function	Escherichia	Escherichia coli	0.0446465	0	0	0	0	0
+GO:0004022	alcohol dehydrogenase (NAD) activity	molecular_function	Clostridium	Clostridium thermocellum	0.658664	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0004022	alcohol dehydrogenase (NAD) activity	molecular_function	Escherichia	Escherichia coli	0.0920395	0	0.0900323	0	0	0
+GO:0004029	aldehyde dehydrogenase (NAD) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.8536	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0004029	aldehyde dehydrogenase (NAD) activity	molecular_function	Escherichia	Escherichia coli	0.348447	0	0.200453	0	0	0
+GO:0004030	aldehyde dehydrogenase [NAD(P)+] activity	molecular_function	Clostridium	Clostridium thermocellum	0.229819	2.94146	1.49279	7.42607	6.99288	7.20601
+GO:0004033	aldo-keto reductase (NADP) activity	molecular_function	Escherichia	Escherichia coli	0.0585242	0	0	0	0	0.114189
+GO:0004034	aldose 1-epimerase activity	molecular_function	Escherichia	Escherichia coli	0.0545626	0	0	0	0	0
+GO:0004038	allantoinase activity	molecular_function	Escherichia	Escherichia coli	0.0191516	0	0	0	0	0.0947853
+GO:0004040	amidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.61867	0.933472	0.451064	0.0826185	0.144693	0
+GO:0004040	amidase activity	molecular_function	Escherichia	Escherichia coli	0.069461	0	0.386697	0	0	0.0478939
+GO:0004042	acetyl-CoA:L-glutamate N-acetyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.01251	3.48787	2.17638	14.6388	12.8624	11.5721
+GO:0004042	acetyl-CoA:L-glutamate N-acetyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0917964	0.661038	0.553229	0.375812	0.122947	0.427488
+GO:0004044	amidophosphoribosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.51317	2.48047	0.993152	14.8184	20.047	15.0013
+GO:0004044	amidophosphoribosyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.168962	0.215445	0.174381	0.115397	0.268508	0.325038
+GO:0004044	amidophosphoribosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0710651	0	0	0	0	0
+GO:0004044	amidophosphoribosyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.114351	0	0.141499	0.175533	0.0340519	0.0760934
+GO:0004045	aminoacyl-tRNA hydrolase activity	molecular_function	Clostridium	Clostridium thermocellum	1.21345	6.76945	3.54229	13.4902	13.2259	14.2407
+GO:0004045	aminoacyl-tRNA hydrolase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5.15117	7.60504	6.4982	7.70994	8.85166	7.6867
+GO:0004047	aminomethyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	124.331	83.1919	115.231	65.8005	80.3797	46.756100000000004
+GO:0004048	anthranilate phosphoribosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.52973	28.3747	61.0337	96.7238	64.2943	66.0053
+GO:0004048	anthranilate phosphoribosyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.801937	0.102682	0	0.246214	0.119388	1.10276
+GO:0004049	anthranilate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	1.0371	8.84292	23.4419	51.5684	39.9127	91.704
+GO:0004049	anthranilate synthase activity	molecular_function	Escherichia	Escherichia coli	0.0925498	0	0	0	0	0
+GO:0004049	anthranilate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.422526	0	0.0724408	0	0.0840771	0.510275
+GO:0004055	argininosuccinate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	0.842014	1.79147	1.39365	14.9205	6.33647	8.23416
+GO:0004055	argininosuccinate synthase activity	molecular_function	Escherichia	Escherichia coli	0.101785	0	0.0755531	0	0	0
+GO:0004055	argininosuccinate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.231375	0.666779	0.171855	0.378971	0.082623	0.307996
+GO:0004056	argininosuccinate lyase activity	molecular_function	Clostridium	Clostridium thermocellum	1.62409	2.70049	1.06591	12.8661	7.55014	6.66527
+GO:0004056	argininosuccinate lyase activity	molecular_function	Escherichia	Escherichia coli	0.0198564	0	0	0	0	0
+GO:0004056	argininosuccinate lyase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.193217	0.185668	0.179343	0.197842	0.120864	0.0257418
+GO:0004061	arylformamidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	15.5656	12.5449	8.71175	11.5431	10.73	8.61288
+GO:0004061	arylformamidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.320352	0.531379	0.222735	0.184064	0.107169	0.319411
+GO:0004065	arylsulfatase activity	molecular_function	Escherichia	Escherichia coli	0.0322758	0	0.0299506	0	0	0
+GO:0004066	asparagine synthase (glutamine-hydrolyzing) activity	molecular_function	Clostridium	Clostridium thermocellum	0.0574548	0.220626	0.106631	0.26422	0.205223	0.324909
+GO:0004066	asparagine synthase (glutamine-hydrolyzing) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0771897	0.074071	0.286425	0.176802	0.0344425	0.256641
+GO:0004067	asparaginase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	29.5423	18.0342	17.5276	4.73572	8.79582	14.1388
+GO:0004067	asparaginase activity	molecular_function	Escherichia	Escherichia coli	0.195113	0	0.105549	0	0	0.0360579
+GO:0004067	asparaginase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.230816	0.0805587	0	0.128802	0.0562323	0.0837254
+GO:0004068	aspartate 1-decarboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	2.52193	14.4972	11.4945	32.9542	31.4178	34.2164
+GO:0004068	aspartate 1-decarboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	29.9563	26.9304	27.2579	21.9174	19.4253	18.9558
+GO:0004068	aspartate 1-decarboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0258109	0.148609	0	0.369296	0.115025	0
+GO:0004069	L-aspartate:2-oxoglutarate aminotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.304384	15.5106	12.4246	54.3206	58.0849	85.4305
+GO:0004069	L-aspartate:2-oxoglutarate aminotransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	50.0765	13.7323	32.6144	4.60319	5.75173	6.46044
+GO:0004069	L-aspartate:2-oxoglutarate aminotransferase activity	molecular_function	Escherichia	Escherichia coli	0.0466881	0	0	0	0	0
+GO:0004069	L-aspartate:2-oxoglutarate aminotransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0498233	0.0956809	0.138792	0.561145	0.133625	0.0995068
+GO:0004070	aspartate carbamoyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.431203	4.66759	5.1447	9.77018	11.9337	15.5682
+GO:0004070	aspartate carbamoyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.8177	1.71465	2.95952	0.522123	0.484192	0.339526
+GO:0004070	aspartate carbamoyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.217157	0	0	0	0	0
+GO:0004070	aspartate carbamoyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.123222	0.0591355	0.171494	0.0630458	0.10999	0.245873
+GO:0004071	aspartate-ammonia ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.00423	11.0108	9.29827	27.4214	27.3095	32.9501
+GO:0004071	aspartate-ammonia ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	9.43158	29.0199	18.8658	23.913	24.1686	9.43613
+GO:0004071	aspartate-ammonia ligase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.452292
+GO:0004072	aspartate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	1.41736	14.388	11.0114	56.7087	52.8687	48.2522
+GO:0004072	aspartate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0405149	0.155563	0.225261	0.0414585	0.253186	0.134724
+GO:0004072	aspartate kinase activity	molecular_function	Escherichia	Escherichia coli	0.103535	0	0.0395132	0	0	0
+GO:0004072	aspartate kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.113476	0.392152	0.421158	0.4643	0.121623	0.422508
+GO:0004073	aspartate-semialdehyde dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	2.11693	7.52813	8.59258	20.3668	24.8744	25.0777
+GO:0004073	aspartate-semialdehyde dehydrogenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.274417	0.316447	0.10176	0.224826	0.637198	0.219193
+GO:0004073	aspartate-semialdehyde dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.244572	0.104409	0.756839	0.862297	0.194176	0.506492
+GO:0004075	biotin carboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0405149	0	0.150294	0	0	0.0539089
+GO:0004075	biotin carboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.183277	0.175073	0.272127	0.262579	0.130934	0.292602
+GO:0004076	biotin synthase activity	molecular_function	Clostridium	Clostridium thermocellum	0.059788	0.287043	0.219803	0.64155	0.879272	1.82951
+GO:0004077	biotin-[acetyl-CoA-carboxylase] ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	114.816	175.867	339.038	76.677	89.1209	71.4393
+GO:0004077	biotin-[acetyl-CoA-carboxylase] ligase activity	molecular_function	Escherichia	Escherichia coli	0.178999	0	0	0	0	0
+GO:0004077	biotin-[acetyl-CoA-carboxylase] ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.229212	0.51369	0.424992	0.70375	0.409274	0.101706
+GO:0004088	carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity	molecular_function	Clostridium	Clostridium thermocellum	2.04589	9.22471	6.84268	32.5625	32.4153	26.6028
+GO:0004088	carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity	molecular_function	Escherichia	Escherichia coli	0.0316439	0	0.0586834	0	0	0
+GO:0004088	carbamoyl-phosphate synthase (glutamine-hydrolyzing) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.089682	0.382817	0	0.166978	0.199775	0.78784
+GO:0004089	carbonate dehydratase activity	molecular_function	Escherichia	Escherichia coli	0.189401	0	0.176005	0	0	0
+GO:0004089	carbonate dehydratase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.229307	0.236763	0.392003	0.113919	0.848346
+GO:0004096	catalase activity	molecular_function	Escherichia	Escherichia coli	0.0460319	0	0	0	0	0
+GO:0004106	chorismate mutase activity	molecular_function	Escherichia	Escherichia coli	0.0721101	0	0	0	0	0
+GO:0004106	chorismate mutase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.16534	0	0.306859	0	0.420168	0.432759
+GO:0004107	chorismate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	5.75051	25.0653	17.4271	71.0047	56.8645	73.0903
+GO:0004107	chorismate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.821817	1.10047	0.647006	0.841605	0.222477	0.431142
+GO:0004108	citrate (Si)-synthase activity	molecular_function	Escherichia	Escherichia coli	0.0206827	0	0	0	0	0
+GO:0004109	coproporphyrinogen oxidase activity	molecular_function	Clostridium	Clostridium thermocellum	0.562736	5.12201	2.95248	9.71208	10.8358	8.56095
+GO:0004109	coproporphyrinogen oxidase activity	molecular_function	Escherichia	Escherichia coli	0.0323973	0	0.0368519	0	0	0
+GO:0004112	cyclic-nucleotide phosphodiesterase activity	molecular_function	Escherichia	Escherichia coli	0.04924	0	0.049932699999999997	0	0	0
+GO:0004113	2',3'-cyclic-nucleotide 3'-phosphodiesterase activity	molecular_function	Clostridium	Clostridium thermocellum	2.05304	14.8595	15.0335	28.6236	25.8995	31.0351
+GO:0004113	2',3'-cyclic-nucleotide 3'-phosphodiesterase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	9.57913	6.22052	4.92814	6.42321	4.33271	8.69916
+GO:0004113	2',3'-cyclic-nucleotide 3'-phosphodiesterase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.718792	0.460995	0.222735	0.429706	0	0
+GO:0004121	cystathionine beta-lyase activity	molecular_function	Escherichia	Escherichia coli	0.0234048	0	0.0854314	0	0	0
+GO:0004124	cysteine synthase activity	molecular_function	Clostridium	Clostridium thermocellum	7.50952	930.533	633.388	1444.67	1267.68	1095.07
+GO:0004124	cysteine synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6.37537	20.7263	18.0253	14.2907	15.7527	11.2618
+GO:0004124	cysteine synthase activity	molecular_function	Escherichia	Escherichia coli	0.0662285	0	0.109744	0	0	0
+GO:0004125	L-seryl-tRNASec selenium transferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	14.0747	16.9223	13.8159	13.3391	14.8082	17.0092
+GO:0004125	L-seryl-tRNASec selenium transferase activity	molecular_function	Escherichia	Escherichia coli	0.0976294	0	0	0	0	0
+GO:0004126	cytidine deaminase activity	molecular_function	Clostridium	Clostridium thermocellum	5.42019	15.356	8.18067	52.5126	48.2299	47.6837
+GO:0004126	cytidine deaminase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5.32507	6.71358	4.44036	6.02628	7.87614	12.1276
+GO:0004127	cytidylate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	6.82242	51.3493	27.5884	104.762	118.867	125.629
+GO:0004127	cytidylate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	22.2649	18.5374	13.7887	25.9076	30.2487	22.0955
+GO:0004127	cytidylate kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0723289	0.138901	0	0.740408	0.38718	0.77083
+GO:0004129	cytochrome-c oxidase activity	molecular_function	Escherichia	Escherichia coli	0.196595	0	0	0	0	0
+GO:0004130	cytochrome-c peroxidase activity	molecular_function	Escherichia	Escherichia coli	0.198613	0	0.071674	0	0	0
+GO:0004133	glycogen debranching enzyme activity	molecular_function	Escherichia	Escherichia coli	0.079936	0	0.148355	0	0	0
+GO:0004134	4-alpha-glucanotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.08846	8.18431	6.03654	29.6421	28.7723	30.4393
+GO:0004134	4-alpha-glucanotransferase activity	molecular_function	Escherichia	Escherichia coli	0.0251304	0	0	0	0	0
+GO:0004135	amylo-alpha-1,6-glucosidase activity	molecular_function	Clostridium	Clostridium thermocellum	1.08846	8.18431	6.03654	29.6421	28.7723	30.4393
+GO:0004139	deoxyribose-phosphate aldolase activity	molecular_function	Clostridium	Clostridium thermocellum	2.09353	22.1003	15.1099	60.3665	37.74	60.8098
+GO:0004139	deoxyribose-phosphate aldolase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	19.2405	14.345	7.7744	13.2134	16.1646	16.8584
+GO:0004139	deoxyribose-phosphate aldolase activity	molecular_function	Escherichia	Escherichia coli	0.0771654	0	0	0	0	0
+GO:0004139	deoxyribose-phosphate aldolase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.370175	0.347438	0.257738	0.142033	0.0826881	0.18514
+GO:0004140	dephospho-CoA kinase activity	molecular_function	Clostridium	Clostridium thermocellum	2.54852	12.0212	9.16164	26.7003	25.1749	24.24
+GO:0004140	dephospho-CoA kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	9.53013	6.91068	3.33331	8.45888	9.64143	9.6497
+GO:0004141	dethiobiotin synthase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0830956	0	0	0.339875	0.296787	0.663271
+GO:0004141	dethiobiotin synthase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.11836
+GO:0004146	dihydrofolate reductase activity	molecular_function	Clostridium	Clostridium thermocellum	4.66723	34.7584	21.8931	95.8256	97.9612	69.4259
+GO:0004148	dihydrolipoyl dehydrogenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.81986	2.76564	3.19249	2.90617	2.96503	2.71446
+GO:0004148	dihydrolipoyl dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0707719	0	0	0
+GO:0004149	dihydrolipoyllysine-residue succinyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	202.561	37.4275	53.072	10.7665	10.0237	12.0631
+GO:0004150	dihydroneopterin aldolase activity	molecular_function	Clostridium	Clostridium thermocellum	1.92063	7.73797	5.93419	21.7524	18.4385	14.4682
+GO:0004150	dihydroneopterin aldolase activity	molecular_function	Escherichia	Escherichia coli	0.221945	0	0	0	0	0
+GO:0004150	dihydroneopterin aldolase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.379456	1.09942	0.202194	0	0.262398
+GO:0004151	dihydroorotase activity	molecular_function	Clostridium	Clostridium thermocellum	1.30386	9.1113	8.84441	22.6345	29.5918	35.1093
+GO:0004151	dihydroorotase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.34572	1.02869	2.06898	0.776396	0.219221	0.0890936
+GO:0004151	dihydroorotase activity	molecular_function	Escherichia	Escherichia coli	0.054198	0	0	0	0	0
+GO:0004151	dihydroorotase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0200022	0.230381	0.222735	0.307022	0.0893075	0.319411
+GO:0004152	dihydroorotate dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	0.785021	5.36028	4.36413	21.353	15.7481	14.4096
+GO:0004152	dihydroorotate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0564583	0	0	0	0	0
+GO:0004152	dihydroorotate dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.159386	0.122518	0.118404	0.195778	0.113897	0.0848896
+GO:0004156	dihydropteroate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	3.17853	10.1689	6.98535	21.5581	22.3	22.5492
+GO:0004156	dihydropteroate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.40281	14.4801	9.31383	15.9327	17.7981	11.6153
+GO:0004156	dihydropteroate synthase activity	molecular_function	Escherichia	Escherichia coli	0.0695339	0	0	0	0	0
+GO:0004159	dihydrouracil dehydrogenase (NAD+) activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0414076	0	0	0.0593419
+GO:0004160	dihydroxy-acid dehydratase activity	molecular_function	Clostridium	Clostridium thermocellum	2.51826	20.572	13.8411	60.3785	49.4916	39.8605
+GO:0004160	dihydroxy-acid dehydratase activity	molecular_function	Escherichia	Escherichia coli	0.0267345	0	0	0	0	0
+GO:0004160	dihydroxy-acid dehydratase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.147283	0.989854	0.273344	0.583702	0.164334	0.465163
+GO:0004161	dimethylallyltranstransferase activity	molecular_function	Escherichia	Escherichia coli	0.129589	0	0	0	0	0
+GO:0004164	diphthine synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.139875	0	0	0.200404
+GO:0004165	dodecenoyl-CoA delta-isomerase activity	molecular_function	Escherichia	Escherichia coli	0.0357513	0	0	0	0	0.0158461
+GO:0004170	dUTP diphosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6.62402	13.6576	7.89036	6.861	7.59871	11.9597
+GO:0004170	dUTP diphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0786479	0	0	0	0	0
+GO:0004170	dUTP diphosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.159119	0.308093	0	0	0.143261	0
+GO:0004175	endopeptidase activity	molecular_function	Escherichia	Escherichia coli	0.203012	0	0	0	0	0.0379012
+GO:0004175	endopeptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.488463	0.781783	0.453319	0.166505	0.217876	1.0818
+GO:0004176	ATP-dependent peptidase activity	molecular_function	Clostridium	Clostridium thermocellum	4.95467	17.5277	18.7012	53.4906	45.2308	49.6649
+GO:0004176	ATP-dependent peptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	14.3745	14.8853	9.86895	18.6179	26.4482	29.9665
+GO:0004176	ATP-dependent peptidase activity	molecular_function	Escherichia	Escherichia coli	0.585874	0	0.60456	0	0	0.0471824
+GO:0004176	ATP-dependent peptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.613459	1.5799	1.39239	0.716359	0.489531	1.12297
+GO:0004177	aminopeptidase activity	molecular_function	Clostridium	Clostridium thermocellum	6.52338	33.8588	27.6728	99.6169	87.4209	80.2233
+GO:0004177	aminopeptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	32.3144	39.9123	41.5584	47.7174	50.0259	34.6273
+GO:0004177	aminopeptidase activity	molecular_function	Escherichia	Escherichia coli	0.194821	0	0.371315	0	0	0
+GO:0004177	aminopeptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.110195	0.105762	0.102301	0.366511	0.196759	0.733058
+GO:0004180	carboxypeptidase activity	molecular_function	Escherichia	Escherichia coli	0.0897063	0	0	0	0	0.0341175
+GO:0004181	metallocarboxypeptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	33.8926	23.6485	24.7139	38.9734	42.7442	26.4803
+GO:0004190	aspartic-type endopeptidase activity	molecular_function	Clostridium	Clostridium thermocellum	21.8414	96.3971	62.0178	368.632	291.859	289.646
+GO:0004190	aspartic-type endopeptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	104.23	59.6735	47.479	43.7817	52.6735	56.0565
+GO:0004190	aspartic-type endopeptidase activity	molecular_function	Escherichia	Escherichia coli	0.849645	0	0	0	0	0
+GO:0004190	aspartic-type endopeptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	3.07835	1.61271	5.19237	1.59216	2.42495	1.77107
+GO:0004222	metalloendopeptidase activity	molecular_function	Clostridium	Clostridium thermocellum	15.874	79.6823	65.1974	234.733	226.917	228.067
+GO:0004222	metalloendopeptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	280.168	233.463	295.625	157.125	171.002	163.369
+GO:0004222	metalloendopeptidase activity	molecular_function	Escherichia	Escherichia coli	0.29211	0	0.248852	0	0	0.0703371
+GO:0004222	metalloendopeptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	2.15421	1.34845	1.12676	3.13577	0.79921	4.04883
+GO:0004252	serine-type endopeptidase activity	molecular_function	Clostridium	Clostridium thermocellum	32.0261	257.514	160.382	614.062	532.614	748.355
+GO:0004252	serine-type endopeptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	495.191	371.733	627.56	174.649	233.427	174.943
+GO:0004252	serine-type endopeptidase activity	molecular_function	Escherichia	Escherichia coli	0.754325	0	0.272623	0	0	0.21971
+GO:0004252	serine-type endopeptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.613459	2.02283	2.14688	0.923179	0.541379	1.27752
+GO:0004298	threonine-type endopeptidase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0846632
+GO:0004298	threonine-type endopeptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.790368	1.07172	0.82689	0.629488	0.217876	1.14874
+GO:0004300	enoyl-CoA hydratase activity	molecular_function	Escherichia	Escherichia coli	0.0966572	0	0	0	0	0.0158461
+GO:0004309	exopolyphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0349249	0	0.0648178	0	0	0
+GO:0004314	[acyl-carrier-protein] S-malonyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	4.29596	11.3359	4.24667	85.2315	53.6559	45.0018
+GO:0004315	3-oxoacyl-[acyl-carrier-protein] synthase activity	molecular_function	Clostridium	Clostridium thermocellum	13.9962	56.5422	38.7914	236.158	186.647	180.736
+GO:0004315	3-oxoacyl-[acyl-carrier-protein] synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	44.1284	22.1086	22.0817	16.7251	18.9639	12.4709
+GO:0004316	3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity	molecular_function	Clostridium	Clostridium thermocellum	2.86256	6.83302	2.50403	67.1869	44.9456	42.0939
+GO:0004316	3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	121.523	15.1214	19.827	18.5345	28.8193	18.2567
+GO:0004316	3-oxoacyl-[acyl-carrier-protein] reductase (NADPH) activity	molecular_function	Escherichia	Escherichia coli	0	0	0.150204	0	0	0
+GO:0004318	enoyl-[acyl-carrier-protein] reductase (NADH) activity	molecular_function	Clostridium	Clostridium thermocellum	1.23664	9.73149	5.3981	27.9807	25.9851	38.4535
+GO:0004322	ferroxidase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.27587	0	0	0.197785
+GO:0004324	ferredoxin-NADP+ reductase activity	molecular_function	Escherichia	Escherichia coli	0.0814186	0	0.453319	0	0	0
+GO:0004325	ferrochelatase activity	molecular_function	Escherichia	Escherichia coli	0.119552	0	0	0	0	0
+GO:0004326	tetrahydrofolylpolyglutamate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	1.90938	12.2046	10.0561	43.7291	32.8488	33.8704
+GO:0004326	tetrahydrofolylpolyglutamate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	76.9235	54.7017	38.7805	48.2917	49.3431	42.4473
+GO:0004326	tetrahydrofolylpolyglutamate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.39985	0.994475	0.936498	0.632447	0.335809	0.891616
+GO:0004329	formate-tetrahydrofolate ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.90737	9.78498	7.73804	28.1126	23.9058	24.062
+GO:0004329	formate-tetrahydrofolate ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	116.739	31.9796	72.7909	21.6495	34.3175	33.1361
+GO:0004332	fructose-bisphosphate aldolase activity	molecular_function	Clostridium	Clostridium thermocellum	9.251	187.596	131.683	467.604	448.693	467.214
+GO:0004332	fructose-bisphosphate aldolase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	61.2687	66.3204	53.7575	64.3077	73.8739	48.3358
+GO:0004332	fructose-bisphosphate aldolase activity	molecular_function	Escherichia	Escherichia coli	0.0598123	0	0	0	0	0.0716306
+GO:0004333	fumarate hydratase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.06784	0	0	0.042752
+GO:0004337	geranyltranstransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.70006	13.6808	8.69064	41.837	38.7719	33.1491
+GO:0004337	geranyltranstransferase activity	molecular_function	Escherichia	Escherichia coli	0.129589	0	0	0	0	0
+GO:0004340	glucokinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	31.7165	38.3485	36.1946	39.8729	59.346	47.8904
+GO:0004340	glucokinase activity	molecular_function	Escherichia	Escherichia coli	0.187263	0	0.404198	0	0	0
+GO:0004342	glucosamine-6-phosphate deaminase activity	molecular_function	Escherichia	Escherichia coli	0.244256	0	0	0	0	0.0564314
+GO:0004345	glucose-6-phosphate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0366505	0	0.0680204	0	0	0
+GO:0004347	glucose-6-phosphate isomerase activity	molecular_function	Clostridium	Clostridium thermocellum	0.933883	12.0841	9.94279	33.4172	28.8943	27.7916
+GO:0004347	glucose-6-phosphate isomerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	103.329	36.5149	39.0852	43.9878	53.5191	43.192
+GO:0004348	glucosylceramidase activity	molecular_function	Clostridium	Clostridium thermocellum	1.10134	2.62324	4.47595	5.63485	5.90085	6.5278
+GO:0004349	glutamate 5-kinase activity	molecular_function	Clostridium	Clostridium thermocellum	1.34997	13.8472	9.75601	30.13	25.187	30.716
+GO:0004350	glutamate-5-semialdehyde dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	9.73207	35.5493	23.6101	77.5871	69.8801	71.8028
+GO:0004351	glutamate decarboxylase activity	molecular_function	Escherichia	Escherichia coli	0.27867	0	0	0	0	0.0517099
+GO:0004352	glutamate dehydrogenase (NAD+) activity	molecular_function	Clostridium	Clostridium thermocellum	4.32724	174.766	121.684	499.061	586.866	816.546
+GO:0004353	glutamate dehydrogenase [NAD(P)+] activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	21.4938	24.2408	42.0628	7.5644	12.1989	20.408
+GO:0004355	glutamate synthase (NADPH) activity	molecular_function	Clostridium	Clostridium thermocellum	0.0358485	4.2676	11.7037	15.034	23.2169	30.3742
+GO:0004355	glutamate synthase (NADPH) activity	molecular_function	Escherichia	Escherichia coli	0.0766064	0	0	0	0	0
+GO:0004355	glutamate synthase (NADPH) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.295076	0.463002	0.367572	1.10774	0.474339	0.297194
+GO:0004356	glutamate-ammonia ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.61341	25.5983	44.598	110.996	113.311	124.708
+GO:0004356	glutamate-ammonia ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	89.8945	66.5803	94.2909	35.8416	41.9936	38.8995
+GO:0004356	glutamate-ammonia ligase activity	molecular_function	Escherichia	Escherichia coli	0.212272	0	0	0	0	0
+GO:0004356	glutamate-ammonia ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.12344	0.0791584	0.229546	0.126465	0.0368081	0.164573
+GO:0004357	glutamate-cysteine ligase activity	molecular_function	Escherichia	Escherichia coli	0.0496775	0	0	0	0	0
+GO:0004358	glutamate N-acetyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.01251	3.48787	2.17638	14.6388	12.8624	11.5721
+GO:0004358	glutamate N-acetyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0917964	0.661038	0.553229	0.375812	0.122947	0.427488
+GO:0004359	glutaminase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.81992	2.297	3.14567	4.0931	4.72397	2.14135
+GO:0004359	glutaminase activity	molecular_function	Escherichia	Escherichia coli	0.0933519	0	0	0	0	0
+GO:0004359	glutaminase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.143807	1.02075	0.420797	1.67843	0.287976	1.1316
+GO:0004360	glutamine-fructose-6-phosphate transaminase (isomerizing) activity	molecular_function	Clostridium	Clostridium thermocellum	2.87425	5.07356	2.99064	34.4445	23.9786	17.6544
+GO:0004360	glutamine-fructose-6-phosphate transaminase (isomerizing) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.418	12.2322	8.50232	16.6672	18.6474	15.7124
+GO:0004360	glutamine-fructose-6-phosphate transaminase (isomerizing) activity	molecular_function	Escherichia	Escherichia coli	0.0289704	0	0	0	0	0
+GO:0004360	glutamine-fructose-6-phosphate transaminase (isomerizing) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.119795	0.431311	0.305731	0.612874	0.320878	0.91629
+GO:0004362	glutathione-disulfide reductase activity	molecular_function	Escherichia	Escherichia coli	0.0403933	0	0.0750119	0	0	0
+GO:0004363	glutathione synthase activity	molecular_function	Escherichia	Escherichia coli	0.0606872	0	0.338929	0	0	0
+GO:0004364	glutathione transferase activity	molecular_function	Escherichia	Escherichia coli	0.197665	0	0	0	0	0
+GO:0004365	glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity	molecular_function	Clostridium	Clostridium thermocellum	17.096	273.205	178.609	832.438	876.47	711.732
+GO:0004365	glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	72.3995	272.804	209.82	182.612	265.605	187.264
+GO:0004365	glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity	molecular_function	Escherichia	Escherichia coli	0.114545	0	0	0	0	0
+GO:0004365	glyceraldehyde-3-phosphate dehydrogenase (NAD+) (phosphorylating) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.280858	0.37815	0.41764	0.143899	0.226014	0.823283
+GO:0004367	glycerol-3-phosphate dehydrogenase [NAD+] activity	molecular_function	Clostridium	Clostridium thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0004367	glycerol-3-phosphate dehydrogenase [NAD+] activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0004370	glycerol kinase activity	molecular_function	Clostridium	Clostridium thermocellum	0.673538	4.71838	7.36433	1.45279	1.78719	2.7848
+GO:0004370	glycerol kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0004371	glycerone kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	44.0015	40.5883	39.0635	39.6642	46.5421	34.0083
+GO:0004371	glycerone kinase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0350877
+GO:0004372	glycine hydroxymethyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.54412	52.7806	35.9423	179.599	189.141	149.235
+GO:0004372	glycine hydroxymethyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	22.6804	11.9841	12.0337	8.85192	9.73997	6.94814
+GO:0004372	glycine hydroxymethyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.106889	0.164198	0.236042	0.436595	0.0381754	0.0853423
+GO:0004373	glycogen (starch) synthase activity	molecular_function	Clostridium	Clostridium thermocellum	3.25983	22.9129	16.1641	176.137	163.855	141.991
+GO:0004373	glycogen (starch) synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	25.1303	18.9059	16.8647	23.5169	27.9081	19.338
+GO:0004373	glycogen (starch) synthase activity	molecular_function	Escherichia	Escherichia coli	0.0567743	0	0	0	0	0
+GO:0004375	glycine dehydrogenase (decarboxylating) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	476.331	101.139	151.15	106.948	128.231	86.6769
+GO:0004385	guanylate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	6.36256	43.2792	39.5261	90.7204	102.094	88.9995
+GO:0004385	guanylate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6.54212	5.69572	8.38789	2.93569	5.3372	3.63437
+GO:0004386	helicase activity	molecular_function	Clostridium	Clostridium thermocellum	25.7281	56.9332	61.8204	146.024	134.366	154.195
+GO:0004386	helicase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	105.601	85.1105	86.6728	103.951	114.248	58.8483
+GO:0004386	helicase activity	molecular_function	Escherichia	Escherichia coli	0.155279	0	0.0812816	0	0	0
+GO:0004386	helicase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.695193	1.11107	0.67001	0.69517	0.403913	0.703759
+GO:0004399	histidinol dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	6.8615	3.66701	2.49149	5.92521	5.05713	9.77171
+GO:0004399	histidinol dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0420946	0	0	0	0	0
+GO:0004399	histidinol dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0644787	0	0.079748	0.0879905	0.0191854	0.257353
+GO:0004400	histidinol-phosphate transaminase activity	molecular_function	Clostridium	Clostridium thermocellum	4.56046	1.96286	3.3081	6.08756	5.57112	11.4018
+GO:0004400	histidinol-phosphate transaminase activity	molecular_function	Escherichia	Escherichia coli	0.0263942	0	0	0	0	0
+GO:0004400	histidinol-phosphate transaminase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0750023	0	0	0.204656	0.13395	0
+GO:0004401	histidinol-phosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	0.225031	10.0075	4.38492	23.3951	23.3628	20.5036
+GO:0004401	histidinol-phosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.5271	7.66759	4.65114	5.86783	5.8383	4.92968
+GO:0004401	histidinol-phosphatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0704018
+GO:0004410	homocitrate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.18198	0.0879123	0.242384	0.0846197	0
+GO:0004412	homoserine dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	2.21332	13.9762	11.2052	43.3594	50.9134	49.5504
+GO:0004412	homoserine dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0420217	0	0.0395132	0	0	0
+GO:0004412	homoserine dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.55282	0.38025	0.620257	0.26907	0.176814	0.670288
+GO:0004413	homoserine kinase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.115202	0	0	0
+GO:0004414	homoserine O-acetyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.120013	0.40284	0.333381	0.368252	0	0.239502
+GO:0004416	hydroxyacylglutathione hydrolase activity	molecular_function	Escherichia	Escherichia coli	0.226611	0	0.148851	0	0	0
+GO:0004417	hydroxyethylthiazole kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0366505	0.0703838	0	0.0750332	0	0
+GO:0004418	hydroxymethylbilane synthase activity	molecular_function	Clostridium	Clostridium thermocellum	0.233319	3.13586	4.32944	6.23263	4.85062	5.67706
+GO:0004418	hydroxymethylbilane synthase activity	molecular_function	Escherichia	Escherichia coli	0.0613677	0	0.0569693	0	0	0
+GO:0004418	hydroxymethylbilane synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.129659	0	0.241738	0.241185	0.26948
+GO:0004420	hydroxymethylglutaryl-CoA reductase (NADPH) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0465666	0.357427	0	0.0476512	0.12349	0.0309807
+GO:0004421	hydroxymethylglutaryl-CoA synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.189037	0.259319	0	0.193415	0.192787	0.215506
+GO:0004422	hypoxanthine phosphoribosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.33922	13.577	10.8916	51.0264	39.3707	68.6689
+GO:0004422	hypoxanthine phosphoribosyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.76042	9.12357	11.0711	12.0851	15.1185	13.2017
+GO:0004422	hypoxanthine phosphoribosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.125603	0	0.23311	0	0	0.309904
+GO:0004422	hypoxanthine phosphoribosyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.634761	0.307761	0.0564054	0.0984227	0
+GO:0004424	imidazoleglycerol-phosphate dehydratase activity	molecular_function	Clostridium	Clostridium thermocellum	4.49285	14.2685	9.9759	44.5942	43.9294	63.3729
+GO:0004424	imidazoleglycerol-phosphate dehydratase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0704018
+GO:0004424	imidazoleglycerol-phosphate dehydratase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.121538	0	0.452213	0	0.414617
+GO:0004425	indole-3-glycerol-phosphate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	2.57266	24.0192	61.392	115.516	61.6443	41.812
+GO:0004425	indole-3-glycerol-phosphate synthase activity	molecular_function	Escherichia	Escherichia coli	0.0401989	0	0.403341	0	0	0
+GO:0004425	indole-3-glycerol-phosphate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.254245	0	0	0.297397	0.0648917	0.0966933
+GO:0004427	inorganic diphosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	350.8	83.2577	135.248	37.9121	46.7459	53.6946
+GO:0004427	inorganic diphosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.122518	0	0.19547900000000001	0.170889	0.169747
+GO:0004450	isocitrate dehydrogenase (NADP+) activity	molecular_function	Clostridium	Clostridium thermocellum	2.4552	47.411	32.8214	119.773	121.21	121.8
+GO:0004450	isocitrate dehydrogenase (NADP+) activity	molecular_function	Escherichia	Escherichia coli	0.301249	0	0	0	0	0
+GO:0004452	isopentenyl-diphosphate delta-isomerase activity	molecular_function	Escherichia	Escherichia coli	0.121836	0	0	0	0	0
+GO:0004452	isopentenyl-diphosphate delta-isomerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0.440599	0	0.071857
+GO:0004455	ketol-acid reductoisomerase activity	molecular_function	Clostridium	Clostridium thermocellum	5.22625	45.7734	22.807	155.133	139.625	109.7
+GO:0004455	ketol-acid reductoisomerase activity	molecular_function	Escherichia	Escherichia coli	0.0916506	0	0	0	0	0
+GO:0004455	ketol-acid reductoisomerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.256699	0.273834	0.529368	0.640953	0.433017	0.719961
+GO:0004457	lactate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.048681	0	0	0	0	0
+GO:0004459	L-lactate dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	3.46493	69.7876	42.5249	207.81	224.645	241.768
+GO:0004462	lactoylglutathione lyase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.198108
+GO:0004467	long-chain fatty acid-CoA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	1.50654	10.064	9.61261	31.4217	29.0526	26.3609
+GO:0004467	long-chain fatty acid-CoA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0334181	0	0	0	0	0
+GO:0004471	malate dehydrogenase (decarboxylating) (NAD+) activity	molecular_function	Clostridium	Clostridium thermocellum	3.60944	42.0489	25.6481	168.701	165.262	118.091
+GO:0004471	malate dehydrogenase (decarboxylating) (NAD+) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.7036	8.48671	7.60015	8.90226	8.78091	8.77558
+GO:0004471	malate dehydrogenase (decarboxylating) (NAD+) activity	molecular_function	Escherichia	Escherichia coli	0.0541008	0	0	0	0	0
+GO:0004473	malate dehydrogenase (decarboxylating) (NADP+) activity	molecular_function	Escherichia	Escherichia coli	0.0227	0	0	0	0	0
+GO:0004474	malate synthase activity	molecular_function	Escherichia	Escherichia coli	0.18194	0	0	0	0	0.0160078
+GO:0004476	mannose-6-phosphate isomerase activity	molecular_function	Clostridium	Clostridium thermocellum	0.206414	1.43657	1.96276	1.34644	1.35921	2.50581
+GO:0004476	mannose-6-phosphate isomerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	103.329	36.5149	39.0852	43.9878	53.5191	43.192
+GO:0004477	methenyltetrahydrofolate cyclohydrolase activity	molecular_function	Clostridium	Clostridium thermocellum	3.36373	25.4413	20.4405	67.1305	69.6195	82.2671
+GO:0004477	methenyltetrahydrofolate cyclohydrolase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	19.6246	15.6943	13.5065	11.7277	13.4742	12.471
+GO:0004477	methenyltetrahydrofolate cyclohydrolase activity	molecular_function	Escherichia	Escherichia coli	0.0648918	0	0	0	0	0
+GO:0004478	methionine adenosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.44273	25.2447	17.4504	80.409	108.614	87.4991
+GO:0004478	methionine adenosyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	27.8182	10.2815	7.51373	26.666	34.968	18.8696
+GO:0004478	methionine adenosyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.13462	0.215492	0.0833114	0.183691	0.320661	0.298617
+GO:0004479	methionyl-tRNA formyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.67234	8.05829	3.97437	21.9495	25.1216	21.5837
+GO:0004479	methionyl-tRNA formyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.0495	2.86697	1.65089	4.64895	5.52834	3.92817
+GO:0004479	methionyl-tRNA formyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.030453	0	0	0	0	0
+GO:0004488	methylenetetrahydrofolate dehydrogenase (NADP+) activity	molecular_function	Clostridium	Clostridium thermocellum	3.36373	25.4413	20.4405	67.1305	69.6195	82.2671
+GO:0004488	methylenetetrahydrofolate dehydrogenase (NADP+) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	10.1493	7.35935	4.96675	6.47417	8.13417	6.97611
+GO:0004488	methylenetetrahydrofolate dehydrogenase (NADP+) activity	molecular_function	Escherichia	Escherichia coli	0.0648918	0	0	0	0	0
+GO:0004489	methylenetetrahydrofolate reductase (NAD(P)H) activity	molecular_function	Clostridium	Clostridium thermocellum	1.57845	10.2468	7.60732	23.8811	24.2439	32.6953
+GO:0004489	methylenetetrahydrofolate reductase (NAD(P)H) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.722657	0.346785	0.335366	0.154046	0.484084	0.24044
+GO:0004489	methylenetetrahydrofolate reductase (NAD(P)H) activity	molecular_function	Escherichia	Escherichia coli	0.0654265	0	0.365136	0	0	0
+GO:0004492	methylmalonyl-CoA decarboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0764362	0	0	0	0	0
+GO:0004493	methylmalonyl-CoA epimerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.3162	8.23365	8.48653	14.4089	14.1878	7.84829
+GO:0004494	methylmalonyl-CoA mutase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	36.169	30.2736	36.8775	35.6744	41.2843	29.5255
+GO:0004494	methylmalonyl-CoA mutase activity	molecular_function	Escherichia	Escherichia coli	0.024377	0	0	0	0	0
+GO:0004496	mevalonate kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0638711	0	0	0.0326296	0.0569702	0
+GO:0004497	monooxygenase activity	molecular_function	Escherichia	Escherichia coli	0.0551702	0	0	0	0	0
+GO:0004512	inositol-3-phosphate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.152362	0.292504	0.471046	1.14353	0.702936	2.02296
+GO:0004514	nicotinate-nucleotide diphosphorylase (carboxylating) activity	molecular_function	Clostridium	Clostridium thermocellum	2.85405	9.54247	7.30985	28.0832	25.783	21.5468
+GO:0004514	nicotinate-nucleotide diphosphorylase (carboxylating) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	89.3657	60.1381	85.4022	59.323	66.2923	35.4696
+GO:0004514	nicotinate-nucleotide diphosphorylase (carboxylating) activity	molecular_function	Escherichia	Escherichia coli	0.111507	0	0	0	0	0.0614116
+GO:0004514	nicotinate-nucleotide diphosphorylase (carboxylating) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.140891	0.270474	1.04566	0.79286	0.597525	1.31196
+GO:0004515	nicotinate-nucleotide adenylyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.34085	20.9829	21.6321	36.9281	37.2437	53.7562
+GO:0004515	nicotinate-nucleotide adenylyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.82436	1.08143	1.04268	1.66978	1.50679	0.969682
+GO:0004516	nicotinate phosphoribosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.5758	3.20363	4.54108	9.51954	9.20165	8.45937
+GO:0004516	nicotinate phosphoribosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0461534	0	0	0	0	0.0614116
+GO:0004518	nuclease activity	molecular_function	Clostridium	Clostridium thermocellum	21.0796	51.9369	34.9582	173.701	134.793	129.926
+GO:0004518	nuclease activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	55.8066	40.5733	20.8201	50.4157	46.4035	50.3637
+GO:0004518	nuclease activity	molecular_function	Escherichia	Escherichia coli	0.098796	0	0	0	0	0.131458
+GO:0004518	nuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.387917	0.820709	0.32427	0.874657	0.261824	0.506459
+GO:0004519	endonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	17.8288	128.05	87.0348	232.783	205.035	246.972
+GO:0004519	endonuclease activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	29.5659	32.7569	26.7187	28.7994	36.2562	27.7007
+GO:0004519	endonuclease activity	molecular_function	Escherichia	Escherichia coli	14.215	0	19.0134	0	0	14.9181
+GO:0004519	endonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.507712	4.05309	2.5444	1.32391	1.07866	1.98554
+GO:0004520	endodeoxyribonuclease activity	molecular_function	Escherichia	Escherichia coli	0.117413	0	0	0	0	0
+GO:0004521	endoribonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	32.7334	113.255	88.1507	348.974	329.816	293.132
+GO:0004521	endoribonuclease activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	29.6697	20.4772	24.8957	11.9362	18.021	18.0653
+GO:0004521	endoribonuclease activity	molecular_function	Escherichia	Escherichia coli	1.1593	0	0.234914	0	0	0.336874
+GO:0004521	endoribonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.385778	0.370448	0.358009	0	0.694624	0
+GO:0004523	RNA-DNA hybrid ribonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	6.60254	42.4215	39.2954	125.812	115.846	91.043
+GO:0004523	RNA-DNA hybrid ribonuclease activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.3696	16.8787	7.154	15.0504	17.1981	11.483
+GO:0004523	RNA-DNA hybrid ribonuclease activity	molecular_function	Escherichia	Escherichia coli	0.108736	0	0	0	0	0
+GO:0004523	RNA-DNA hybrid ribonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.102879	0.197149	0.286516	0.686316	0.23029	0.411803
+GO:0004525	ribonuclease III activity	molecular_function	Clostridium	Clostridium thermocellum	4.14681	40.0227	24.6458	88.8496	77.3832	115.279
+GO:0004526	ribonuclease P activity	molecular_function	Clostridium	Clostridium thermocellum	7.86346	63.3051	50.074	182.415	160.09	200.806
+GO:0004526	ribonuclease P activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.77181	3.4195	3.27675	5.62935	1.25308	8.58045
+GO:0004527	exonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	0.786552	4.32842	5.81313	17.9185	10.1795	12.5853
+GO:0004527	exonuclease activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.5885	34.9914	35.9408	31.3281	39.4867	21.3861
+GO:0004527	exonuclease activity	molecular_function	Escherichia	Escherichia coli	0.0798631	0	0.0179072	0	0	0.0256771
+GO:0004527	exonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.40476	1.41314	0.770146	1.8231	0.971466	5.41185
+GO:0004530	deoxyribonuclease I activity	molecular_function	Escherichia	Escherichia coli	0.0871057	0	0	0	0	0.0579513
+GO:0004534	5'-3' exoribonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	0.768105	10.3592	7.48738	30.4662	30.5283	29.2001
+GO:0004534	5'-3' exoribonuclease activity	molecular_function	Escherichia	Escherichia coli	0	0	0.116555	0	0	0.0883498
+GO:0004540	ribonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	3.60021	22.6071	16.4999	76.4092	73.2016	75.4608
+GO:0004540	ribonuclease activity	molecular_function	Escherichia	Escherichia coli	0.109563	0	0	0	0	0.0979868
+GO:0004540	ribonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0	0	0.1767
+GO:0004549	tRNA-specific ribonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	3.09874	22.0906	19.5707	49.8565	44.7456	41.7264
+GO:0004549	tRNA-specific ribonuclease activity	molecular_function	Escherichia	Escherichia coli	0.171465	0	0	0	0	0
+GO:0004550	nucleoside diphosphate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	1.86167	12.8491	11.2268	58.815	46.6577	64.3269
+GO:0004550	nucleoside diphosphate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	161.758	282.441	228.356	175.603	195.079	248.125
+GO:0004550	nucleoside diphosphate kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.396861	0.152529	0.883498	0.485838	0.638087	0.949793
+GO:0004553	hydrolase activity, hydrolyzing O-glycosyl compounds	molecular_function	Clostridium	Clostridium thermocellum	243.578	426.5	408.561	1146.64	1087.85	1158.79
+GO:0004553	hydrolase activity, hydrolyzing O-glycosyl compounds	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	29.3339	38.3753	20.3505	25.8515	35.8054	29.1819
+GO:0004553	hydrolase activity, hydrolyzing O-glycosyl compounds	molecular_function	Escherichia	Escherichia coli	1.51076	0	2.38798	0	0	0.0514188
+GO:0004555	alpha,alpha-trehalase activity	molecular_function	Escherichia	Escherichia coli	0.0972162	0	0.222825	0	0	0
+GO:0004556	alpha-amylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	101.997	40.8794	52.5729	38.4827	41.8009	33.3908
+GO:0004556	alpha-amylase activity	molecular_function	Escherichia	Escherichia coli	0.104191	0	0.0487149	0	0	0
+GO:0004557	alpha-galactosidase activity	molecular_function	Escherichia	Escherichia coli	0.0402961	0	0	0	0	0
+GO:0004558	alpha-1,4-glucosidase activity	molecular_function	Escherichia	Escherichia coli	0.016867	0	0	0	0	0
+GO:0004559	alpha-mannosidase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0327593
+GO:0004563	beta-N-acetylhexosaminidase activity	molecular_function	Clostridium	Clostridium thermocellum	0.287104	1.96897	0.493599	4.28	4.08377	5.26529
+GO:0004563	beta-N-acetylhexosaminidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.15682	0.18156	0	0.0484221	0.16874	0
+GO:0004563	beta-N-acetylhexosaminidase activity	molecular_function	Escherichia	Escherichia coli	0.0554862	0	0	0	0	0
+GO:0004565	beta-galactosidase activity	molecular_function	Escherichia	Escherichia coli	2179.04	0	768.067	0	0	225.731
+GO:0004568	chitinase activity	molecular_function	Clostridium	Clostridium thermocellum	5.29947	8.80582	9.09723	23.3712	19.9315	20.0054
+GO:0004576	oligosaccharyl transferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.228774	0.391592	0.231305	0.153225	0.327671	0.202312
+GO:0004585	ornithine carbamoyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.50707	2.58642	1.39825	7.4204	5.77356	4.76255
+GO:0004585	ornithine carbamoyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	51.7953	16.3761	20.4556	20.6356	23.7289	14.788
+GO:0004585	ornithine carbamoyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.05675	0	0.0494366	0	0	0
+GO:0004585	ornithine carbamoyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.28934	0.24695	0.715838	0.19739399999999999	0.258373	0.598884
+GO:0004586	ornithine decarboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0726691	0	0.0220119	0	0	0
+GO:0004588	orotate phosphoribosyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5.1579	4.68626	2.36768	1.02219	2.77335	2.067
+GO:0004588	orotate phosphoribosyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.41646	2.8497	2.17534	1.8344	1.60022	1.31639
+GO:0004589	orotate reductase (NADH) activity	molecular_function	Clostridium	Clostridium thermocellum	0.785021	5.36028	4.36413	21.353	15.7481	14.4096
+GO:0004589	orotate reductase (NADH) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.159386	0.122518	0.118404	0.195778	0.113897	0.0848896
+GO:0004590	orotidine-5'-phosphate decarboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	0.427873	3.69296	2.61121	7.47407	12.7419	11.5439
+GO:0004590	orotidine-5'-phosphate decarboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.65496	0.502161	1.29126	0.534832	0.505483	0.811253
+GO:0004590	orotidine-5'-phosphate decarboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.226417	0.346785	0.0842136	0.835562	0.283353	0.512798
+GO:0004591	oxoglutarate dehydrogenase (succinyl-transferring) activity	molecular_function	Escherichia	Escherichia coli	0.00916263	0	0	0	0	0
+GO:0004592	pantoate-beta-alanine ligase activity	molecular_function	Clostridium	Clostridium thermocellum	4.14834	22.4429	12.4929	47.0788	46.2156	50.0343
+GO:0004592	pantoate-beta-alanine ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	28.1785	13.5293	17.686	16.3655	18.0141	13.8987
+GO:0004592	pantoate-beta-alanine ligase activity	molecular_function	Escherichia	Escherichia coli	0.0692422	0	0	0	0	0
+GO:0004594	pantothenate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	14.6644	93.1317	77.7649	208.36	193.382	177.128
+GO:0004594	pantothenate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	18.5659	13.794	9.32691	14.7015	16.0576	10.3332
+GO:0004594	pantothenate kinase activity	molecular_function	Escherichia	Escherichia coli	0.125117	0	0	0	0	0
+GO:0004595	pantetheine-phosphate adenylyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.35608	26.1485	22.2304	65.138	64.5237	83.1103
+GO:0004595	pantetheine-phosphate adenylyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	15.4902	56.2534	48.499	34.4354	37.4669	34.461
+GO:0004595	pantetheine-phosphate adenylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.681377	0	0	0
+GO:0004595	pantetheine-phosphate adenylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.127512	0.246461	0.407348	0.0592924	0.264823
+GO:0004596	peptide alpha-N-acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0736413	0	0.135454	0	0	0
+GO:0004601	peroxidase activity	molecular_function	Clostridium	Clostridium thermocellum	22.6348	216.426	161.484	605.149	432.637	705.98
+GO:0004601	peroxidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	260.486	574.494	494.362	378.685	526.602	516.122
+GO:0004601	peroxidase activity	molecular_function	Escherichia	Escherichia coli	0.313036	0	0.211143	0	0	0
+GO:0004604	phosphoadenylyl-sulfate reductase (thioredoxin) activity	molecular_function	Clostridium	Clostridium thermocellum	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0004605	phosphatidate cytidylyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	38.6834	30.7983	30.6151	37.2582	38.9489	27.505
+GO:0004605	phosphatidate cytidylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.323463	0	0	0	0	0
+GO:0004609	phosphatidylserine decarboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0296752	0	0	0	0	0
+GO:0004609	phosphatidylserine decarboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.35766	0.172802	0.19058	0.415611	0.803427
+GO:0004612	phosphoenolpyruvate carboxykinase (ATP) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	189.884	47.5127	106.482	7.40456	7.98654	10.4351
+GO:0004612	phosphoenolpyruvate carboxykinase (ATP) activity	molecular_function	Escherichia	Escherichia coli	0.0745648	0	0	0	0	0.0216994
+GO:0004613	phosphoenolpyruvate carboxykinase (GTP) activity	molecular_function	Clostridium	Clostridium thermocellum	3.81639	65.064	74.5875	230.114	193.526	182.721
+GO:0004614	phosphoglucomutase activity	molecular_function	Clostridium	Clostridium thermocellum	4.60829	38.8424	31.8566	98.9275	100.38	84.5695
+GO:0004615	phosphomannomutase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	17.8829	23.3093	38.9594	16.8403	20.9545	17.0455
+GO:0004615	phosphomannomutase activity	molecular_function	Escherichia	Escherichia coli	0.03981	0	0	0	0	0
+GO:0004615	phosphomannomutase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.219466	0.306412	0.222149	0.38785	0.213665	0.132719
+GO:0004616	phosphogluconate dehydrogenase (decarboxylating) activity	molecular_function	Escherichia	Escherichia coli	0.128496	0	0.118855	0	0	0
+GO:0004617	phosphoglycerate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0224326	0	0	0	0	0
+GO:0004617	phosphoglycerate dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.03405	0.326855	0.126027	0.191276	0.334051	0.724488
+GO:0004618	phosphoglycerate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	3.79131	58.1847	51.2642	168.02	174.865	180.172
+GO:0004618	phosphoglycerate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	111.779	217.204	256.907	182.841	228.413	77.4405
+GO:0004618	phosphoglycerate kinase activity	molecular_function	Escherichia	Escherichia coli	0.0239638	0	0	0	0	0
+GO:0004618	phosphoglycerate kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.604126	0.472757	0.498245	0.847126	0.139897	0.387129
+GO:0004619	phosphoglycerate mutase activity	molecular_function	Escherichia	Escherichia coli	0.0757071	0	0	0	0	0
+GO:0004622	lysophospholipase activity	molecular_function	Escherichia	Escherichia coli	0.0556806	0	0	0	0	0
+GO:0004632	phosphopantothenate--cysteine ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.40399	14.0103	9.51189	35.0685	35.422	28.2307
+GO:0004632	phosphopantothenate--cysteine ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.75624	4.16977	2.89714	3.77369	4.86838	3.58089
+GO:0004632	phosphopantothenate--cysteine ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.144245	0.461509	0.356881	0.318537	0.0643926	0.383798
+GO:0004633	phosphopantothenoylcysteine decarboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	2.40399	14.0103	9.51189	35.0685	35.422	28.2307
+GO:0004633	phosphopantothenoylcysteine decarboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.75624	4.16977	2.89714	3.77369	4.86838	3.58089
+GO:0004633	phosphopantothenoylcysteine decarboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.144245	0.461509	0.356881	0.318537	0.0643926	0.383798
+GO:0004634	phosphopyruvate hydratase activity	molecular_function	Clostridium	Clostridium thermocellum	3.85773	22.1513	21.5629	82.9536	74.2882	59.5495
+GO:0004634	phosphopyruvate hydratase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	45.8416	44.4224	44.6618	63.8743	66.3513	33.0344
+GO:0004634	phosphopyruvate hydratase activity	molecular_function	Escherichia	Escherichia coli	0.0423134	0	0	0	0	0
+GO:0004634	phosphopyruvate hydratase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0882966	0.0847593	0.245785	0.20289	0.137987	0.117487
+GO:0004635	phosphoribosyl-AMP cyclohydrolase activity	molecular_function	Clostridium	Clostridium thermocellum	5.16145	12.643	7.12207	41.9038	37.3034	32.0724
+GO:0004635	phosphoribosyl-AMP cyclohydrolase activity	molecular_function	Escherichia	Escherichia coli	0.105553	0	0	0	0	0
+GO:0004635	phosphoribosyl-AMP cyclohydrolase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.523771	0	0.744487	0.402264	0.484469
+GO:0004636	phosphoribosyl-ATP diphosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	5.16145	12.643	7.12207	41.9038	37.3034	32.0724
+GO:0004636	phosphoribosyl-ATP diphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.105553	0	0	0	0	0
+GO:0004636	phosphoribosyl-ATP diphosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.344729	0	0	0.176379	0	0
+GO:0004637	phosphoribosylamine-glycine ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.01403	3.10991	2.39668	42.2397	25.3504	20.3035
+GO:0004637	phosphoribosylamine-glycine ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.218907	0.0841058	0.325081	0.156781	0.136663	0.116549
+GO:0004637	phosphoribosylamine-glycine ligase activity	molecular_function	Escherichia	Escherichia coli	0.149227	0	0	0	0	0
+GO:0004637	phosphoribosylamine-glycine ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0992578	0.190708	0.662883	0.446991	0.265904	0.554806
+GO:0004638	phosphoribosylaminoimidazole carboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0529585	0	0.0982867	0	0	0
+GO:0004639	phosphoribosylaminoimidazolesuccinocarboxamide synthase activity	molecular_function	Clostridium	Clostridium thermocellum	5.4872	26.5875	18.6503	57.3266	73.4186	83.0339
+GO:0004639	phosphoribosylaminoimidazolesuccinocarboxamide synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.8198	8.56666	8.91942	10.4106	14.3067	6.56819
+GO:0004639	phosphoribosylaminoimidazolesuccinocarboxamide synthase activity	molecular_function	Escherichia	Escherichia coli	0.0430911	0	0	0	0	0
+GO:0004639	phosphoribosylaminoimidazolesuccinocarboxamide synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.312713	0	0.0832403	0.0727048	0
+GO:0004640	phosphoribosylanthranilate isomerase activity	molecular_function	Clostridium	Clostridium thermocellum	18.6339	91.8732	205.184	213.941	99.8994	113.607
+GO:0004640	phosphoribosylanthranilate isomerase activity	molecular_function	Escherichia	Escherichia coli	0.0401989	0	0.403341	0	0	0
+GO:0004640	phosphoribosylanthranilate isomerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.337267	0	0	0.215898	0	0.449058
+GO:0004641	phosphoribosylformylglycinamidine cyclo-ligase activity	molecular_function	Clostridium	Clostridium thermocellum	3.17338	8.07094	4.4925	73.8931	64.9073	47.4268
+GO:0004641	phosphoribosylformylglycinamidine cyclo-ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.168184	0	0	0.114751	0	0.149147
+GO:0004641	phosphoribosylformylglycinamidine cyclo-ligase activity	molecular_function	Escherichia	Escherichia coli	0.0273664	0	0	0	0	0
+GO:0004641	phosphoribosylformylglycinamidine cyclo-ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.0538147	0	0.172101	0	0.223785
+GO:0004642	phosphoribosylformylglycinamidine synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	40.0243	24.5918	29.3687	38.3741	50.1104	39.1429
+GO:0004642	phosphoribosylformylglycinamidine synthase activity	molecular_function	Escherichia	Escherichia coli	0.00651349	0	0	0	0	0
+GO:0004642	phosphoribosylformylglycinamidine synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.436088	2.51687	2.98446	0.386432	0.335809	0.664144
+GO:0004643	phosphoribosylaminoimidazolecarboxamide formyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.53247	2.87719	2.16578	36.1461	27.8234	16.8718
+GO:0004643	phosphoribosylaminoimidazolecarboxamide formyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0520107	0	0	0	0	0
+GO:0004643	phosphoribosylaminoimidazolecarboxamide formyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0337826	0	0	0	0	0
+GO:0004644	phosphoribosylglycinamide formyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.68215	4.85765	2.25058	51.3108	40.3012	35.0655
+GO:0004644	phosphoribosylglycinamide formyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.26297	0	0	0.124181
+GO:0004645	phosphorylase activity	molecular_function	Clostridium	Clostridium thermocellum	0.738284	1.98489	2.77977	9.99093	9.33907	7.15631
+GO:0004645	phosphorylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	30.5868	22.757	25.5162	24.0789	31.9322	18.0353
+GO:0004645	phosphorylase activity	molecular_function	Escherichia	Escherichia coli	0.0414384	0	0	0	0	0
+GO:0004647	phosphoserine phosphatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.11015	0	0	0.114674
+GO:0004647	phosphoserine phosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.145095	0.348792	0.269691	0.260216	0.388699	0.338362
+GO:0004648	O-phospho-L-serine:2-oxoglutarate aminotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.83627	38.8084	29.9703	82.1011	81.3638	64.717
+GO:0004648	O-phospho-L-serine:2-oxoglutarate aminotransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0959863	0	0	0
+GO:0004652	polynucleotide adenylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0742451	0	0	0
+GO:0004654	polyribonucleotide nucleotidyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.72492	16.2016	15.1478	61.5467	63.3508	61.82
+GO:0004654	polyribonucleotide nucleotidyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	32.5488	53.4827	41.7801	34.7674	39.6371	35.03
+GO:0004655	porphobilinogen synthase activity	molecular_function	Clostridium	Clostridium thermocellum	0.116975	17.2936	10.5792	18.964	18.7113	28.8204
+GO:0004655	porphobilinogen synthase activity	molecular_function	Escherichia	Escherichia coli	0.0294565	0	0.109338	0	0	0
+GO:0004655	porphobilinogen synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.434058	0	0.0522389	0.311359
+GO:0004657	proline dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.00636766	0	0	0	0	0
+GO:0004658	propionyl-CoA carboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	39.7308	24.1489	20.9167	25.6852	28.76	20.2805
+GO:0004659	prenyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.82448	14.6845	12.1855	34.2103	30.4807	42.2707
+GO:0004659	prenyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	55.5829	45.2354	39.5043	26.6307	28.8053	32.1429
+GO:0004659	prenyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.507663	0.578939	0.791662	0.65687	0.990868	0.760384
+GO:0004664	prephenate dehydratase activity	molecular_function	Clostridium	Clostridium thermocellum	1.98005	18.4487	13.3233	48.5815	38.0421	46.1078
+GO:0004664	prephenate dehydratase activity	molecular_function	Escherichia	Escherichia coli	0.0721101	0	0	0	0	0
+GO:0004664	prephenate dehydratase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0861822	0	0	0.176379	0	0
+GO:0004665	prephenate dehydrogenase (NADP+) activity	molecular_function	Clostridium	Clostridium thermocellum	3.38371	16.3874	12.5114	61.2005	62.8299	58.0045
+GO:0004665	prephenate dehydrogenase (NADP+) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.2427	0.544541	0.41349	0.496905	0.289343	0.565963
+GO:0004672	protein kinase activity	molecular_function	Clostridium	Clostridium thermocellum	7.45145	125.108	181.324	120.968	133.784	130.793
+GO:0004672	protein kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	75.0917	139.048	107.562	77.1771	113.396	139.174
+GO:0004672	protein kinase activity	molecular_function	Escherichia	Escherichia coli	0.251012	0	0.111052	0	0	0
+GO:0004672	protein kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.174041	0.243076	0	0.0485714	0.0282572	0.294187
+GO:0004673	protein histidine kinase activity	molecular_function	Clostridium	Clostridium thermocellum	6.39588	71.5724	51.717	237.038	215.67	195.354
+GO:0004673	protein histidine kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.7059	37.7065	30.1439	26.8137	59.6813	43.0816
+GO:0004673	protein histidine kinase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.287237	0	0	0.103032
+GO:0004674	protein serine/threonine kinase activity	molecular_function	Clostridium	Clostridium thermocellum	6.96112	35.6461	30.2686	102.969	97.4742	102.245
+GO:0004674	protein serine/threonine kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.3533	25.4559	20.4179	24.5232	34.2803	29.4076
+GO:0004674	protein serine/threonine kinase activity	molecular_function	Escherichia	Escherichia coli	0.356686	0	0.056834	0	0	0.0409087
+GO:0004674	protein serine/threonine kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.595862	0.470283	0.297116	0.691986	0.566707	0.558299
+GO:0004683	calmodulin-dependent protein kinase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0556077	0	0	0	0	0.0246746
+GO:0004712	protein serine/threonine/tyrosine kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.116927	0.192435	0.0620212	0.136711	0.178984	0.0888996
+GO:0004713	protein tyrosine kinase activity	molecular_function	Escherichia	Escherichia coli	0.0241339	0	0.0892204	0	0	0
+GO:0004715	non-membrane spanning protein tyrosine kinase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0810054	0.0778049	0.150339	0.41451	0.434058	1.2931
+GO:0004719	protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.150126	0	0	0	0	0
+GO:0004719	protein-L-isoaspartate (D-aspartate) O-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0482192	0	0.714034	0.19739399999999999	0.0430586	0
+GO:0004721	phosphoprotein phosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	25.0964	43.7269	34.3691	34.0487	43.6273	31.819
+GO:0004721	phosphoprotein phosphatase activity	molecular_function	Escherichia	Escherichia coli	0.472714	0	0.234779	0	0	0.0409087
+GO:0004722	protein serine/threonine phosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	4.93647	29.9201	30.9732	87.7261	84.643	86.1459
+GO:0004722	protein serine/threonine phosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	10.3109	17.9195	22.4086	8.36427	10.611	10.9722
+GO:0004725	protein tyrosine phosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	19.3853	70.367	65.5947	78.3262	101.396	112.694
+GO:0004725	protein tyrosine phosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0208286	0	0	0	0	0
+GO:0004725	protein tyrosine phosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.399656	0	0	0	0	0.266149
+GO:0004730	pseudouridylate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2.07992	3.38192	3.26796	1.73579	2.60042	1.87404
+GO:0004730	pseudouridylate synthase activity	molecular_function	Escherichia	Escherichia coli	0.0620482	0	0	0	0	0
+GO:0004731	purine-nucleoside phosphorylase activity	molecular_function	Clostridium	Clostridium thermocellum	1.72022	18.1692	10.3778	43.6338	44.313	48.9259
+GO:0004731	purine-nucleoside phosphorylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	28.585	20.7275	25.3295	20.3184	29.3266	23.5188
+GO:0004731	purine-nucleoside phosphorylase activity	molecular_function	Escherichia	Escherichia coli	0.0852829	0	0	0	0	0
+GO:0004733	pyridoxamine-phosphate oxidase activity	molecular_function	Clostridium	Clostridium thermocellum	5.39805	60.7914	55.4234	115.168	118.371	180.87
+GO:0004733	pyridoxamine-phosphate oxidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.502021	0.371225	0.753639	1.08491	1.39115
+GO:0004735	pyrroline-5-carboxylate reductase activity	molecular_function	Clostridium	Clostridium thermocellum	2.59103	20.7372	19.3588	49.6324	43.152	37.7646
+GO:0004735	pyrroline-5-carboxylate reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0397128	0	0.147272	0.162477	0.0709251	0.158525
+GO:0004736	pyruvate carboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.75758	6.23732	5.74456	5.50612	6.79375	4.79741
+GO:0004736	pyruvate carboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.214483	0.324848	0.387915	0.422295	0.22851	0.521044
+GO:0004739	pyruvate dehydrogenase (acetyl-transferring) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.98204	0	0	0.176379	0.10259	0
+GO:0004743	pyruvate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	82.4715	172.006	221.728	91.3702	114.013	90.918
+GO:0004746	riboflavin synthase activity	molecular_function	Clostridium	Clostridium thermocellum	1.34139	12.9787	6.66893	25.5426	23.7845	18.0357
+GO:0004746	riboflavin synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.448767	0.289132	0.637695	0.277797	0.829201
+GO:0004747	ribokinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.484137	1.66564	2.81522	0.0990826	0.4323	1.37424
+GO:0004747	ribokinase activity	molecular_function	Escherichia	Escherichia coli	0.276264	0	0	0	0	0.0783571
+GO:0004747	ribokinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.10464	0.913123	0.976913	1.40999	0.602386	1.25934
+GO:0004748	ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor	molecular_function	Clostridium	Clostridium thermocellum	4.8596	35.6615	27.4644	44.2686	37.3282	32.9128
+GO:0004748	ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	43.4601	12.68	12.8797	12.3158	13.8459	8.77247
+GO:0004748	ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor	molecular_function	Escherichia	Escherichia coli	0.17861	0	0.200498	0	0	0.0329857
+GO:0004748	ribonucleoside-diphosphate reductase activity, thioredoxin disulfide as acceptor	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0743218	0	0.137935	0	0.055299	0.0494138
+GO:0004749	ribose phosphate diphosphokinase activity	molecular_function	Clostridium	Clostridium thermocellum	7.68042	47.456	38.0977	129.847	130.084	128.96
+GO:0004749	ribose phosphate diphosphokinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	18.0708	16.0209	9.62597	23.7424	27.9475	19.6547
+GO:0004749	ribose phosphate diphosphokinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0685617	0.395372	0.191116	0.56194	0.0306445	0.548177
+GO:0004750	ribulose-phosphate 3-epimerase activity	molecular_function	Clostridium	Clostridium thermocellum	1.37374	14.2688	7.56172	54.0517	42.5857	66.3568
+GO:0004750	ribulose-phosphate 3-epimerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.83739	2.90795	0.790128	2.32528	3.97537	4.41161
+GO:0004750	ribulose-phosphate 3-epimerase activity	molecular_function	Escherichia	Escherichia coli	0.180992	0	0.0933701	0	0	0.1225
+GO:0004751	ribose-5-phosphate isomerase activity	molecular_function	Clostridium	Clostridium thermocellum	22.6719	98.7472	96.9038	224.296	228.218	292.399
+GO:0004751	ribose-5-phosphate isomerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	26.7488	25.4178	26.6931	25.5749	29.1205	24.0404
+GO:0004751	ribose-5-phosphate isomerase activity	molecular_function	Escherichia	Escherichia coli	0.0953205	0	0.300724	0	0	0
+GO:0004751	ribose-5-phosphate isomerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.366068	1.3183	1.01918	1.49649	0.69458	0.912054
+GO:0004756	selenide, water dikinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6.75728	11.4487	13.667	8.41754	10.591	12.1338
+GO:0004760	serine-pyruvate transaminase activity	molecular_function	Clostridium	Clostridium thermocellum	0.675045	12.1893	8.1666	8.05742	7.65503	4.29156
+GO:0004764	shikimate 3-dehydrogenase (NADP+) activity	molecular_function	Clostridium	Clostridium thermocellum	1.36543	6.36931	4.52466	37.8689	40.8847	40.2398
+GO:0004764	shikimate 3-dehydrogenase (NADP+) activity	molecular_function	Escherichia	Escherichia coli	0.214289	0	0	0	0	0
+GO:0004764	shikimate 3-dehydrogenase (NADP+) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.307155	1.98349	0.569964	0.0392948	0.171431	0.306379
+GO:0004765	shikimate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	7.3903	57.9144	28.3575	153.827	70.6191	273.484
+GO:0004765	shikimate kinase activity	molecular_function	Escherichia	Escherichia coli	0.130659	0	0	0	0	0
+GO:0004765	shikimate kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0337583	0.453761	0.563829	0.379866	0.18085	0.494074
+GO:0004766	spermidine synthase activity	molecular_function	Clostridium	Clostridium thermocellum	2.75926	18.0253	17.4834	48.3895	53.496	53.4748
+GO:0004766	spermidine synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	97.7919	83.4617	86.3589	70.7699	87.7041	54.3586
+GO:0004766	spermidine synthase activity	molecular_function	Escherichia	Escherichia coli	0.067784	0	0.125711	0	0	0.0451128
+GO:0004775	succinate-CoA ligase (ADP-forming) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.235458	0.0984813	0.0935055	0.094208	0.210171	0.0682351
+GO:0004777	succinate-semialdehyde dehydrogenase (NAD+) activity	molecular_function	Escherichia	Escherichia coli	0.0781861	0	0	0	0	0
+GO:0004781	sulfate adenylyltransferase (ATP) activity	molecular_function	Escherichia	Escherichia coli	0.178149	0	0	0	0	0
+GO:0004783	sulfite reductase (NADPH) activity	molecular_function	Escherichia	Escherichia coli	0.119503	0	0	0	0	0
+GO:0004784	superoxide dismutase activity	molecular_function	Clostridium	Clostridium thermocellum	0	0.178807	0	0	0.457259	0.12389
+GO:0004784	superoxide dismutase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.242492	0	0	0
+GO:0004784	superoxide dismutase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	4.87415	1.09744	1.63826	1.06317	0.695709	0.552348
+GO:0004788	thiamine diphosphokinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5.52963	3.21931	2.74946	2.52561	2.69027	2.35556
+GO:0004788	thiamine diphosphokinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.265619	0.339924	0.32851	0	0.11852	0.1767
+GO:0004789	thiamine-phosphate diphosphorylase activity	molecular_function	Clostridium	Clostridium thermocellum	0.131947	2.4821	6.56239	1.72748	2.12055	2.28183
+GO:0004789	thiamine-phosphate diphosphorylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.149932	0.0960543	0.185071	0	0	0.26602
+GO:0004789	thiamine-phosphate diphosphorylase activity	molecular_function	Escherichia	Escherichia coli	0.100108	0	0	0	0	0
+GO:0004789	thiamine-phosphate diphosphorylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.17251	0.551682	0	0.527918	0.205114	0.153254
+GO:0004791	thioredoxin-disulfide reductase activity	molecular_function	Clostridium	Clostridium thermocellum	3.34271	26.5836	22.3044	73.621	51.4425	40.9378
+GO:0004791	thioredoxin-disulfide reductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	60.5844	45.6812	40.6282	27.2136	35.3746	29.7026
+GO:0004791	thioredoxin-disulfide reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.127572	1.10196	0.532751	0.456765	0.427222	0.424383
+GO:0004792	thiosulfate sulfurtransferase activity	molecular_function	Escherichia	Escherichia coli	0.421918	0	0	0	0	0.173886
+GO:0004792	thiosulfate sulfurtransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.02534	2.16575	0	0	0	0
+GO:0004794	L-threonine ammonia-lyase activity	molecular_function	Escherichia	Escherichia coli	0.231423	0	0.0536766	0	0	0
+GO:0004795	threonine synthase activity	molecular_function	Clostridium	Clostridium thermocellum	9.68106	58.6653	53.2288	130.536	125.436	141.594
+GO:0004795	threonine synthase activity	molecular_function	Escherichia	Escherichia coli	0.0427508	0	0	0	0	0
+GO:0004795	threonine synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0907756	1.35027	0.631624	0.83581	0.648331	0.783345
+GO:0004797	thymidine kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	18.8045	14.4913	14.601	13.952	18.8738	12.0016
+GO:0004798	thymidylate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	1.85979	4.36492	5.40031	19.7196	19.5344	17.4885
+GO:0004798	thymidylate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6.01618	3.2385	4.17365	3.22284	2.45792	2.24471
+GO:0004798	thymidylate kinase activity	molecular_function	Escherichia	Escherichia coli	0.0986988	0	0	0	0	0
+GO:0004798	thymidylate kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.055875	0.42893	0.93298	0.457386	0.149685	1.03847
+GO:0004799	thymidylate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	4.20754	24.2485	18.8704	62.4472	63.5952	70.4747
+GO:0004799	thymidylate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.364099	1.92305	0.844391	0.372753	0.650436	0.54504
+GO:0004801	sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	135.437	314.936	341.745	128.573	149.254	152.303
+GO:0004801	sedoheptulose-7-phosphate:D-glyceraldehyde-3-phosphate glyceronetransferase activity	molecular_function	Escherichia	Escherichia coli	0.0604685	0	0	0	0	0
+GO:0004802	transketolase activity	molecular_function	Escherichia	Escherichia coli	0.0263942	0	0	0	0	0
+GO:0004803	transposase activity	molecular_function	Clostridium	Clostridium thermocellum	50.6674	207.17	179.61	328.57	308.305	326.202
+GO:0004803	transposase activity	molecular_function	Escherichia	Escherichia coli	7.92575	0	2.48347	0	0	0.887541
+GO:0004805	trehalose-phosphatase activity	molecular_function	Escherichia	Escherichia coli	0.159945	0	0	0	0	0
+GO:0004805	trehalose-phosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.217079	0.139198	0.0770476	0.0672356	0
+GO:0004807	triose-phosphate isomerase activity	molecular_function	Clostridium	Clostridium thermocellum	7.97827	104.076	77.7508	385.024	369.989	319.97
+GO:0004807	triose-phosphate isomerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	69.0326	107.358	122.921	115.124	93.868	41.6785
+GO:0004807	triose-phosphate isomerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.179947	0.688949	0	0.0920195	0.281335	0.359091
+GO:0004808	tRNA (5-methylaminomethyl-2-thiouridylate)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0261755	0	0	0	0	0
+GO:0004809	tRNA (guanine-N2-)-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.129638	0	1.08255	0.150216	0.181545	0.215377
+GO:0004810	tRNA adenylyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.60429	7.88873	6.48377	27.1068	28.7997	21.395
+GO:0004810	tRNA adenylyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.83085	2.93031	0.514844	1.9865	2.52672	1.4395
+GO:0004810	tRNA adenylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.122249	0.356213	0.552237	0.224105	0.257071	0.766173
+GO:0004812	aminoacyl-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	5.3624	18.1744	10.1945	34.178	28.4465	43.0052
+GO:0004812	aminoacyl-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	9.43158	29.0199	18.8658	23.913	24.1686	9.43613
+GO:0004812	aminoacyl-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.346163	0.238035	0.167751	0.112264	0.131476	0.194066
+GO:0004813	alanine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	5.49719	19.1865	11.5244	63.4788	64.6384	64.436
+GO:0004813	alanine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	33.666	44.1163	47.612	43.4753	62.2984	46.8456
+GO:0004813	alanine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0195891	0	0	0	0	0
+GO:0004814	arginine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	14.0925	38.9658	49.3593	83.7525	86.937	71.8438
+GO:0004814	arginine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	41.754	41.1333	32.755	51.7953	57.2362	34.3873
+GO:0004814	arginine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.076655	0	0	0	0	0
+GO:0004814	arginine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0792798	1.03517	0.646194	0.259569	0.184019	0.0843722
+GO:0004815	aspartate-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	22.0965	18.8049	20.9213	20.1682	21.0927	17.8676
+GO:0004815	aspartate-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0299426	0	0	0	0	0
+GO:0004815	aspartate-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0417544	0.0801853	0.154985	0.213386	0.0372856	0.138863
+GO:0004816	asparagine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.34199	16.3389	11.4461	45.0052	43.2546	38.7695
+GO:0004816	asparagine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	17.2449	20.8917	17.6842	13.8413	16.2779	15.6655
+GO:0004816	asparagine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0950045	0	0	0	0	0
+GO:0004817	cysteine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	1.56572	12.2106	8.96696	28.6586	23.4713	15.921
+GO:0004817	cysteine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.6957	7.68243	4.86418	7.07781	9.52005	7.78834
+GO:0004817	cysteine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.039324	0	0.036491	0	0	0.0523243
+GO:0004818	glutamate-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	4.28541	13.4853	13.6406	42.5905	41.3559	33.4363
+GO:0004818	glutamate-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	15.1668	7.405	5.89757	6.48456	9.30782	6.88159
+GO:0004818	glutamate-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0384004	0	0	0	0	0
+GO:0004818	glutamate-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0321543	0.308746	0.0596757	0	0.0574259	0
+GO:0004819	glutamine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.33414	19.5644	13.4457	57.1243	62.2455	49.6799
+GO:0004820	glycine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	4.03843	22.7861	16.3044	71.33	61.2833	62.8522
+GO:0004820	glycine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.6999	6.40707	6.34443	9.92818	11.3027	9.74119
+GO:0004820	glycine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.334229	0	0	0	0	0
+GO:0004820	glycine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.0904535	0.349394	0.176727	0.0701004	0.0835637
+GO:0004821	histidine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.63978	11.8759	8.04715	27.4492	23.7777	26.3258
+GO:0004821	histidine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.6129	19.4776	14.613	22.3125	23.2156	14.0687
+GO:0004821	histidine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0432126	0	0	0	0	0.0287493
+GO:0004821	histidine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.307325	0.866309	0.228328	0.209879	0.256377	0.327464
+GO:0004822	isoleucine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	55.1984	36.1391	27.3652	30.631	32.1575	26.0457
+GO:0004822	isoleucine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.00911402	0	0.0338298	0	0	0
+GO:0004822	isoleucine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0977023	0.156263	0.120885	0.13308	0.0581638	0.173336
+GO:0004823	leucine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	5.48015	36.422	27.236	91.0435	87.979	79.0557
+GO:0004823	leucine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	29.2374	12.0659	12.6704	13.3937	15.282	10.5045
+GO:0004823	leucine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0199779	0	0	0	0	0.0265826
+GO:0004823	leucine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.209841	0.140161	0.237034	0.140044	0.105889	0.169909
+GO:0004824	lysine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	1.45601	14.2331	9.50287	38.4728	37.9494	40.2274
+GO:0004824	lysine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	37.675	31.0372	19.2826	53.2743	51.8031	42.9871
+GO:0004824	lysine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.112236	0	0.0659455	0	0	0.046471
+GO:0004824	lysine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0981884	0.125739	0.121517	0.100475	0.0292338	0
+GO:0004825	methionine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.43692	9.97597	6.73366	33.4126	30.0803	23.122
+GO:0004825	methionine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	24.9197	13.0987	14.9571	14.1977	14.6997	10.6684
+GO:0004825	methionine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0386921	0	0	0	0	0
+GO:0004825	methionine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.103382	0.049932699999999997	0.275362	0.120169	0.143261
+GO:0004826	phenylalanine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	1.97312	28.3832	22.7411	42.6145	37.7424	32.7753
+GO:0004826	phenylalanine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	42.5364	32.6279	31.8027	38.7024	45.6252	27.2614
+GO:0004826	phenylalanine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0434313	0	0.0540825	0	0	0
+GO:0004826	phenylalanine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.153869	0.502441	0.12517	0.486012	0.204919	0.40194
+GO:0004827	proline-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.52422	18.083	14.3411	44.9913	40.6442	43.3146
+GO:0004827	proline-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	21.8478	24.8163	15.5358	30.7611	38.881100000000004	29.2867
+GO:0004827	proline-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0309634	0	0	0	0	0
+GO:0004827	proline-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0748079	0.143708	0.138837	0.228929	0.133603	0.0993774
+GO:0004828	serine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.40476	16.8858	13.3064	39.3101	43.4919	37.9766
+GO:0004828	serine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	7.1783	5.77516	2.36222	9.40884	9.56265	9.14085
+GO:0004828	serine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0212417	0	0	0	0	0
+GO:0004828	serine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.139675	0.167605	0.22675	0.303739	0.15587	0.232323
+GO:0004829	threonine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	4.03547	29.0893	18.9049	72.3296	67.5599	52.1923
+GO:0004829	threonine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	50.5135	73.2095	59.1197	59.8116	67.3875	40.0379
+GO:0004829	threonine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0499778	0	0	0
+GO:0004829	threonine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.116562	0.167885	0.162248	0.208735	0.117087	0.387776
+GO:0004830	tryptophan-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.31474	19.8864	9.66349	46.4333	46.0442	41.3628
+GO:0004830	tryptophan-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.7707	13.9259	10.8528	20.4638	22.8987	18.5213
+GO:0004830	tryptophan-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.113597	0	0	0	0	0
+GO:0004830	tryptophan-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.154209	0.395045	0.28638	0.39444	0.137792	0.0684291
+GO:0004831	tyrosine-tRNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	0.924769	11.7781	8.03421	31.9374	31.988	25.6617
+GO:0004831	tyrosine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.46072	1.20339	1.41855	1.02027	1.26406	0.678696
+GO:0004831	tyrosine-tRNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0432126	0	0	0	0	0
+GO:0004831	tyrosine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0300155	0.230474	0.111368	0.0307146	0.0535845	0.239437
+GO:0004832	valine-tRNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	52.0003	32.0423	38.9351	29.4323	33.8191	26.451
+GO:0004832	valine-tRNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.038206	0.348559	0.0354536	0.215052	0.12796	0.127124
+GO:0004834	tryptophan synthase activity	molecular_function	Clostridium	Clostridium thermocellum	13.9437	68.4342	52.2207	236.363	182.933	178.752
+GO:0004834	tryptophan synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	19.9345	8.31616	5.76098	13.2171	16.6092	4.21343
+GO:0004834	tryptophan synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.03346	0.172599	0.233876	0.889778	0.688568	1.5761
+GO:0004837	tyrosine decarboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0258109	0.148609	0	0.369296	0.115025	0
+GO:0004844	uracil DNA N-glycosylase activity	molecular_function	Escherichia	Escherichia coli	0.315126	0	0	0	0	0
+GO:0004845	uracil phosphoribosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	11.8634	81.0858	76.5841	171.093	169.026	196.382
+GO:0004845	uracil phosphoribosyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	22.1412	22.9034	23.9156	12.148	11.0766	13.6792
+GO:0004845	uracil phosphoribosyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0975079	0	0.179027	0.149818	0.130738	0
+GO:0004849	uridine kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	25.3401	45.4046	25.477	28.4036	30.6211	29.9562
+GO:0004850	uridine phosphorylase activity	molecular_function	Escherichia	Escherichia coli	0.0792312	0	0	0	0	0.105683
+GO:0004851	uroporphyrin-III C-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0182523	12.9279	7.92212	23.4066	22.693	32.3801
+GO:0004851	uroporphyrin-III C-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0471013	0	0.0874161	0	0	0
+GO:0004852	uroporphyrinogen-III synthase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0182523	12.9279	7.92212	23.4066	22.693	32.3801
+GO:0004852	uroporphyrinogen-III synthase activity	molecular_function	Escherichia	Escherichia coli	0.0819776	0	0	0	0	0
+GO:0004852	uroporphyrinogen-III synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0794256	0	0.221111	0	0.0354626	0
+GO:0004853	uroporphyrinogen decarboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	0.42605	155.443	166.82	60.6048	59.1935	57.2473
+GO:0004854	xanthine dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.048438	0	0	0	0	0.0720834
+GO:0004855	xanthine oxidase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0119007
+GO:0004856	xylulokinase activity	molecular_function	Escherichia	Escherichia coli	0.0744919	0	0	0	0	0.0247716
+GO:0004866	endopeptidase inhibitor activity	molecular_function	Escherichia	Escherichia coli	0.00556563	0	0	0	0	0
+GO:0004871	signal transducer activity	molecular_function	Clostridium	Clostridium thermocellum	24.3366	80.2366	90.3996	434.331	412.727	369.316
+GO:0004871	signal transducer activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	36.5893	23.1342	24.9425	20.3801	23.6085	19.4238
+GO:0004871	signal transducer activity	molecular_function	Escherichia	Escherichia coli	0.0269046	0	0.049932699999999997	0	0	0.183362
+GO:0004872	receptor activity	molecular_function	Escherichia	Escherichia coli	0.102053	0	0.306498	0	0	0.148791
+GO:0004984	olfactory receptor activity	molecular_function	Escherichia	Escherichia coli	0.361523	0	0.379841	0	0	0.0899345
+GO:0005048	signal sequence binding	molecular_function	Escherichia	Escherichia coli	0.195599	0	0	0	0	0.13909
+GO:0005198	structural molecule activity	molecular_function	Clostridium	Clostridium thermocellum	30.9275	52.5408	36.4512	711.565	684.212	559.164
+GO:0005198	structural molecule activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0268317	0	0	0	0	0
+GO:0005198	structural molecule activity	molecular_function	Escherichia	Escherichia coli	15.2031	0	17.7881	0	0	18.552
+GO:0005215	transporter activity	molecular_function	Clostridium	Clostridium thermocellum	17.2173	69.7364	58.8712	236.604	218.35	146.78
+GO:0005215	transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1170.78	677.898	915.494	494.015	594.402	583.214
+GO:0005215	transporter activity	molecular_function	Escherichia	Escherichia coli	4.18127	0	2.94355	0	0	1.10715
+GO:0005215	transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	2.99944	0.986914	3.49723	2.09404	1.91734	1.21358
+GO:0005216	ion channel activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	40.5509	80.209	60.3346	57.6281	71.0274	79.7315
+GO:0005216	ion channel activity	molecular_function	Escherichia	Escherichia coli	0.372484	0	0.517821	0	0	0
+GO:0005247	voltage-gated chloride channel activity	molecular_function	Clostridium	Clostridium thermocellum	1.39583	11.857	9.61176	15.9613	18.6339	24.4157
+GO:0005247	voltage-gated chloride channel activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5.19324	4.35679	2.96448	2.99088	3.06988	3.52225
+GO:0005247	voltage-gated chloride channel activity	molecular_function	Escherichia	Escherichia coli	0.0379386	0	0	0	0	0
+GO:0005262	calcium channel activity	molecular_function	Escherichia	Escherichia coli	0.0880536	0	0	0	0	0
+GO:0005267	potassium channel activity	molecular_function	Escherichia	Escherichia coli	0.0557049	0	0	0	0	0
+GO:0005304	L-valine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.26941	0	0	0	0	0
+GO:0005315	inorganic phosphate transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	1.96736	3.66458	3.21293	1.37838	1.46176	2.78587
+GO:0005315	inorganic phosphate transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	121.811	23.8095	18.4492	31.11	37.3002	22.008
+GO:0005315	inorganic phosphate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.161598	0	0.310332	0	0	0.0718247
+GO:0005315	inorganic phosphate transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.491136	0.96423	0.873439	0.606732	0.532394	0.857013
+GO:0005328	neurotransmitter:sodium symporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	107.983	27.1758	41.6894	22.6594	27.5648	25.5205
+GO:0005337	nucleoside transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0446465	0	0	0	0	0
+GO:0005344	oxygen transporter activity	molecular_function	Escherichia	Escherichia coli	0.0466881	0	0	0	0	0
+GO:0005345	purine nucleobase transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.3584	4.17556	5.65101	7.77604	5.76994	3.99521
+GO:0005345	purine nucleobase transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0379872	0	0	0	0	0
+GO:0005351	sugar:proton symporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	92.4241	20.5231	28.3484	18.3597	14.3406	8.53233
+GO:0005351	sugar:proton symporter activity	molecular_function	Escherichia	Escherichia coli	0.439879	0	0.346778	0	0	0.255089
+GO:0005354	galactose transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0354596	0	0	0	0	0
+GO:0005355	glucose transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0756585	0	0.140506	0	0	0
+GO:0005363	maltose transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	134.045	63.4878	144.991	25.642	38.6514	48.4664
+GO:0005363	maltose transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.116659	0	0	0	0	0
+GO:0005384	manganese ion transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	0.489095	3.44363	0.302709	9.39949	5.19327	9.04121
+GO:0005384	manganese ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.233124	0	0	0	0	0
+GO:0005384	manganese ion transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.222735	0.184213	0.106778	0.239534
+GO:0005385	zinc ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0	0	0.113894	0	0	0.0774516
+GO:0005388	calcium-transporting ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	1.39102	2.74772	3.00625	9.27501	10.5159	12.0989
+GO:0005388	calcium-transporting ATPase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	14.7153	17.3383	18.1821	15.2639	15.476	11.57
+GO:0005388	calcium-transporting ATPase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0610275	0.195702	0.264774	0.18762	0.0910003	0.162697
+GO:0005415	nucleoside:sodium symporter activity	molecular_function	Escherichia	Escherichia coli	0.0461534	0	0	0	0	0
+GO:0005451	monovalent cation:proton antiporter activity	molecular_function	Clostridium	Clostridium thermocellum	0.298211	3.37077	2.55194	7.38812	7.07064	9.19162
+GO:0005451	monovalent cation:proton antiporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	172.061	32.706	52.4692	40.9061	59.7672	30.9783
+GO:0005506	iron ion binding	molecular_function	Clostridium	Clostridium thermocellum	153.719	2243.4	1268.9	6534.09	4641.59	8242.74
+GO:0005506	iron ion binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5715.6	15150.5	12874.2	5720.03	6389.76	7852.8
+GO:0005506	iron ion binding	molecular_function	Escherichia	Escherichia coli	1.76977	0	1.52897	0	0	0.691244
+GO:0005506	iron ion binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	3.03361	19.3303	9.12389	7.69832	4.90158	10.6172
+GO:0005507	copper ion binding	molecular_function	Clostridium	Clostridium thermocellum	16.9333	234.828	152.623	532.191	394.881	686.647
+GO:0005507	copper ion binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	50.2588	66.8372	80.2765	34.749	48.1546	40.7722
+GO:0005507	copper ion binding	molecular_function	Escherichia	Escherichia coli	0.413679	0	0.128824	0	0	0
+GO:0005509	calcium ion binding	molecular_function	Clostridium	Clostridium thermocellum	8.36538	31.6643	27.2588	94.0011	100.804	175.611
+GO:0005509	calcium ion binding	molecular_function	Escherichia	Escherichia coli	0.447705	0	0.245379	0	0	0.040844
+GO:0005509	calcium ion binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.06843	0.511636	0.991347	1.75981	0	2.85895
+GO:0005524	ATP binding	molecular_function	Clostridium	Clostridium thermocellum	668.581	4222.52	3620.11	10383.3	9584.47	9867.57
+GO:0005524	ATP binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6241.98	4663.37	4935.41	3656.83	4405.54	3431.7
+GO:0005524	ATP binding	molecular_function	Escherichia	Escherichia coli	15.6811	0	11.4563	0	0	4.07425
+GO:0005524	ATP binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	25.0222	52.7989	52.6346	42.7274	25.8365	46.0619
+GO:0005525	GTP binding	molecular_function	Clostridium	Clostridium thermocellum	123.793	759.52	591.357	2382.52	2088.79	1951.49
+GO:0005525	GTP binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	716.148	568.669	518.586	553.919	664.223	544.29
+GO:0005525	GTP binding	molecular_function	Escherichia	Escherichia coli	1.19423	0	0.246416	0	0	0.607486
+GO:0005525	GTP binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	12.755	18.3124	15.8513	12.7497	6.82856	13.4991
+GO:0005528	FK506 binding	molecular_function	Escherichia	Escherichia coli	0.103098	0	0	0	0	0
+GO:0005534	galactose binding	molecular_function	Escherichia	Escherichia coli	0.120475	0	0	0	0	0
+GO:0005542	folic acid binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	38.7195	12.9166	45.4751	2.07255	4.42169	4.76219
+GO:0005543	phospholipid binding	molecular_function	Escherichia	Escherichia coli	0.0500177	0	0	0	0	0
+GO:0005975	carbohydrate metabolic process	biological_process	Clostridium	Clostridium thermocellum	126.47	361.161	325.987	955.177	847.176	910.707
+GO:0005975	carbohydrate metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	672.536	603.786	700.263	437.905	496.515	409.395
+GO:0005975	carbohydrate metabolic process	biological_process	Escherichia	Escherichia coli	145.99	0	66.1159	0	0	15.6679
+GO:0005975	carbohydrate metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.83961	4.36361	3.36209	4.37366	2.45349	3.87423
+GO:0005977	glycogen metabolic process	biological_process	Escherichia	Escherichia coli	0.0251304	0	0	0	0	0
+GO:0005978	glycogen biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	6.04374	39.584	28.5428	256.93	251.996	223.186
+GO:0005978	glycogen biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	169.299	136.07	138.294	110.092	135.73	115.105
+GO:0005978	glycogen biosynthetic process	biological_process	Escherichia	Escherichia coli	0.596932	0	0.0787106	0	0	0
+GO:0005980	glycogen catabolic process	biological_process	Clostridium	Clostridium thermocellum	1.08846	8.18431	6.03654	29.6421	28.7723	30.4393
+GO:0005980	glycogen catabolic process	biological_process	Escherichia	Escherichia coli	0.144317	0	0.228779	0	0	0
+GO:0005985	sucrose metabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.165946	0	0	0
+GO:0005988	lactose metabolic process	biological_process	Clostridium	Clostridium thermocellum	9.86686	28.7165	21.6438	133.033	107.045	143.081
+GO:0005988	lactose metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	125.074	105.814	111.725	74.0842	99.1241	73.0471
+GO:0005991	trehalose metabolic process	biological_process	Escherichia	Escherichia coli	0.13044	0	0.0219217	0	0	0
+GO:0005992	trehalose biosynthetic process	biological_process	Escherichia	Escherichia coli	0.159945	0	0	0	0	0
+GO:0005992	trehalose biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.162546	0.35626	0.139198	0.151235	0.0672356	0.0482173
+GO:0005993	trehalose catabolic process	biological_process	Escherichia	Escherichia coli	0.0972162	0	0.200904	0	0	0
+GO:0005995	melibiose catabolic process	biological_process	Escherichia	Escherichia coli	0.0402961	0	0	0	0	0
+GO:0005996	monosaccharide metabolic process	biological_process	Clostridium	Clostridium thermocellum	8.9723	20.5811	17.6418	48.8933	48.7887	64.0767
+GO:0005996	monosaccharide metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.6022	8.82271	4.81488	8.87252	10.4749	8.15105
+GO:0005998	xylulose catabolic process	biological_process	Escherichia	Escherichia coli	0.0744919	0	0	0	0	0.0247716
+GO:0005999	xylulose biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0604685	0	0	0	0	0
+GO:0006000	fructose metabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.33947	0	0	0
+GO:0006002	fructose 6-phosphate metabolic process	biological_process	Clostridium	Clostridium thermocellum	12.712	116.88	72.6404	379.328	344.769	269.537
+GO:0006002	fructose 6-phosphate metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	233.381	310.772	242.865	253.449	310.629	177.948
+GO:0006002	fructose 6-phosphate metabolic process	biological_process	Escherichia	Escherichia coli	0.209744	0	0.0554808	0	0	0
+GO:0006004	fucose metabolic process	biological_process	Escherichia	Escherichia coli	0.0410252	0	0	0	0	0.166448
+GO:0006006	glucose metabolic process	biological_process	Clostridium	Clostridium thermocellum	28.2254	362.751	253.872	1053.85	1079.39	914.434
+GO:0006006	glucose metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	75.8646	274.922	211.047	183.353	266.927	188.019
+GO:0006006	glucose metabolic process	biological_process	Escherichia	Escherichia coli	0.474585	0	0.298424	0	0	0.247878
+GO:0006006	glucose metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.067784	0	0.251558	0.0693628	0	0.0901932
+GO:0006007	glucose catabolic process	biological_process	Clostridium	Clostridium thermocellum	4.40013	74.3333	74.8652	106.757	98.0077	79.9185
+GO:0006007	glucose catabolic process	biological_process	Escherichia	Escherichia coli	0.052278	0	0	0	0	0
+GO:0006011	UDP-glucose metabolic process	biological_process	Clostridium	Clostridium thermocellum	3.00262	16.584	8.70638	40.1594	35.961	49.9037
+GO:0006011	UDP-glucose metabolic process	biological_process	Escherichia	Escherichia coli	0.0913346	0	0	0	0	0.0869269
+GO:0006011	UDP-glucose metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.411541	1.18523	1.3379	0.63185	0.398466	0.410963
+GO:0006012	galactose metabolic process	biological_process	Clostridium	Clostridium thermocellum	2.6548	27.3309	23.0112	46.6437	55.0428	57.194
+GO:0006012	galactose metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	9.59595	13.7924	5.45755	15.3531	18.278	12.0259
+GO:0006012	galactose metabolic process	biological_process	Escherichia	Escherichia coli	0.0280226	0	0	0	0	0
+GO:0006012	galactose metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.117413	0.11267	0.108932	0.420429	0.104868	0.546495
+GO:0006013	mannose metabolic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0327593
+GO:0006014	D-ribose metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.484137	1.66564	2.81522	0.0990826	0.4323	1.37424
+GO:0006014	D-ribose metabolic process	biological_process	Escherichia	Escherichia coli	0.217351	0	0	0	0	0
+GO:0006014	D-ribose metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.10464	0.913123	0.976913	1.40999	0.602386	1.25934
+GO:0006015	5-phosphoribose 1-diphosphate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	8.49303	51.9047	43.1504	140.288	142.991	139.676
+GO:0006015	5-phosphoribose 1-diphosphate biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	32.7395	26.4632	18.8907	36.513	43.2726	31.3404
+GO:0006015	5-phosphoribose 1-diphosphate biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.060215
+GO:0006015	5-phosphoribose 1-diphosphate biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0685617	0.395372	0.191116	0.56194	0.0306445	0.548177
+GO:0006021	inositol biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.152362	0.292504	0.471046	1.14353	0.702936	2.02296
+GO:0006024	glycosaminoglycan biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0682701	0.087373	0.168878	0.0465817	0	0.121109
+GO:0006032	chitin catabolic process	biological_process	Clostridium	Clostridium thermocellum	5.29947	8.80582	9.09723	23.3712	19.9315	20.0054
+GO:0006044	N-acetylglucosamine metabolic process	biological_process	Clostridium	Clostridium thermocellum	1.20035	4.47483	3.62673	11.2753	13.3918	13.4697
+GO:0006044	N-acetylglucosamine metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	92.503	36.1405	61.5543	21.013	24.3019	21.5417
+GO:0006044	N-acetylglucosamine metabolic process	biological_process	Escherichia	Escherichia coli	0.308054	0	0	0	0	0.0988923
+GO:0006047	UDP-N-acetylglucosamine metabolic process	biological_process	Clostridium	Clostridium thermocellum	2.92271	22.322	22.6089	55.7991	61.8888	59.941
+GO:0006047	UDP-N-acetylglucosamine metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	38.8843	38.8641	37.9197	31.6798	32.5771	32.4612
+GO:0006047	UDP-N-acetylglucosamine metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.16483	0	0.767079	0.359498	0.166049	0.219937
+GO:0006048	UDP-N-acetylglucosamine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	6.26833	35.7007	27.2547	96.8199	94.1636	84.6506
+GO:0006048	UDP-N-acetylglucosamine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	17.0894	14.1176	12.1005	34.4997	35.4584	19.8786
+GO:0006048	UDP-N-acetylglucosamine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.019905	0	0.0738842	0	0	0
+GO:0006062	sorbitol catabolic process	biological_process	Escherichia	Escherichia coli	0.0770925	0	0	0	0	0
+GO:0006064	glucuronate catabolic process	biological_process	Escherichia	Escherichia coli	0.057309	0	0.0705914	0	0	0
+GO:0006065	UDP-glucuronate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.143394	0	0	0	0	0.0636106
+GO:0006066	alcohol metabolic process	biological_process	Clostridium	Clostridium thermocellum	0.658664	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0006066	alcohol metabolic process	biological_process	Escherichia	Escherichia coli	0.0192731	0	0	0	0	0
+GO:0006068	ethanol catabolic process	biological_process	Escherichia	Escherichia coli	0.0328591	0	0	0	0	0
+GO:0006069	ethanol oxidation	biological_process	Escherichia	Escherichia coli	0	0	0.0939565	0	0	0.0336971
+GO:0006071	glycerol metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	44.0015	40.5883	39.0635	39.6642	46.5421	34.0083
+GO:0006071	glycerol metabolic process	biological_process	Escherichia	Escherichia coli	0.576176	0	0.232298	0	0	0.231449
+GO:0006072	glycerol-3-phosphate metabolic process	biological_process	Escherichia	Escherichia coli	0.0716727	0	0.0664868	0	0	0
+GO:0006080	substituted mannan metabolic process	biological_process	Clostridium	Clostridium thermocellum	41.2293	46.4253	52.9957	128.966	117.098	135.834
+GO:0006081	cellular aldehyde metabolic process	biological_process	Clostridium	Clostridium thermocellum	0.229819	2.94146	1.49279	7.42607	6.99288	7.20601
+GO:0006082	organic acid metabolic process	biological_process	Clostridium	Clostridium thermocellum	4.97497	31.7717	26.5377	74.1942	75.7388	54.5204
+GO:0006082	organic acid metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	32.0488	43.0591	49.0291	50.1978	48.3386	32.4178
+GO:0006082	organic acid metabolic process	biological_process	Escherichia	Escherichia coli	0.0923068	0	0	0	0	0.0613792
+GO:0006084	acetyl-CoA metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.8095	4.95529	3.92538	3.07335	3.79558	3.06634
+GO:0006084	acetyl-CoA metabolic process	biological_process	Escherichia	Escherichia coli	0.201335	0	0	0	0	0.0829169
+GO:0006084	acetyl-CoA metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0834844	0	0	0.294885	0.159451	0.11144
+GO:0006085	acetyl-CoA biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	8.80132	57.9387	50.6598	123.994	132.039	128.484
+GO:0006085	acetyl-CoA biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	32.0488	43.0591	49.0291	50.1978	48.3386	32.4178
+GO:0006085	acetyl-CoA biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0923068	0	0	0	0	0.0613792
+GO:0006089	lactate metabolic process	biological_process	Escherichia	Escherichia coli	0.0156518	0	0	0	0	0
+GO:0006090	pyruvate metabolic process	biological_process	Clostridium	Clostridium thermocellum	2.59281	11.6392	13.25	49.2864	44.0848	41.199
+GO:0006090	pyruvate metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	53.4174	54.7495	42.6241	62.2203	69.7192	37.1381
+GO:0006090	pyruvate metabolic process	biological_process	Escherichia	Escherichia coli	0.046445	0	0	0	0	0
+GO:0006090	pyruvate metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0510385	0.318407	0.355077	0.495985	0.273435	0.322516
+GO:0006091	generation of precursor metabolites and energy	biological_process	Clostridium	Clostridium thermocellum	0.130416	31.3103	29.1451	43.3765	37.6878	33.5279
+GO:0006094	gluconeogenesis	biological_process	Clostridium	Clostridium thermocellum	12.7286	181.224	162.281	648.555	592.409	530.483
+GO:0006094	gluconeogenesis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	314.784	592.819	453.248	357.14	413.998	305.421
+GO:0006094	gluconeogenesis	biological_process	Escherichia	Escherichia coli	0.241582	0	0.0742451	0	0	0.0216994
+GO:0006094	gluconeogenesis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.671837	1.77439	1.25693	1.28133	1.11416	1.56608
+GO:0006096	glycolytic process	biological_process	Clostridium	Clostridium thermocellum	50.7733	801.418	588.203	2284.02	2295.85	2088.11
+GO:0006096	glycolytic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	418.009	1148.82	915.105	846.277	1043.22	643.776
+GO:0006096	glycolytic process	biological_process	Escherichia	Escherichia coli	0.555858	0	0.0707719	0	0	0.0716306
+GO:0006096	glycolytic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.24412	1.88729	1.24516	1.95952	0.947571	1.83782
+GO:0006097	glyoxylate cycle	biological_process	Clostridium	Clostridium thermocellum	2.4552	47.411	32.8214	119.773	121.21	121.8
+GO:0006097	glyoxylate cycle	biological_process	Escherichia	Escherichia coli	0.575107	0	0.190484	0	0	0.0569164
+GO:0006098	pentose-phosphate shunt	biological_process	Clostridium	Clostridium thermocellum	32.0239	217.092	182.216	663.372	640.793	678.726
+GO:0006098	pentose-phosphate shunt	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	235.056	450.62	492.149	271.598	276.218	222.433
+GO:0006098	pentose-phosphate shunt	biological_process	Escherichia	Escherichia coli	0.189086	0	0.498921	0	0	0.1225
+GO:0006098	pentose-phosphate shunt	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.179947	0.688949	0	0.0920195	0.281335	0.359091
+GO:0006099	tricarboxylic acid cycle	biological_process	Clostridium	Clostridium thermocellum	2.4552	47.411	32.8214	119.773	121.21	121.8
+GO:0006099	tricarboxylic acid cycle	biological_process	Escherichia	Escherichia coli	0.908024	0	0.124674	0	0	0.125119
+GO:0006099	tricarboxylic acid cycle	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.746353	0.712379	0.391478	0.896792	0.728958	0.325071
+GO:0006102	isocitrate metabolic process	biological_process	Clostridium	Clostridium thermocellum	2.4552	47.411	32.8214	119.773	121.21	121.8
+GO:0006107	oxaloacetate metabolic process	biological_process	Escherichia	Escherichia coli	0.0194432	0	0	0	0	0
+GO:0006107	oxaloacetate metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0342444	0.262166	0	0.262877	0.15294	0.159528
+GO:0006108	malate metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	11.7036	8.48671	7.60015	8.90226	8.78091	8.77558
+GO:0006108	malate metabolic process	biological_process	Escherichia	Escherichia coli	0.211032	0	0.212947	0	0	0.0835637
+GO:0006108	malate metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.440074	0.281489	0.162202	0.240295	0.104847	0
+GO:0006109	regulation of carbohydrate metabolic process	biological_process	Clostridium	Clostridium thermocellum	48.7367	313.415	223.445	763.953	780.967	958.252
+GO:0006112	energy reserve metabolic process	biological_process	Escherichia	Escherichia coli	0.0604685	0	0	0	0	0
+GO:0006119	oxidative phosphorylation	biological_process	Escherichia	Escherichia coli	0	0	0.0646374	0	0	0.023187
+GO:0006139	nucleobase-containing compound metabolic process	biological_process	Clostridium	Clostridium thermocellum	0.750728	5.25428	4.94361	11.7933	12.995	14.2713
+GO:0006139	nucleobase-containing compound metabolic process	biological_process	Escherichia	Escherichia coli	0.0414384	0	0	0	0	0
+GO:0006139	nucleobase-containing compound metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0605657	0.0581553	0.22481	0.108459	0.0809953	0.181324
+GO:0006144	purine nucleobase metabolic process	biological_process	Escherichia	Escherichia coli	0.206025	0	0	0	0	0.34166
+GO:0006146	adenine catabolic process	biological_process	Escherichia	Escherichia coli	0.0149956	0	0.0278306	0	0	0
+GO:0006146	adenine catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.148644	0.127232	0.24592	0.0508594	0.103349	0.308642
+GO:0006163	purine nucleotide metabolic process	biological_process	Clostridium	Clostridium thermocellum	4.42378	27.4467	20.7349	59.5457	61.5965	71.5612
+GO:0006163	purine nucleotide metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	39.9694	79.6803	76.3232	58.9659	71.4159	58.7156
+GO:0006163	purine nucleotide metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.235117	0.564237	1.08797	0.960733	0.471539	1.87452
+GO:0006164	purine nucleotide biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	8.04685	56.8594	38.1559	166.347	169.664	171.35
+GO:0006164	purine nucleotide biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	10.1493	7.35935	4.96675	6.47417	8.13417	6.97611
+GO:0006164	purine nucleotide biosynthetic process	biological_process	Escherichia	Escherichia coli	0.135957	0	0	0	0	0
+GO:0006166	purine ribonucleoside salvage	biological_process	Clostridium	Clostridium thermocellum	2.33922	13.577	10.8916	51.0264	39.3707	68.6689
+GO:0006166	purine ribonucleoside salvage	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	8.76042	9.12357	11.0711	12.0851	15.1185	13.2017
+GO:0006166	purine ribonucleoside salvage	biological_process	Escherichia	Escherichia coli	0.174041	0	0.23311	0	0	0.381987
+GO:0006166	purine ribonucleoside salvage	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.634761	0.567212	0.199956	0.160884	0.09333
+GO:0006168	adenine salvage	biological_process	Clostridium	Clostridium thermocellum	5.3083	25.8836	13.0491	63.7916	59.4961	59.5095
+GO:0006168	adenine salvage	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	82.9271	58.608	43.511	37.0193	45.5653	50.1944
+GO:0006168	adenine salvage	biological_process	Escherichia	Escherichia coli	0	0	0.224404	0	0	0
+GO:0006171	cAMP biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0269706
+GO:0006177	GMP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	3.92593	27.1335	16.1024	89.4446	80.4397	68.3222
+GO:0006177	GMP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	123.331	96.3271	85.7414	62.3909	84.3424	51.6951
+GO:0006177	GMP biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0709435	0	0	0	0	0
+GO:0006177	GMP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.196766	0.684375	1.06555	1.21234	0.43191	1.26173
+GO:0006183	GTP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.86167	12.8491	11.2268	58.815	46.6577	64.3269
+GO:0006183	GTP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	161.758	282.441	228.356	175.603	195.079	248.125
+GO:0006183	GTP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.396861	0.152529	0.883498	0.485838	0.638087	0.949793
+GO:0006189	'de novo' IMP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	19.8679	63.0196	46.6489	320.659	304.833	273.568
+GO:0006189	'de novo' IMP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	59.7195	38.6645	42.6321	55.2302	70.886	51.3796
+GO:0006189	'de novo' IMP biosynthetic process	biological_process	Escherichia	Escherichia coli	0.42379	0	0.361257	0	0	0.124181
+GO:0006189	'de novo' IMP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.99954	5.6462	6.32635	3.39607	1.86248	4.00336
+GO:0006206	pyrimidine nucleobase metabolic process	biological_process	Clostridium	Clostridium thermocellum	0.738284	1.98489	2.77977	9.99093	9.33907	7.15631
+GO:0006206	pyrimidine nucleobase metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	30.5868	22.757	25.5162	24.0789	31.9322	18.0353
+GO:0006206	pyrimidine nucleobase metabolic process	biological_process	Escherichia	Escherichia coli	0.195016	0	0.0567438	0	0	0.040844
+GO:0006207	'de novo' pyrimidine nucleobase biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	3.23081	20.254	17.1549	59.8246	63.6541	60.5915
+GO:0006207	'de novo' pyrimidine nucleobase biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	4.33669	2.70082	4.38438	1.31476	1.3433	1.58195
+GO:0006207	'de novo' pyrimidine nucleobase biosynthetic process	biological_process	Escherichia	Escherichia coli	0.305259	0	0.0439787	0	0	0
+GO:0006207	'de novo' pyrimidine nucleobase biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.509024	0.911256	0.374112	1.16977	0.507241	1.27461
+GO:0006208	pyrimidine nucleobase catabolic process	biological_process	Escherichia	Escherichia coli	0.0786479	0	0	0	0	0
+GO:0006212	uracil catabolic process	biological_process	Escherichia	Escherichia coli	0.0551702	0	0	0	0	0.0548468
+GO:0006213	pyrimidine nucleoside metabolic process	biological_process	Clostridium	Clostridium thermocellum	0.738284	1.98489	2.77977	9.99093	9.33907	7.15631
+GO:0006213	pyrimidine nucleoside metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	30.5868	22.757	25.5162	24.0789	31.9322	18.0353
+GO:0006220	pyrimidine nucleotide metabolic process	biological_process	Clostridium	Clostridium thermocellum	6.82242	51.3493	27.5884	104.762	118.867	125.629
+GO:0006220	pyrimidine nucleotide metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0723289	0.138901	0	0.740408	0.38718	0.77083
+GO:0006221	pyrimidine nucleotide biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.628551	4.09094	1.61945	11.9282	7.41667	12.4429
+GO:0006221	pyrimidine nucleotide biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	9.50019	8.84372	6.63997	6.88117	9.53507	11.2686
+GO:0006222	UMP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.864033	0.484005	0.13365	0.257804	0.353627	0.431174
+GO:0006223	uracil salvage	biological_process	Clostridium	Clostridium thermocellum	10.1241	63.2315	62.446	131.224	128.121	141.808
+GO:0006223	uracil salvage	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	14.1117	13.8508	17.5205	7.38217	5.14641	7.25436
+GO:0006223	uracil salvage	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0975079	0	0.179027	0.149818	0.130738	0
+GO:0006226	dUMP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.44795	10.3579	10.2479	25.2983	25.9347	35.8891
+GO:0006226	dUMP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.83	23.6456	13.4701	22.3517	31.1397	20.7496
+GO:0006226	dUMP biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0786479	0	0	0	0	0
+GO:0006226	dUMP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.266421	0.308093	0	0.219603	0.191159	0
+GO:0006228	UTP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.86167	12.8491	11.2268	58.815	46.6577	64.3269
+GO:0006228	UTP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	161.758	282.441	228.356	175.603	195.079	248.125
+GO:0006228	UTP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.396861	0.152529	0.883498	0.485838	0.638087	0.949793
+GO:0006229	dUTP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.44795	10.3579	10.2479	25.2983	25.9347	35.8891
+GO:0006229	dUTP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.83	23.6456	13.4701	22.3517	31.1397	20.7496
+GO:0006229	dUTP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.107302	0	0	0.219603	0.04792	0
+GO:0006231	dTMP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	4.20754	24.2485	18.8704	62.4472	63.5952	70.4747
+GO:0006231	dTMP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	32.4181	24.5272	22.7811	26.6489	29.5605	19.1002
+GO:0006231	dTMP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.364099	1.92305	0.844391	0.372753	0.650436	0.54504
+GO:0006233	dTDP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.85979	4.36492	5.40031	19.7196	19.5344	17.4885
+GO:0006233	dTDP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	6.01618	3.2385	4.17365	3.22284	2.45792	2.24471
+GO:0006233	dTDP biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0986988	0	0	0	0	0
+GO:0006233	dTDP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.055875	0.42893	0.93298	0.457386	0.149685	1.03847
+GO:0006235	dTTP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.85979	4.36492	5.40031	19.7196	19.5344	17.4885
+GO:0006235	dTTP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	6.01618	3.2385	4.17365	3.22284	2.45792	2.24471
+GO:0006235	dTTP biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0986988	0	0	0	0	0
+GO:0006235	dTTP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.419974	2.35198	1.77737	0.83014	0.8001	1.58351
+GO:0006241	CTP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.86167	12.8491	11.2268	58.815	46.6577	64.3269
+GO:0006241	CTP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	161.758	282.441	228.356	175.603	195.079	248.125
+GO:0006241	CTP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.396861	0.152529	0.883498	0.485838	0.638087	0.949793
+GO:0006259	DNA metabolic process	biological_process	Escherichia	Escherichia coli	0.200484	0	0	0	0	0
+GO:0006260	DNA replication	biological_process	Clostridium	Clostridium thermocellum	55.3214	303.437	224.862	981.635	824.881	824.135
+GO:0006260	DNA replication	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	526.611	310.035	334.161	221.2	284.822	225.705
+GO:0006260	DNA replication	biological_process	Escherichia	Escherichia coli	2.13929	0	2.35784	0	0	0.642768
+GO:0006260	DNA replication	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.4003	4.194	4.14036	3.32961	2.10542	7.68398
+GO:0006261	DNA-dependent DNA replication	biological_process	Clostridium	Clostridium thermocellum	7.73596	56.6698	47.0745	134.301	126.136	128.493
+GO:0006261	DNA-dependent DNA replication	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	27.2593	19.3438	23.3301	16.2397	16.4988	12.3178
+GO:0006261	DNA-dependent DNA replication	biological_process	Escherichia	Escherichia coli	0.0136346	0	0	0	0	0
+GO:0006261	DNA-dependent DNA replication	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.254901	0.481252	0.621024	0.380786	0.114136	0.333252
+GO:0006265	DNA topological change	biological_process	Clostridium	Clostridium thermocellum	14.5788	104.151	68.6428	253.86	250.345	266.925
+GO:0006265	DNA topological change	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	66.7647	46.8587	46.3297	31.894	34.6157	26.2064
+GO:0006265	DNA topological change	biological_process	Escherichia	Escherichia coli	0.138946	0	0.214345	0	0	0
+GO:0006265	DNA topological change	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.694197	2.27184	2.63471	0.658312	0.578339	0.380984
+GO:0006266	DNA ligation	biological_process	Escherichia	Escherichia coli	0.090241	0	0.33505	0	0	0
+GO:0006268	DNA unwinding involved in DNA replication	biological_process	Clostridium	Clostridium thermocellum	2.09289	11.9003	8.03141	27.8359	27.3218	33.5524
+GO:0006268	DNA unwinding involved in DNA replication	biological_process	Escherichia	Escherichia coli	0.107813	0	0.223006	0	0	0
+GO:0006268	DNA unwinding involved in DNA replication	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.585217	2.24855	2.45496	0.509663	0.383816	0.268186
+GO:0006269	DNA replication, synthesis of RNA primer	biological_process	Clostridium	Clostridium thermocellum	3.35377	23.5808	13.8349	77.6395	69.2138	68.7263
+GO:0006269	DNA replication, synthesis of RNA primer	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.3331	9.32455	7.93813	13.0321	15.1196	9.34772
+GO:0006269	DNA replication, synthesis of RNA primer	biological_process	Escherichia	Escherichia coli	0.387115	0	0.27339	0	0	0
+GO:0006270	DNA replication initiation	biological_process	Clostridium	Clostridium thermocellum	1.62361	6.62831	5.33811	16.0679	18.1539	20.2148
+GO:0006270	DNA replication initiation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.1311	22.1648	29.882	8.47126	12.8847	8.72642
+GO:0006270	DNA replication initiation	biological_process	Escherichia	Escherichia coli	0.038765	0	0	0	0	0
+GO:0006275	regulation of DNA replication	biological_process	Clostridium	Clostridium thermocellum	1.62361	6.62831	5.33811	16.0679	18.1539	20.2148
+GO:0006275	regulation of DNA replication	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.1311	22.1648	29.882	8.47126	12.8847	8.72642
+GO:0006275	regulation of DNA replication	biological_process	Escherichia	Escherichia coli	0.038765	0	0	0	0	0
+GO:0006275	regulation of DNA replication	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.166118	0.159437	0.0770868	0.595043	0.519394	1.1055
+GO:0006276	plasmid maintenance	biological_process	Escherichia	Escherichia coli	0.019662	0	0	0	0	0
+GO:0006281	DNA repair	biological_process	Clostridium	Clostridium thermocellum	45.906	298.9	234.96	710.443	689.692	777.07
+GO:0006281	DNA repair	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	320.905	456.174	478.26	256.124	281.123	232.373
+GO:0006281	DNA repair	biological_process	Escherichia	Escherichia coli	2.49661	0	1.30935	0	0	0.432112
+GO:0006281	DNA repair	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.39196	3.53049	4.78845	3.00782	1.13571	2.26049
+GO:0006282	regulation of DNA repair	biological_process	Clostridium	Clostridium thermocellum	0.928925	7.51585	2.96484	14.3278	13.304	20.4789
+GO:0006282	regulation of DNA repair	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	10.3306	21.2501	25.7298	8.17725	8.29694	8.41684
+GO:0006284	base-excision repair	biological_process	Clostridium	Clostridium thermocellum	9.10233	47.1933	46.9591	112.129	98.3745	179.749
+GO:0006284	base-excision repair	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	35.2144	18.7453	22.4538	18.0727	28.9692	25.5127
+GO:0006284	base-excision repair	biological_process	Escherichia	Escherichia coli	0.836059	0	0.324811	0	0	0
+GO:0006284	base-excision repair	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.152529	0.164322	0.234426	0.290624	0.375099
+GO:0006285	base-excision repair, AP site formation	biological_process	Escherichia	Escherichia coli	0.272497	0	0	0	0	0
+GO:0006289	nucleotide-excision repair	biological_process	Clostridium	Clostridium thermocellum	10.5148	35.8935	31.0746	82.8924	74.6144	84.5537
+GO:0006289	nucleotide-excision repair	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	23.0826	22.3576	15.9566	24.5116	23.5278	18.7787
+GO:0006289	nucleotide-excision repair	biological_process	Escherichia	Escherichia coli	0.321834	0	0	0	0	0
+GO:0006289	nucleotide-excision repair	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.230475	0.140161	0.308573	0.406079	0.22328	0.414002
+GO:0006298	mismatch repair	biological_process	Clostridium	Clostridium thermocellum	2.98984	19.5161	13.0179	52.0287	52.5978	53.8572
+GO:0006298	mismatch repair	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	34.6387	33.8197	30.2089	39.5389	47.3924	42.4149
+GO:0006298	mismatch repair	biological_process	Escherichia	Escherichia coli	0.174187	0	0.221111	0	0	0
+GO:0006298	mismatch repair	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.135471	1.14467	1.00474	0.277252	0.241922	0.342437
+GO:0006302	double-strand break repair	biological_process	Clostridium	Clostridium thermocellum	1.90991	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0006302	double-strand break repair	biological_process	Escherichia	Escherichia coli	0.12344	0	0	0	0	0
+GO:0006302	double-strand break repair	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.17477	0.691003	0.0763199	0.0526003	0.109947	0.109435
+GO:0006304	DNA modification	biological_process	Clostridium	Clostridium thermocellum	0.152192	0.0224967	0.0869199	0.0359373	0.0418215	0.0934594
+GO:0006304	DNA modification	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.0579409	0.0445266	0.107534	0.011863	0.0827749	0.0308513
+GO:0006304	DNA modification	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.391125	0.083988	0.277899	0	0.060215
+GO:0006306	DNA methylation	biological_process	Clostridium	Clostridium thermocellum	0.114326	1.40912	0.709748	0.0874434	0.266751	0.145299
+GO:0006306	DNA methylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	5.46258	3.89958	3.45221	6.18637	6.63148	3.68699
+GO:0006306	DNA methylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0571388	0.192062	0	0.146112	0.102004	0.132978
+GO:0006307	DNA dealkylation involved in DNA repair	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0	0	0.0848896
+GO:0006308	DNA catabolic process	biological_process	Clostridium	Clostridium thermocellum	9.96534	32.9928	26.8289	117.871	107.577	100.856
+GO:0006308	DNA catabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.0705914	0	0	0
+GO:0006310	DNA recombination	biological_process	Clostridium	Clostridium thermocellum	47.6532	242.043	175.334	593.376	560.301	580.451
+GO:0006310	DNA recombination	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	253.594	416.12	423.563	235.223	247.802	214.524
+GO:0006310	DNA recombination	biological_process	Escherichia	Escherichia coli	3.46445	0	0.659004	0	0	0.299587
+GO:0006310	DNA recombination	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.760352	0.941173	2.46962	1.61604	0.35315	1.0319
+GO:0006313	transposition, DNA-mediated	biological_process	Clostridium	Clostridium thermocellum	53.4656	226.165	197.304	382.169	366.093	416.208
+GO:0006313	transposition, DNA-mediated	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	17.2546	16.0043	18.9494	12.4801	8.90857	9.72214
+GO:0006313	transposition, DNA-mediated	biological_process	Escherichia	Escherichia coli	10.6623	0	4.68705	0	0	1.63625
+GO:0006313	transposition, DNA-mediated	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.123683	0.356213	0.401717	0.253103	0.386681	0.493718
+GO:0006351	transcription, DNA-templated	biological_process	Clostridium	Clostridium thermocellum	164.724	1325.19	1224.52	2960.81	2573.94	3008.1
+GO:0006351	transcription, DNA-templated	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	963.689	1463.74	1175.16	759.157	866.563	813.038
+GO:0006351	transcription, DNA-templated	biological_process	Escherichia	Escherichia coli	17.9065	0	10.8492	0	0	5.91291
+GO:0006351	transcription, DNA-templated	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	32.0609	46.0881	31.7828	49.012	19.4615	56.3162
+GO:0006352	DNA-templated transcription, initiation	biological_process	Clostridium	Clostridium thermocellum	54.2278	290.859	233.105	793.09	749.265	841.275
+GO:0006352	DNA-templated transcription, initiation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	170.255	122.214	124.81	81.1139	113.434	92.5824
+GO:0006352	DNA-templated transcription, initiation	biological_process	Escherichia	Escherichia coli	0.355301	0	0.204602	0	0	0
+GO:0006352	DNA-templated transcription, initiation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.67367	7.50012	4.96851	4.06704	2.46463	4.71967
+GO:0006353	DNA-templated transcription, termination	biological_process	Clostridium	Clostridium thermocellum	37.68	219.701	171.354	521.356	508.361	568.762
+GO:0006353	DNA-templated transcription, termination	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	121.719	157.281	136.164	149.221	188.105	134.129
+GO:0006353	DNA-templated transcription, termination	biological_process	Escherichia	Escherichia coli	0.123319	0	0.0812816	0	0	0.0241572
+GO:0006353	DNA-templated transcription, termination	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.172364	0.331009	0	0.881596	0.460688	0.800743
+GO:0006354	DNA-templated transcription, elongation	biological_process	Clostridium	Clostridium thermocellum	11.3204	50.8585	32.9726	201.327	197.621	156.937
+GO:0006354	DNA-templated transcription, elongation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	61.4545	80.1168	56.7512	84.885	109.133	88.1916
+GO:0006354	DNA-templated transcription, elongation	biological_process	Escherichia	Escherichia coli	0.0613677	0	0	0	0	0
+GO:0006355	regulation of transcription, DNA-templated	biological_process	Clostridium	Clostridium thermocellum	150.96	1377.26	1373.87	2729.98	2518.85	3040.49
+GO:0006355	regulation of transcription, DNA-templated	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	938.636	1658.44	1172.12	751.274	813.121	749.815
+GO:0006355	regulation of transcription, DNA-templated	biological_process	Escherichia	Escherichia coli	7.09773	0	3.97856	0	0	3.77544
+GO:0006355	regulation of transcription, DNA-templated	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	9.55458	29.3612	16.6682	12.0298	8.20336	20.2803
+GO:0006364	rRNA processing	biological_process	Clostridium	Clostridium thermocellum	21.6873	150.553	106.646	400.291	363.636	400.131
+GO:0006364	rRNA processing	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	109.158	93.7532	82.9219	83.8596	105.482	68.8383
+GO:0006364	rRNA processing	biological_process	Escherichia	Escherichia coli	0.261512	0	0	0	0	0.0680087
+GO:0006364	rRNA processing	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.92549	2.10321	5.19553	8.02253	2.50775	6.84653
+GO:0006367	transcription initiation from RNA polymerase II promoter	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.502243	3.85533	1.2821	0.642147	0.616732	1.91278
+GO:0006378	mRNA polyadenylation	biological_process	Escherichia	Escherichia coli	0	0	0.0742451	0	0	0
+GO:0006379	mRNA cleavage	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.64781	1.76795	0.341726	3.57145	0.822085	6.1105
+GO:0006388	tRNA splicing, via endonucleolytic cleavage and ligation	biological_process	Clostridium	Clostridium thermocellum	0.801937	6.93789	6.93591	10.7004	9.95663	15.0828
+GO:0006388	tRNA splicing, via endonucleolytic cleavage and ligation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.265668	1.02598	0.991347	0.411078	0.0597915	0
+GO:0006396	RNA processing	biological_process	Clostridium	Clostridium thermocellum	25.1889	100.817	77.7341	298.521	287.296	305.909
+GO:0006396	RNA processing	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	135.44	105.201	98.5433	91.8139	104.844	82.173
+GO:0006396	RNA processing	biological_process	Escherichia	Escherichia coli	0.363905	0	0.33505	0	0	0.135177
+GO:0006396	RNA processing	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.884522	1.83147	2.64242	2.07016	1.054	2.3837
+GO:0006397	mRNA processing	biological_process	Clostridium	Clostridium thermocellum	1.29891	6.48698	2.88541	28.1773	22.2648	16.6507
+GO:0006400	tRNA modification	biological_process	Clostridium	Clostridium thermocellum	7.12204	59.4064	49.2044	167.6	152.573	140.148
+GO:0006400	tRNA modification	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	59.3036	41.3259	25.5251	16.2168	19.669	14.5706
+GO:0006400	tRNA modification	biological_process	Escherichia	Escherichia coli	0.160018	0	0.186605	0	0	0
+GO:0006400	tRNA modification	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.414117	0.158737	0.461844	0.26335	0.147884	0.238047
+GO:0006401	RNA catabolic process	biological_process	Clostridium	Clostridium thermocellum	6.60254	42.4215	39.2954	125.812	115.846	91.043
+GO:0006401	RNA catabolic process	biological_process	Escherichia	Escherichia coli	0.218275	0	0.0815974	0	0	0.0966286
+GO:0006401	RNA catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.13707	4.92523	4.37198	3.57137	1.55679	3.69284
+GO:0006402	mRNA catabolic process	biological_process	Clostridium	Clostridium thermocellum	71.5998	419.342	309.158	1101.61	1106.11	1239.69
+GO:0006402	mRNA catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	45.006100000000004	66.6318	57.0036	41.4935	47.6957	42.4064
+GO:0006402	mRNA catabolic process	biological_process	Escherichia	Escherichia coli	0.157831	0	0	0	0	0
+GO:0006412	translation	biological_process	Clostridium	Clostridium thermocellum	1143.89	7860.87	4330.21	25293.4	22865.7	29087
+GO:0006412	translation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	7168.49	8954.82	6667.55	9784.23	11084.7	8918.76
+GO:0006412	translation	biological_process	Escherichia	Escherichia coli	2.16323	0	2.26208	0	0	1.02417
+GO:0006412	translation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	28.3096	78.6725	98.6475	105.263	54.9794	86.1134
+GO:0006414	translational elongation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.299178	0.578309	0.478277	1.11121	0.414617
+GO:0006415	translational termination	biological_process	Clostridium	Clostridium thermocellum	4.57116	19.918	15.7805	60.6957	72.1577	83.0681
+GO:0006415	translational termination	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	29.1754	32.5188	25.8589	27.779	37.1724	34.0301
+GO:0006417	regulation of translation	biological_process	Clostridium	Clostridium thermocellum	29.5781	51.7533	27.0008	262.427	196.911	154.505
+GO:0006417	regulation of translation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	19.8934	33.9467	29.8872	33.8104	51.1115	38.6829
+GO:0006417	regulation of translation	biological_process	Escherichia	Escherichia coli	0.0640412	0	0	0	0	0.0213113
+GO:0006417	regulation of translation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.54731	6.5134	2.81937	7.9523	4.54852	7.20401
+GO:0006418	tRNA aminoacylation for protein translation	biological_process	Clostridium	Clostridium thermocellum	8.44719	22.8474	17.5299	64.1393	54.8431	56.0281
+GO:0006418	tRNA aminoacylation for protein translation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	31.5281	47.8248	39.7871	44.0812	45.2613	27.3038
+GO:0006418	tRNA aminoacylation for protein translation	biological_process	Escherichia	Escherichia coli	0.0299426	0	0	0	0	0
+GO:0006418	tRNA aminoacylation for protein translation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0335396	0.128866	0.0622468	0.0686415	0.02995	0.156229
+GO:0006419	alanyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	5.49719	19.1865	11.5244	63.4788	64.6384	64.436
+GO:0006419	alanyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	6.59223	6.15028	6.41724	6.8654	7.66215	7.15369
+GO:0006419	alanyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.0195891	0	0	0	0	0
+GO:0006420	arginyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	14.0925	38.9658	49.3593	83.7525	86.937	71.8438
+GO:0006420	arginyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	41.754	41.1333	32.755	51.7953	57.2362	34.3873
+GO:0006420	arginyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.076655	0	0	0	0	0
+GO:0006420	arginyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0792798	1.03517	0.646194	0.259569	0.184019	0.0843722
+GO:0006421	asparaginyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	2.34199	16.3389	11.4461	45.0052	43.2546	38.7695
+GO:0006421	asparaginyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	17.2449	20.8917	17.6842	13.8413	16.2779	15.6655
+GO:0006421	asparaginyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.0950045	0	0	0	0	0
+GO:0006422	aspartyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0417544	0.0801853	0.154985	0.213386	0.0372856	0.138863
+GO:0006423	cysteinyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	1.56572	12.2106	8.96696	28.6586	23.4713	15.921
+GO:0006423	cysteinyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.6957	7.68243	4.86418	7.07781	9.52005	7.78834
+GO:0006423	cysteinyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.039324	0	0.036491	0	0	0.0523243
+GO:0006424	glutamyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	6.61953	33.0496	27.0863	99.7149	103.601	83.1163
+GO:0006424	glutamyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.1668	7.405	5.89757	6.48456	9.30782	6.88159
+GO:0006424	glutamyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.0384004	0	0	0	0	0
+GO:0006424	glutamyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0321543	0.308746	0.0596757	0	0.0574259	0
+GO:0006425	glutaminyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	2.33414	19.5644	13.4457	57.1243	62.2455	49.6799
+GO:0006426	glycyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	4.03843	22.7861	16.3044	71.33	61.2833	62.8522
+GO:0006426	glycyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	16.6999	6.40707	6.34443	9.92818	11.3027	9.74119
+GO:0006426	glycyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.334229	0	0	0	0	0
+GO:0006426	glycyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.0904535	0.349394	0.176727	0.0701004	0.0835637
+GO:0006427	histidyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	2.63978	11.8759	8.04715	27.4492	23.7777	26.3258
+GO:0006427	histidyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.6129	19.4776	14.613	22.3125	23.2156	14.0687
+GO:0006427	histidyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.0432126	0	0	0	0	0.0287493
+GO:0006427	histidyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.307325	0.866309	0.228328	0.209879	0.256377	0.327464
+GO:0006428	isoleucyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	55.1984	36.1391	27.3652	30.631	32.1575	26.0457
+GO:0006428	isoleucyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.00911402	0	0.0338298	0	0	0
+GO:0006428	isoleucyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0977023	0.156263	0.120885	0.13308	0.0581638	0.173336
+GO:0006429	leucyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	5.48015	36.422	27.236	91.0435	87.979	79.0557
+GO:0006429	leucyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	29.2374	12.0659	12.6704	13.3937	15.282	10.5045
+GO:0006429	leucyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.0199779	0	0	0	0	0.0265826
+GO:0006429	leucyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.209841	0.140161	0.237034	0.140044	0.105889	0.169909
+GO:0006430	lysyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	1.45601	14.2331	9.50287	38.4728	37.9494	40.2274
+GO:0006430	lysyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	37.675	31.0372	19.2826	53.2743	51.8031	42.9871
+GO:0006430	lysyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.112236	0	0.0659455	0	0	0.046471
+GO:0006430	lysyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0981884	0.125739	0.121517	0.100475	0.0292338	0
+GO:0006431	methionyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	2.43692	9.97597	6.73366	33.4126	30.0803	23.122
+GO:0006431	methionyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	24.9197	13.0987	14.9571	14.1977	14.6997	10.6684
+GO:0006431	methionyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.0386921	0	0	0	0	0
+GO:0006431	methionyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.103382	0.049932699999999997	0.275362	0.120169	0.143261
+GO:0006432	phenylalanyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	1.97312	28.3832	22.7411	42.6145	37.7424	32.7753
+GO:0006432	phenylalanyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	42.5364	32.6279	31.8027	38.7024	45.6252	27.2614
+GO:0006432	phenylalanyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.0434313	0	0.0540825	0	0	0
+GO:0006432	phenylalanyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.153869	0.502441	0.12517	0.486012	0.204919	0.40194
+GO:0006433	prolyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	2.52422	18.083	14.3411	44.9913	40.6442	43.3146
+GO:0006433	prolyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	21.8478	24.8163	15.5358	30.7611	38.881100000000004	29.2867
+GO:0006433	prolyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.0309634	0	0	0	0	0
+GO:0006433	prolyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0748079	0.143708	0.138837	0.228929	0.133603	0.0993774
+GO:0006434	seryl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	2.40476	16.8858	13.3064	39.3101	43.4919	37.9766
+GO:0006434	seryl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	7.1783	5.77516	2.36222	9.40884	9.56265	9.14085
+GO:0006434	seryl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.0212417	0	0	0	0	0
+GO:0006434	seryl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.139675	0.167605	0.22675	0.303739	0.15587	0.232323
+GO:0006435	threonyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	4.03547	29.0893	18.9049	72.3296	67.5599	52.1923
+GO:0006435	threonyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	50.5135	73.2095	59.1197	59.8116	67.3875	40.0379
+GO:0006435	threonyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0	0	0.0499778	0	0	0
+GO:0006435	threonyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.116562	0.167885	0.162248	0.208735	0.117087	0.387776
+GO:0006436	tryptophanyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	2.31474	19.8864	9.66349	46.4333	46.0442	41.3628
+GO:0006436	tryptophanyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.7707	13.9259	10.8528	20.4638	22.8987	18.5213
+GO:0006436	tryptophanyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.113597	0	0	0	0	0
+GO:0006436	tryptophanyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.154209	0.395045	0.28638	0.39444	0.137792	0.0684291
+GO:0006437	tyrosyl-tRNA aminoacylation	biological_process	Clostridium	Clostridium thermocellum	0.924769	11.7781	8.03421	31.9374	31.988	25.6617
+GO:0006437	tyrosyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	1.46072	1.20339	1.41855	1.02027	1.26406	0.678696
+GO:0006437	tyrosyl-tRNA aminoacylation	biological_process	Escherichia	Escherichia coli	0.0432126	0	0	0	0	0
+GO:0006437	tyrosyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0300155	0.230474	0.111368	0.0307146	0.0535845	0.239437
+GO:0006438	valyl-tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	52.0003	32.0423	38.9351	29.4323	33.8191	26.451
+GO:0006438	valyl-tRNA aminoacylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.038206	0.348559	0.0354536	0.215052	0.12796	0.127124
+GO:0006449	regulation of translational termination	biological_process	Clostridium	Clostridium thermocellum	0.853583	3.40601	1.55301	10.2901	11.8347	12.735900000000001
+GO:0006449	regulation of translational termination	biological_process	Escherichia	Escherichia coli	0.033734	0	0.0626527	0	0	0.0224432
+GO:0006450	regulation of translational fidelity	biological_process	Clostridium	Clostridium thermocellum	1.23156	5.96101	4.87076	16.4469	20.2092	20.5046
+GO:0006450	regulation of translational fidelity	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.230816	0.0805587	0	0.128802	0.0562323	0.0837254
+GO:0006452	translational frameshifting	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0006457	protein folding	biological_process	Clostridium	Clostridium thermocellum	31.557	350.892	344.238	606.168	625.807	632.404
+GO:0006457	protein folding	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	252.525	156.135	227.791	102.427	149.864	181.694
+GO:0006457	protein folding	biological_process	Escherichia	Escherichia coli	0.255654	0	0.40519	0	0	0.0530681
+GO:0006457	protein folding	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.22132	10.3413	10.4654	4.46938	4.56573	9.31994
+GO:0006461	protein complex assembly	biological_process	Clostridium	Clostridium thermocellum	0.413995	2.15095	2.25884	18.9885	10.7841	9.65254
+GO:0006461	protein complex assembly	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	11.1449	13.6771	5.03229	7.06966	9.38825	10.6529
+GO:0006461	protein complex assembly	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.185201	0.357829	0.788656	0.0861172	0.256674
+GO:0006464	cellular protein modification process	biological_process	Clostridium	Clostridium thermocellum	0.217497	2.60971	0.706365	3.28263	1.65025	7.94968
+GO:0006464	cellular protein modification process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	166.619	216.391	385.592	107.014	124.807	102.897
+GO:0006464	cellular protein modification process	biological_process	Escherichia	Escherichia coli	0.717772	0	0.0994144	0	0	0
+GO:0006464	cellular protein modification process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	3.51869	3.01918	5.77853	3.45685	3.36187	2.86076
+GO:0006465	signal peptide processing	biological_process	Escherichia	Escherichia coli	0.0846024	0	0	0	0	0.0379012
+GO:0006465	signal peptide processing	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.340816	0.979772	0.316556	0.261783	0.0761555	0.113477
+GO:0006468	protein phosphorylation	biological_process	Escherichia	Escherichia coli	0.120597	0	0	0	0	0
+GO:0006470	protein dephosphorylation	biological_process	Escherichia	Escherichia coli	0.242652	0	0.177945	0	0	0
+GO:0006474	N-terminal protein amino acid acetylation	biological_process	Clostridium	Clostridium thermocellum	0.863936	4.81023	4.66521	16.7138	12.776	11.1884
+GO:0006474	N-terminal protein amino acid acetylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	7.87636	3.88773	3.60458	1.22769	3.346	1.58729
+GO:0006474	N-terminal protein amino acid acetylation	biological_process	Escherichia	Escherichia coli	0.0736413	0	0.135454	0	0	0
+GO:0006474	N-terminal protein amino acid acetylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.227146	0.435745	0	0.309907	0.202835	0.20118
+GO:0006479	protein methylation	biological_process	Escherichia	Escherichia coli	0.150126	0	0	0	0	0
+GO:0006486	protein glycosylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.228774	0.391592	0.231305	0.153225	0.327671	0.202312
+GO:0006493	protein O-linked glycosylation	biological_process	Clostridium	Clostridium thermocellum	2.50346	4.38419	2.69903	22.4856	20.2827	17.4859
+GO:0006493	protein O-linked glycosylation	biological_process	Escherichia	Escherichia coli	0.0323487	0	0.0586834	0	0	0
+GO:0006508	proteolysis	biological_process	Clostridium	Clostridium thermocellum	0.486081	5.91	2.38342	6.28965	5.7809	15.2818
+GO:0006508	proteolysis	biological_process	Escherichia	Escherichia coli	1.45693	0	0.846285	0	0	0.170717
+GO:0006511	ubiquitin-dependent protein catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.488463	0.781783	0.453319	0.166505	0.217876	1.0818
+GO:0006515	misfolded or incompletely synthesized protein catabolic process	biological_process	Clostridium	Clostridium thermocellum	3.384	11.554	11.2844	33.3054	26.5787	30.8817
+GO:0006515	misfolded or incompletely synthesized protein catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	14.3745	14.8853	9.86895	18.6179	26.4482	29.9665
+GO:0006515	misfolded or incompletely synthesized protein catabolic process	biological_process	Escherichia	Escherichia coli	0.194675	0	0.218766	0	0	0.0530681
+GO:0006520	cellular amino acid metabolic process	biological_process	Clostridium	Clostridium thermocellum	4.75844	179.434	126.828	508.831	598.8	832.114
+GO:0006520	cellular amino acid metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	93.957	92.2553	107.802	72.9845	92.6523	81.1496
+GO:0006520	cellular amino acid metabolic process	biological_process	Escherichia	Escherichia coli	0.51668	0	0.322285	0	0	0
+GO:0006520	cellular amino acid metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.603664	0.353553	0.430044	0.305778	0.265665	0.88518
+GO:0006522	alanine metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.111701	0.321908	0.103745	0	0.124727	0.0743471
+GO:0006523	alanine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.52193	14.4972	11.4945	32.9542	31.4178	34.2164
+GO:0006523	alanine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	29.9563	26.9304	27.2579	21.9174	19.4253	18.9558
+GO:0006523	alanine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0446465	0	0	0	0	0
+GO:0006525	arginine metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	82.2044	17.393	23.6271	27.2268	30.7455	22.1183
+GO:0006525	arginine metabolic process	biological_process	Escherichia	Escherichia coli	0.260928	0	0	0	0	0
+GO:0006526	arginine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	7.94956	35.4299	30.2387	135.449	101.166	96.0519
+GO:0006526	arginine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	110.225	64.4571	68.7743	37.0576	48.5997	48.8203
+GO:0006526	arginine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.439563	0	0.139694	0	0	0.103581
+GO:0006526	arginine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.20966	2.4042	1.89032	1.493	1.21436	3.2715
+GO:0006527	arginine catabolic process	biological_process	Escherichia	Escherichia coli	0.0887584	0	0.0493915	0	0	0
+GO:0006527	arginine catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.305059	0.147408	0	0	0
+GO:0006528	asparagine metabolic process	biological_process	Escherichia	Escherichia coli	0.135471	0	0.0502936	0	0	0.0360579
+GO:0006529	asparagine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.0574548	0.220626	0.106631	0.26422	0.205223	0.324909
+GO:0006529	asparagine biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.452292
+GO:0006529	asparagine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0771897	0.074071	0.286425	0.176802	0.0344425	0.256641
+GO:0006531	aspartate metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.274417	0.316447	0.10176	0.224826	0.637198	0.219193
+GO:0006531	aspartate metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.244572	0.104409	0.756839	0.862297	0.194176	0.506492
+GO:0006535	cysteine biosynthetic process from serine	biological_process	Clostridium	Clostridium thermocellum	9.21889	942.806	640.11	1470.31	1286.49	1136.76
+GO:0006535	cysteine biosynthetic process from serine	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	6.37537	20.7263	18.0253	14.2907	15.7527	11.2618
+GO:0006535	cysteine biosynthetic process from serine	biological_process	Escherichia	Escherichia coli	0.0662285	0	0.109744	0	0	0
+GO:0006536	glutamate metabolic process	biological_process	Escherichia	Escherichia coli	0.27867	0	0	0	0	0.0517099
+GO:0006537	glutamate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.0358485	4.2676	11.7037	15.034	23.2169	30.3742
+GO:0006537	glutamate biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	8.8536	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0006537	glutamate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.133259	0	0.113894	0	0	0
+GO:0006537	glutamate biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.295076	0.463002	0.367572	1.10774	0.474339	0.297194
+GO:0006541	glutamine metabolic process	biological_process	Clostridium	Clostridium thermocellum	18.3298	83.207	52.1163	271.671	262.208	228.773
+GO:0006541	glutamine metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	153.962	75.4199	72.4702	69.8816	83.9803	51.9815
+GO:0006541	glutamine metabolic process	biological_process	Escherichia	Escherichia coli	0.487029	0	0.0439787	0	0	0.146657
+GO:0006541	glutamine metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.04323	2.65503	2.14445	2.96146	1.79075	3.39332
+GO:0006542	glutamine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.24208	10.5026	19.1823	47.285	51.3849	47.0985
+GO:0006542	glutamine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	89.8945	66.5803	94.2909	35.8416	41.9936	38.8995
+GO:0006542	glutamine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.212272	0	0	0	0	0
+GO:0006542	glutamine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.12344	0.0791584	0.229546	0.126465	0.0368081	0.164573
+GO:0006543	glutamine catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.652544	0.420797	1.67843	0.202358	1.1316
+GO:0006544	glycine metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	33.2716	51.5545	66.8396	27.4989	35.3101	21.7446
+GO:0006545	glycine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	4.66723	34.7584	21.8931	95.8256	97.9612	69.4259
+GO:0006555	methionine metabolic process	biological_process	Clostridium	Clostridium thermocellum	0.220584	3.75139	3.04175	10.2494	9.54049	13.2489
+GO:0006555	methionine metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.722657	0.346785	0.335366	0.154046	0.484084	0.24044
+GO:0006556	S-adenosylmethionine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.44273	25.2447	17.4504	80.409	108.614	87.4991
+GO:0006556	S-adenosylmethionine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	27.8182	10.2815	7.51373	26.666	34.968	18.8696
+GO:0006556	S-adenosylmethionine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.13462	0.215492	0.0833114	0.183691	0.320661	0.298617
+GO:0006557	S-adenosylmethioninamine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	17.8211	150.459	93.7517	655.139	644.823	950.994
+GO:0006557	S-adenosylmethioninamine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	91.4887	110.189	143.464	72.4909	93.239	81.7297
+GO:0006557	S-adenosylmethioninamine biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0.0699148	0	0	0.0501253
+GO:0006561	proline biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.540085	2.86455	2.88893	11.9237	4.87905	5.78973
+GO:0006561	proline biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	40.8268	47.4838	37.6034	33.4503	33.3063	29.2921
+GO:0006561	proline biosynthetic process	biological_process	Escherichia	Escherichia coli	0.00636766	0	0	0	0	0
+GO:0006561	proline biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.371609	0.127419	0.332163	0.366237	0.308116	0.511892
+GO:0006564	L-serine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	3.83627	38.8084	29.9703	82.1011	81.3638	64.717
+GO:0006564	L-serine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0224326	0	0.206136	0	0	0
+GO:0006564	L-serine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.179121	0.675647	0.395673	0.451492	0.722751	1.06285
+GO:0006569	tryptophan catabolic process	biological_process	Escherichia	Escherichia coli	0.221993	0	0.199641	0	0	0.134886
+GO:0006570	tyrosine metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0258109	0.148609	0	0.369296	0.115025	0
+GO:0006571	tyrosine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	3.38371	16.3874	12.5114	61.2005	62.8299	58.0045
+GO:0006571	tyrosine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0698499	0	0	0	0	0
+GO:0006571	tyrosine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.2427	0.544541	0.41349	0.496905	0.289343	0.565963
+GO:0006593	ornithine catabolic process	biological_process	Escherichia	Escherichia coli	0.0680757	0	0	0	0	0
+GO:0006605	protein targeting	biological_process	Clostridium	Clostridium thermocellum	49.1403	203.27	133.526	944.343	781.244	838.359
+GO:0006605	protein targeting	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	229.033	209.599	183.924	204.744	292.953	237.531
+GO:0006605	protein targeting	biological_process	Escherichia	Escherichia coli	0.130464	0	0.283087	0	0	0.0273587
+GO:0006605	protein targeting	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.479884	0.348138	0.905871	0.768238	0.663957	0.866585
+GO:0006614	SRP-dependent cotranslational protein targeting to membrane	biological_process	Clostridium	Clostridium thermocellum	5.75785	37.1508	25.7878	104.476	103.333	103.266
+GO:0006614	SRP-dependent cotranslational protein targeting to membrane	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	22.7115	17.1426	18.7198	10.9277	14.4437	12.0794
+GO:0006614	SRP-dependent cotranslational protein targeting to membrane	biological_process	Escherichia	Escherichia coli	0.0181551	0	0	0	0	0
+GO:0006614	SRP-dependent cotranslational protein targeting to membrane	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.32231	0.877791	1.02031	1.39887	1.12061	0.698649
+GO:0006627	protein processing involved in protein targeting to mitochondrion	biological_process	Clostridium	Clostridium thermocellum	2.75139	29.8022	17.9531	85.0748	71.176	68.1265
+GO:0006629	lipid metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	83.4374	87.955	117.991	64.8213	72.8441	53.7094
+GO:0006629	lipid metabolic process	biological_process	Escherichia	Escherichia coli	0.118312	0	0	0	0	0
+GO:0006629	lipid metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.359773	0.138901	0.335591	0.147927	0.0322939	0
+GO:0006631	fatty acid metabolic process	biological_process	Escherichia	Escherichia coli	0.222188	0	0	0	0	0.0960142
+GO:0006633	fatty acid biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	37.526	210.249	125.572	805.318	642.782	578.118
+GO:0006633	fatty acid biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	289.769	157.706	129.753	180.723	215.893	161.83
+GO:0006633	fatty acid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.172559	0	0.966629	0	0	0.0539089
+GO:0006635	fatty acid beta-oxidation	biological_process	Escherichia	Escherichia coli	0.194262	0	0.0881829	0	0	0.0158461
+GO:0006641	triglyceride metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0006646	phosphatidylethanolamine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0296752	0	0	0	0	0
+GO:0006646	phosphatidylethanolamine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.35766	0.172802	0.19058	0.415611	0.803427
+GO:0006650	glycerophospholipid metabolic process	biological_process	Clostridium	Clostridium thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0006650	glycerophospholipid metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.14437	4.0171	3.62457	3.57142	2.38044	3.65433
+GO:0006655	phosphatidylglycerol biosynthetic process	biological_process	Escherichia	Escherichia coli	0.060906	0	0.244476	0	0	0.175277
+GO:0006662	glycerol ether metabolic process	biological_process	Clostridium	Clostridium thermocellum	38.8844	434.038	334.012	974.87	757.718	1469.5
+GO:0006662	glycerol ether metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	66.74	167.601	230.571	124.749	143.671	96.3272
+GO:0006662	glycerol ether metabolic process	biological_process	Escherichia	Escherichia coli	0.0685131	0	0	0	0	0
+GO:0006662	glycerol ether metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.450087	2.58903	0.41764	0.690842	0.801966	1.19499
+GO:0006665	sphingolipid metabolic process	biological_process	Clostridium	Clostridium thermocellum	1.10134	2.62324	4.47595	5.63485	5.90085	6.5278
+GO:0006725	cellular aromatic compound metabolic process	biological_process	Clostridium	Clostridium thermocellum	6.5338	41.5837	28.6976	66.6847	86.606	106.486
+GO:0006725	cellular aromatic compound metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	62.4891	45.4467	49.2424	37.3337	55.9564	46.8678
+GO:0006725	cellular aromatic compound metabolic process	biological_process	Escherichia	Escherichia coli	0.109417	0	0	0	0	0
+GO:0006725	cellular aromatic compound metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.14213	0.272947	0.263692	1.65272	0.0317297	0
+GO:0006730	one-carbon metabolic process	biological_process	Clostridium	Clostridium thermocellum	9.85743	229.335	225.962	278.674	300.875	271.853
+GO:0006730	one-carbon metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	44.7513	32.178	26.851	55.7994	72.6024	40.7809
+GO:0006730	one-carbon metabolic process	biological_process	Escherichia	Escherichia coli	0.0654265	0	0.365136	0	0	0
+GO:0006730	one-carbon metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	40.6945	18.8299	54.8542	42.8272	37.4459	71.7083
+GO:0006734	NADH metabolic process	biological_process	Escherichia	Escherichia coli	0.0330049	0	0	0	0	0
+GO:0006739	NADP metabolic process	biological_process	Escherichia	Escherichia coli	0.0953691	0	0.07208	0	0	0.0517099
+GO:0006740	NADPH regeneration	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.339924	0.246461	0	0.276647	0.0588891
+GO:0006741	NADP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	3.27337	43.3958	38.1945	99.6322	94.2849	136.194
+GO:0006741	NADP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	30.4671	40.6183	32.4355	23.0473	31.7517	24.0679
+GO:0006741	NADP biosynthetic process	biological_process	Escherichia	Escherichia coli	0.233368	0	0	0	0	0
+GO:0006741	NADP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.207727	0.398826	0.192649	0.070855	0.15459	0
+GO:0006744	ubiquinone biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	9.60649	78.6496	60.5386	280.636	190.9	185.378
+GO:0006744	ubiquinone biosynthetic process	biological_process	Escherichia	Escherichia coli	0.267418	0	0.122915	0	0	0.154774
+GO:0006744	ubiquinone biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.173288	0.290917	0.321247	0.177324	0.0580336	0.0576602
+GO:0006747	FAD biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.18476	13.2453	14.3414	40.3507	33.9304	35.5191
+GO:0006747	FAD biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	11.502	12.0994	6.78476	11.8856	12.0771	13.8432
+GO:0006747	FAD biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0794256	0.457588	0.588683	1.70599	0.70834	0.422734
+GO:0006749	glutathione metabolic process	biological_process	Escherichia	Escherichia coli	0.227364	0	0.0750119	0	0	0
+GO:0006750	glutathione biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0	1.46588	1.69992	1.48547	0.477746	0.915255
+GO:0006750	glutathione biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0455458	0	0	0	0	0
+GO:0006772	thiamine metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	5.52963	3.21931	2.74946	2.52561	2.69027	2.35556
+GO:0006777	Mo-molybdopterin cofactor biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	121.76	47.0808	42.6733	35.536	42.2358	31.167
+GO:0006777	Mo-molybdopterin cofactor biosynthetic process	biological_process	Escherichia	Escherichia coli	0.272594	0	0.329637	0	0	0.0743471
+GO:0006777	Mo-molybdopterin cofactor biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.07089	2.3671	1.79041	4.05542	1.54603	3.54971
+GO:0006779	porphyrin-containing compound biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.10579	177.859	180.352	89.2808	88.7406	94.6287
+GO:0006779	porphyrin-containing compound biosynthetic process	biological_process	Escherichia	Escherichia coli	0.377636	0	0.173569	0	0	0
+GO:0006779	porphyrin-containing compound biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.301954	0.655951	0.0781693	0.570197	0.664196	0.752138
+GO:0006782	protoporphyrinogen IX biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.52645	14.6026	15.6358	31.3887	23.3237	22.4876
+GO:0006782	protoporphyrinogen IX biosynthetic process	biological_process	Escherichia	Escherichia coli	0.329223	0	0.429232	0	0	0
+GO:0006782	protoporphyrinogen IX biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.509875	1.31531	2.35099	1.19889	0.689805	1.33223
+GO:0006783	heme biosynthetic process	biological_process	Escherichia	Escherichia coli	0.149008	0	0.109338	0	0	0
+GO:0006790	sulfur compound metabolic process	biological_process	Escherichia	Escherichia coli	0.189596	0	0	0	0	0
+GO:0006793	phosphorus metabolic process	biological_process	Escherichia	Escherichia coli	0.0349249	0	0.0648178	0	0	0
+GO:0006796	phosphate-containing compound metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.122518	0	0.19547900000000001	0.170889	0.169747
+GO:0006805	xenobiotic metabolic process	biological_process	Escherichia	Escherichia coli	0.431008	0	0	0	0	0
+GO:0006807	nitrogen compound metabolic process	biological_process	Clostridium	Clostridium thermocellum	1.91424	18.0432	28.1874	80.3704	75.4314	96.7531
+GO:0006807	nitrogen compound metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	68.7203	92.6506	77.1084	82.9228	92.4925	80.5627
+GO:0006807	nitrogen compound metabolic process	biological_process	Escherichia	Escherichia coli	0.20797	0	0.141183	0	0	0.101221
+GO:0006807	nitrogen compound metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.134733	0.631801	0.129762	0
+GO:0006808	regulation of nitrogen utilization	biological_process	Clostridium	Clostridium thermocellum	29.5502	131.469	92.9205	281.49	268.928	416.262
+GO:0006808	regulation of nitrogen utilization	biological_process	Escherichia	Escherichia coli	0.134815	0	0.0358144	0	0	0
+GO:0006808	regulation of nitrogen utilization	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.642259	1.17865	0.205956	0.531599	0.464442	1.83536
+GO:0006810	transport	biological_process	Clostridium	Clostridium thermocellum	126.041	523.997	464.856	1379.54	1287.84	1186.42
+GO:0006810	transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	1622.31	749.489	1107.24	532.472	668.228	543.656
+GO:0006810	transport	biological_process	Escherichia	Escherichia coli	2.83757	0	2.04332	0	0	0.751912
+GO:0006810	transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.49299	3.65851	3.28478	4.16726	2.65761	4.40695
+GO:0006811	ion transport	biological_process	Escherichia	Escherichia coli	1.85792	0	1.65283	0	0	0.833373
+GO:0006813	potassium ion transport	biological_process	Clostridium	Clostridium thermocellum	0.298211	3.37077	2.55194	7.38812	7.07064	9.19162
+GO:0006813	potassium ion transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	58.6051	41.5047	41.8137	28.3159	34.0254	28.5067
+GO:0006813	potassium ion transport	biological_process	Escherichia	Escherichia coli	0.626802	0	0.261166	0	0	0.120139
+GO:0006813	potassium ion transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.692204	1.49407	0.948541	2.37574	0.798038	1.33123
+GO:0006814	sodium ion transport	biological_process	Clostridium	Clostridium thermocellum	5.74186	19.6854	17.1418	81.1865	67.3804	47.0333
+GO:0006814	sodium ion transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	45.0709	41.4527	36.131100000000004	39.6496	43.8495	39.3051
+GO:0006814	sodium ion transport	biological_process	Escherichia	Escherichia coli	1.47173	0	0.0728919	0	0	0.0506427
+GO:0006814	sodium ion transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	4.65863	2.91715	9.59719	11.576	11.255	11.281
+GO:0006817	phosphate ion transport	biological_process	Clostridium	Clostridium thermocellum	2.90847	19.9349	16.6952	32.2327	38.368	43.4403
+GO:0006817	phosphate ion transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	90.0587	23.2862	17.7497	20.0183	25.6122	19.0488
+GO:0006817	phosphate ion transport	biological_process	Escherichia	Escherichia coli	0.180774	0	0.310332	0	0	0.240666
+GO:0006817	phosphate ion transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.379945	0.730255	1.63592	1.10871	0.585046	1.07029
+GO:0006820	anion transport	biological_process	Escherichia	Escherichia coli	0.0715025	0	0.484532	0	0	0
+GO:0006824	cobalt ion transport	biological_process	Clostridium	Clostridium thermocellum	4.31181	28.5606	28.0658	49.5695	39.6386	32.0258
+GO:0006824	cobalt ion transport	biological_process	Escherichia	Escherichia coli	0.0237208	0	0.0220119	0	0	0.0478292
+GO:0006824	cobalt ion transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0701415	0.118691	0.390531	0.452686	0.0626346	0.561953
+GO:0006825	copper ion transport	biological_process	Clostridium	Clostridium thermocellum	9.2649	157.246	73.6162	357.928	224.203	535.128
+GO:0006825	copper ion transport	biological_process	Escherichia	Escherichia coli	0.00814186	0	0	0	0	0
+GO:0006826	iron ion transport	biological_process	Clostridium	Clostridium thermocellum	6.25628	115.39	79.7483	294.479	169.316	373.564
+GO:0006826	iron ion transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	62.6168	22.0141	74.5188	8.50255	16.5574	18.8664
+GO:0006826	iron ion transport	biological_process	Escherichia	Escherichia coli	0.139675	0	0.660312	0	0	0.228507
+GO:0006826	iron ion transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.398416	0	0.246461	0.203661	0	0
+GO:0006829	zinc II ion transport	biological_process	Escherichia	Escherichia coli	0.708001	0	0.311144	0	0	0
+GO:0006835	dicarboxylic acid transport	biological_process	Escherichia	Escherichia coli	0.10441	0	0.0387464	0	0	0
+GO:0006855	drug transmembrane transport	biological_process	Escherichia	Escherichia coli	0.501247	0	0.178802	0	0	0.0780984
+GO:0006858	extracellular transport	biological_process	Escherichia	Escherichia coli	0	0	0.466219	0	0	0.103646
+GO:0006865	amino acid transport	biological_process	Clostridium	Clostridium thermocellum	0.86763	4.62619	3.22208	16.2786	12.353	21.5471
+GO:0006865	amino acid transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	81.1355	2.4807	4.76494	2.9156	3.13553	2.95316
+GO:0006865	amino acid transport	biological_process	Escherichia	Escherichia coli	1.41428	0	0.360851	0	0	0.584914
+GO:0006865	amino acid transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.195469	0	0.10428	0	0.271194
+GO:0006869	lipid transport	biological_process	Escherichia	Escherichia coli	0.173069	0	0	0	0	0
+GO:0006874	cellular calcium ion homeostasis	biological_process	Escherichia	Escherichia coli	0.0880536	0	0	0	0	0
+GO:0006879	cellular iron ion homeostasis	biological_process	Clostridium	Clostridium thermocellum	6.25628	115.39	79.7483	294.479	169.316	373.564
+GO:0006879	cellular iron ion homeostasis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	236.703	159.995	199.796	179.002	193.502	146.835
+GO:0006879	cellular iron ion homeostasis	biological_process	Escherichia	Escherichia coli	0.2855	0	0.660312	0	0	0.300461
+GO:0006879	cellular iron ion homeostasis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.25642	0.1768	0.246461	0.297869	0.0822106	0.726687
+GO:0006885	regulation of pH	biological_process	Escherichia	Escherichia coli	0.0955635	0	0.177403	0	0	0
+GO:0006935	chemotaxis	biological_process	Clostridium	Clostridium thermocellum	39.9011	153.227	121.301	1091.54	990.623	840.94
+GO:0006935	chemotaxis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	36.7895	23.57	28.1773	7.00877	10.335	10.4379
+GO:0006935	chemotaxis	biological_process	Escherichia	Escherichia coli	0.261828	0	0.113623	0	0	0.248654
+GO:0006950	response to stress	biological_process	Clostridium	Clostridium thermocellum	13.0814	162.03	293.87	116.541	163.317	222.705
+GO:0006950	response to stress	biological_process	Escherichia	Escherichia coli	0.385365	0	0.425443	0	0	0.0942679
+GO:0006950	response to stress	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.26432	5.3733	5.97118	5.52763	3.27925	4.85112
+GO:0006970	response to osmotic stress	biological_process	Escherichia	Escherichia coli	0.398416	0	0	0	0	0
+GO:0006972	hyperosmotic response	biological_process	Escherichia	Escherichia coli	0.0460319	0	0	0	0	0
+GO:0006974	cellular response to DNA damage stimulus	biological_process	Escherichia	Escherichia coli	5.0368	0	2.84125	0	0	1.53086
+GO:0006979	response to oxidative stress	biological_process	Clostridium	Clostridium thermocellum	16.883	200.229	148.232	506.966	347.335	664.317
+GO:0006979	response to oxidative stress	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	33.573	20.5479	34.6584	24.9246	33.2927	30.7519
+GO:0006979	response to oxidative stress	biological_process	Escherichia	Escherichia coli	1.7608	0	0.323773	0	0	0.506395
+GO:0006979	response to oxidative stress	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.562542	0.259319	0.250611	0.162278	0	0.106039
+GO:0007049	cell cycle	biological_process	Clostridium	Clostridium thermocellum	87.6465	623.172	492.517	1658.04	1523.41	1746.42
+GO:0007049	cell cycle	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	297.796	313.98	266.957	271.272	297.044	221.046
+GO:0007049	cell cycle	biological_process	Escherichia	Escherichia coli	1.82285	0	0.593464	0	0	0.632937
+GO:0007049	cell cycle	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0007059	chromosome segregation	biological_process	Clostridium	Clostridium thermocellum	6.72379	45.7892	39.4453	121.488	116.209	186.388
+GO:0007059	chromosome segregation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	17.2546	16.0043	18.9494	12.4801	8.90857	9.72214
+GO:0007059	chromosome segregation	biological_process	Escherichia	Escherichia coli	0.279472	0	0.0112766	0	0	0
+GO:0007059	chromosome segregation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.123683	0.356213	0.401717	0.253103	0.386681	0.493718
+GO:0007062	sister chromatid cohesion	biological_process	Escherichia	Escherichia coli	0.0836546	0	0	0	0	0
+GO:0007155	cell adhesion	biological_process	Clostridium	Clostridium thermocellum	4.5617	21.9151	16.9857	121.04	115.348	113.012
+GO:0007155	cell adhesion	biological_process	Escherichia	Escherichia coli	2.14184	0	1.28882	0	0	0.662333
+GO:0007155	cell adhesion	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.296339	0.31612	0	0.269493	0.176445	0.131458
+GO:0007165	signal transduction	biological_process	Clostridium	Clostridium thermocellum	0.354013	0.723114	0.509972	3.33183	2.72595	2.76181
+GO:0007165	signal transduction	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0235751
+GO:0007186	G-protein coupled receptor signaling pathway	biological_process	Escherichia	Escherichia coli	0.361523	0	0.379841	0	0	0.0899345
+GO:0007446	imaginal disc growth	biological_process	Clostridium	Clostridium thermocellum	0.844128	1.36483	0.989498	14.7573	12.6659	10.6787
+GO:0007446	imaginal disc growth	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0151414	0.116311	0.168608	0.123953	0.0946464	0.362616
+GO:0007608	sensory perception of smell	biological_process	Escherichia	Escherichia coli	0.361523	0	0.379841	0	0	0.0899345
+GO:0008026	ATP-dependent helicase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0605657	0.0581553	0.22481	0.108459	0.0809953	0.181324
+GO:0008033	tRNA processing	biological_process	Clostridium	Clostridium thermocellum	8.31952	51.1094	43.9072	135.764	123.42	117.665
+GO:0008033	tRNA processing	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	37.0863	31.6207	25.6656	32.4106	35.0013	24.7912
+GO:0008033	tRNA processing	biological_process	Escherichia	Escherichia coli	0.480637	0	0.182185	0	0	0
+GO:0008033	tRNA processing	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.579141	0.828223	1.13497	0.876174	0.548867	1.08604
+GO:0008047	enzyme activator activity	molecular_function	Escherichia	Escherichia coli	0.0704575	0	0	0	0	0
+GO:0008047	enzyme activator activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	3.15724	1.42733	6.11376	1.58348	2.86908	1.84513
+GO:0008073	ornithine decarboxylase inhibitor activity	molecular_function	Escherichia	Escherichia coli	0.0983099	0	0.072937	0	0	0
+GO:0008080	N-acetyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	31.4505	94.0007	69.4138	446.086	347.924	492.377
+GO:0008080	N-acetyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	21.1521	21.4199	16.3102	13.8887	15.5413	13.1466
+GO:0008080	N-acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.484647	0	0.0994144	0	0	0
+GO:0008080	N-acetyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.292475	1.06915	0.466806	0.760503	0.384402	0.401132
+GO:0008081	phosphoric diester hydrolase activity	molecular_function	Escherichia	Escherichia coli	0.0576492	0	0	0	0	0
+GO:0008094	DNA-dependent ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	16.5444	106.025	77.9981	221.871	221.813	226.413
+GO:0008094	DNA-dependent ATPase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	75.3055	93.129	134.803	48.402	58.49	53.6726
+GO:0008094	DNA-dependent ATPase activity	molecular_function	Escherichia	Escherichia coli	0.139748	0	0	0	0	0.0384186
+GO:0008094	DNA-dependent ATPase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.649574	0.880404	2.35212	1.47032	0.193286	0.658258
+GO:0008097	5S rRNA binding	molecular_function	Clostridium	Clostridium thermocellum	1.0118	1.38261	0	6.06257	3.34383	4.79799
+GO:0008097	5S rRNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	47.7832	66.6101	38.517	77.8544	102.211	85.4707
+GO:0008097	5S rRNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.169837	1.30406	0.735775	0.753366	0.505895	0.975341
+GO:0008106	alcohol dehydrogenase (NADP+) activity	molecular_function	Escherichia	Escherichia coli	0.105261	0	0	0	0	0.0743148
+GO:0008108	UDP-glucose:hexose-1-phosphate uridylyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	9.59595	13.7924	5.45755	15.3531	18.278	12.0259
+GO:0008113	peptide-methionine (S)-S-oxide reductase activity	molecular_function	Clostridium	Clostridium thermocellum	0.217497	2.60971	0.706365	3.28263	1.65025	7.94968
+GO:0008113	peptide-methionine (S)-S-oxide reductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.85163	2.10927	1.80651	1.83144	1.68072	1.29517
+GO:0008113	peptide-methionine (S)-S-oxide reductase activity	molecular_function	Escherichia	Escherichia coli	0.0994036	0	0	0	0	0
+GO:0008113	peptide-methionine (S)-S-oxide reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.403958	0.259319	0.250611	0	0	0
+GO:0008115	sarcosine oxidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	24.9721	21.0834	19.3698	18.0473	21.2332	16.4641
+GO:0008121	ubiquinol-cytochrome-c reductase activity	molecular_function	Clostridium	Clostridium thermocellum	0.170857	0.787664	0.539201	1.69599	1.54104	2.41028
+GO:0008131	primary amine oxidase activity	molecular_function	Escherichia	Escherichia coli	0.0686346	0	0	0	0	0
+GO:0008134	transcription factor binding	molecular_function	Escherichia	Escherichia coli	0.0430911	0	0	0	0	0
+GO:0008137	NADH dehydrogenase (ubiquinone) activity	molecular_function	Clostridium	Clostridium thermocellum	14.3932	138.42	72.764	533.184	488.292	520.938
+GO:0008137	NADH dehydrogenase (ubiquinone) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	114.261	138.653	121.844	161.211	169.648	101.808
+GO:0008137	NADH dehydrogenase (ubiquinone) activity	molecular_function	Escherichia	Escherichia coli	0.514347	0	0.0653591	0	0	0.106557
+GO:0008137	NADH dehydrogenase (ubiquinone) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.123853	0.409561	0.12941	1.09162	0.659269	0.401132
+GO:0008138	protein tyrosine/serine/threonine phosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0208286	0	0.177945	0	0	0
+GO:0008143	poly(A) binding	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.027294
+GO:0008143	poly(A) binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.759696	2.22096	1.62162	1.49129	0.460601	0.920041
+GO:0008152	metabolic process	biological_process	Clostridium	Clostridium thermocellum	11.168	16.4009	29.6268	72.423	52.9498	59.8253
+GO:0008152	metabolic process	biological_process	Escherichia	Escherichia coli	0.0251547	0	0	0	0	0
+GO:0008152	metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.511989	1.15709	0.932213	0.64635	0.758039	1.31066
+GO:0008168	methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	24.4054	333.039	291.441	657.494	589.854	592.538
+GO:0008168	methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	210.994	200.193	203.621	142.107	171.568	148.81
+GO:0008168	methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.296266	0	0.33523	0	0	0.256674
+GO:0008168	methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.46826	3.50001	2.88031	2.92843	2.29107	2.82325
+GO:0008170	N-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.114326	8.09129	5.53351	1.43152	1.85276	1.02906
+GO:0008170	N-methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5.46258	3.89958	3.45221	6.18637	6.63148	3.68699
+GO:0008170	N-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0768494	0	0.071268	0	0	0
+GO:0008170	N-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0571388	0.192062	0	0.146112	0.102004	0.132978
+GO:0008171	O-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.298211	2.00458	0.36897	5.43305	5.09589	4.95522
+GO:0008173	RNA methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	16.5154	41.3666	32.725	101.785	92.4117	109.412
+GO:0008173	RNA methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	62.1147	20.9657	24.0939	28.4997	33.7371	24.2185
+GO:0008173	RNA methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0848211	0.0813054	0.0787106	0.303739	0	0
+GO:0008175	tRNA methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.704259	6.47027	5.88268	16.0671	16.4713	25.6325
+GO:0008175	tRNA methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.103709	0.400725	0.331593	0	0
+GO:0008176	tRNA (guanine-N7-)-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.19758	22.9953	17.6967	38.2731	45.5668	49.7891
+GO:0008176	tRNA (guanine-N7-)-methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6.27006	5.18488	3.72714	2.75951	2.54302	1.27764
+GO:0008176	tRNA (guanine-N7-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0426293	0	0	0	0	0
+GO:0008177	succinate dehydrogenase (ubiquinone) activity	molecular_function	Escherichia	Escherichia coli	0.0830956	0	0	0	0	0
+GO:0008184	glycogen phosphorylase activity	molecular_function	Clostridium	Clostridium thermocellum	2.1006	8.77968	7.46055	66.069	52.7995	53.1133
+GO:0008184	glycogen phosphorylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	14.0012	10.3973	8.3927600000000009	14.0098	14.1239	9.89496
+GO:0008184	glycogen phosphorylase activity	molecular_function	Escherichia	Escherichia coli	0.148984	0	0.0803795	0	0	0.0281348
+GO:0008186	RNA-dependent ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	10.1748	24.4047	29.7108	58.603	55.1107	60.7126
+GO:0008186	RNA-dependent ATPase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	48.4172	47.7495	49.7599	47.5107	53.7822	25.0062
+GO:0008186	RNA-dependent ATPase activity	molecular_function	Escherichia	Escherichia coli	0.0437959	0	0.0812816	0	0	0.027294
+GO:0008198	ferrous iron binding	molecular_function	Clostridium	Clostridium thermocellum	3.19713	20.6728	23.0402	38.1483	43.2343	41.2012
+GO:0008198	ferrous iron binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	62.4891	45.4467	49.2424	37.3337	55.9564	46.8678
+GO:0008198	ferrous iron binding	molecular_function	Escherichia	Escherichia coli	0.159435	0	0	0	0	0
+GO:0008198	ferrous iron binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.403204	0.861642	1.07642	0.503371	0.0707732	0.174792
+GO:0008199	ferric iron binding	molecular_function	Clostridium	Clostridium thermocellum	6.25628	115.39	79.7483	294.479	169.316	373.564
+GO:0008199	ferric iron binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	236.703	159.995	199.796	179.002	193.502	146.835
+GO:0008199	ferric iron binding	molecular_function	Escherichia	Escherichia coli	0.350464	0	0.660312	0	0	0.197785
+GO:0008199	ferric iron binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.25642	0.1768	0.246461	0.297869	0.0822106	0.726687
+GO:0008216	spermidine metabolic process	biological_process	Escherichia	Escherichia coli	0.0852829	0	0	0	0	0
+GO:0008233	peptidase activity	molecular_function	Clostridium	Clostridium thermocellum	33.4122	124.989	104.637	327.936	309.368	384.097
+GO:0008233	peptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	246.804	144.137	193.867	103.974	137.478	113.159
+GO:0008233	peptidase activity	molecular_function	Escherichia	Escherichia coli	0.281562	0	0.387373	0	0	0.0229283
+GO:0008233	peptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	3.64777	3.59765	4.19178	3.63892	2.71909	3.41373
+GO:0008234	cysteine-type peptidase activity	molecular_function	Clostridium	Clostridium thermocellum	7.07246	25.0548	21.4841	39.2775	35.7906	61.1063
+GO:0008234	cysteine-type peptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	41.2371	71.3365	60.2322	79.0146	88.6953	67.4213
+GO:0008234	cysteine-type peptidase activity	molecular_function	Escherichia	Escherichia coli	0.407871	0	0.207625	0	0	0
+GO:0008235	metalloexopeptidase activity	molecular_function	Clostridium	Clostridium thermocellum	0.309172	1.84039	0.688639	4.5854799999999996	4.02984	5.22299
+GO:0008235	metalloexopeptidase activity	molecular_function	Escherichia	Escherichia coli	0.0461291	0	0.0378893	0	0	0
+GO:0008236	serine-type peptidase activity	molecular_function	Clostridium	Clostridium thermocellum	12.2412	71.1457	51.4994	188.429	169.436	184.402
+GO:0008236	serine-type peptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	196.107	125.357	126.794	93.0754	104.644	89.5583
+GO:0008236	serine-type peptidase activity	molecular_function	Escherichia	Escherichia coli	0.0511843	0	0	0	0	0.0379012
+GO:0008236	serine-type peptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.206293	0.395139	0.861892	0.475119	0.368624	0.137311
+GO:0008237	metallopeptidase activity	molecular_function	Clostridium	Clostridium thermocellum	6.52338	33.9952	27.8926	100.731	88.4149	81.925
+GO:0008237	metallopeptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	189.094	153.94	216.378	178.381	199.241	115.163
+GO:0008237	metallopeptidase activity	molecular_function	Escherichia	Escherichia coli	0.727834	0	0.841324	0	0	0.199531
+GO:0008237	metallopeptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.6775	0.504355	0.942091	0.720885	0.324046	0.924407
+GO:0008239	dipeptidyl-peptidase activity	molecular_function	Clostridium	Clostridium thermocellum	0.309172	1.84039	0.688639	4.5854799999999996	4.02984	5.22299
+GO:0008251	tRNA-specific adenosine deaminase activity	molecular_function	Escherichia	Escherichia coli	0.068659	0	0	0	0	0
+GO:0008252	nucleotidase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.116555	0	0	0.0883498
+GO:0008253	5'-nucleotidase activity	molecular_function	Clostridium	Clostridium thermocellum	0.467391	8.36461	6.45373	16.038	10.6595	18.6532
+GO:0008253	5'-nucleotidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	312.975	70.6242	119.511	53.59	62.7981	51.8206
+GO:0008253	5'-nucleotidase activity	molecular_function	Escherichia	Escherichia coli	0.177371	0	0	0	0	0
+GO:0008253	5'-nucleotidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.141183	0	0.13586	0
+GO:0008254	3'-nucleotidase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.161661	0	0	0
+GO:0008263	pyrimidine-specific mismatch base pair DNA N-glycosylase activity	molecular_function	Escherichia	Escherichia coli	0.272497	0	0	0	0	0
+GO:0008270	zinc ion binding	molecular_function	Clostridium	Clostridium thermocellum	121.632	845.19	691.368	2038.04	1960.51	2121.12
+GO:0008270	zinc ion binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	531.423	413.505	476.427	326.229	408.752	358.994
+GO:0008270	zinc ion binding	molecular_function	Escherichia	Escherichia coli	4.09348	0	1.76447	0	0	1.82818
+GO:0008270	zinc ion binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	11.9165	47.7652	52.1486	63.5636	19.6411	44.476
+GO:0008271	secondary active sulfate transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	0.738989	113.725	100.607	227.825	204.608	207.385
+GO:0008271	secondary active sulfate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.293933	0	0.904563	0	0	0
+GO:0008273	calcium, potassium:sodium antiporter activity	molecular_function	Escherichia	Escherichia coli	0.0880536	0	0	0	0	0
+GO:0008276	protein methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.12718	33.8063	26.6336	52.0638	60.7265	63.5674
+GO:0008276	protein methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	18.5106	5.65722	5.81867	5.00208	6.73144	3.92394
+GO:0008276	protein methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0663987	0	0.123231	0	0	0
+GO:0008276	protein methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.4531	1.89542	0.896399	0.760503	0.416696	0.818271
+GO:0008289	lipid binding	molecular_function	Clostridium	Clostridium thermocellum	40.434	668.937	426.393	906.92	869.677	781.444
+GO:0008289	lipid binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	30.5067	19.9254	17.9561	26.1985	31.6671	27.2967
+GO:0008289	lipid binding	molecular_function	Escherichia	Escherichia coli	0.0827067	0	0.535728	0	0	0.0247716
+GO:0008295	spermidine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	22.3671	181.953	124.444	740.079	737.444	1042.03
+GO:0008295	spermidine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	91.4887	110.189	143.464	72.4909	93.239	81.7297
+GO:0008295	spermidine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.167066	0	0.267075	0	0	0.095238
+GO:0008296	3'-5'-exodeoxyribonuclease activity	molecular_function	Escherichia	Escherichia coli	0.00811755	0	0.0450612	0	0	0
+GO:0008299	isoprenoid biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.97119	17.9604	12.1521	59.794	56.8354	54.8149
+GO:0008299	isoprenoid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.215067	0	0	0	0	0.077581
+GO:0008299	isoprenoid biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.235579	0.688436	0	0.872668	0.602039	0.417689
+GO:0008310	single-stranded DNA 3'-5' exodeoxyribonuclease activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0705914	0	0	0
+GO:0008312	7S RNA binding	molecular_function	Clostridium	Clostridium thermocellum	1.75473	21.6171	14.4992	36.0885	39.4842	42.3414
+GO:0008312	7S RNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.3594	11.5885	11.5127	5.29587	7.73811	5.73753
+GO:0008312	7S RNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.08797	0.475044	0.533924	0.674801	0.769651	0.246778
+GO:0008320	protein transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.621406	0	0	0	0	0
+GO:0008324	cation transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	2.51355	11.0644	11.4866	62.5828	36.163	32.0477
+GO:0008324	cation transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	191.391	89.6278	118.539	97.2818	101.387	65.8208
+GO:0008324	cation transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.360235	0	0.176185	0	0	0.0675236
+GO:0008324	cation transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.902944	1.72487	1.54724	2.82278	1.64912	2.01235
+GO:0008360	regulation of cell shape	biological_process	Clostridium	Clostridium thermocellum	66.5047	419.356	357.738	1009.31	942.865	1047.15
+GO:0008360	regulation of cell shape	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	296.192	270.097	213.356	254.444	272.511	206.652
+GO:0008360	regulation of cell shape	biological_process	Escherichia	Escherichia coli	1.72031	0	0.985844	0	0	0.506007
+GO:0008375	acetylglucosaminyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0383855	0	0	0
+GO:0008381	mechanically-gated ion channel activity	molecular_function	Escherichia	Escherichia coli	0.132797	0	0	0	0	0
+GO:0008408	3'-5' exonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	9.81626	53.0587	43.1783	144.084	132.052	151.627
+GO:0008408	3'-5' exonuclease activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	136.446	79.7879	109.482	47.9617	57.4811	46.6896
+GO:0008408	3'-5' exonuclease activity	molecular_function	Escherichia	Escherichia coli	0.434289	0	0.223006	0	0	0.0194033
+GO:0008408	3'-5' exonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.315248	0.770955	0.677046	0.442539	0.114136	0.433632
+GO:0008409	5'-3' exonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	3.33376	18.9304	15.4808	44.8822	39.9729	46.566
+GO:0008409	5'-3' exonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.232128	0	0.32251	0.475343	0.103718	0.0772576
+GO:0008410	CoA-transferase activity	molecular_function	Escherichia	Escherichia coli	0.0227486	0	0	0	0	0
+GO:0008412	4-hydroxybenzoate octaprenyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.100838	0	0.0623821	0	0	0
+GO:0008413	8-oxo-7,8-dihydroguanosine triphosphate pyrophosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	0.296388	0.189728	1.64873	2.62815	3.08639	2.23481
+GO:0008417	fucosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.13061	0	0	0	0	0.069561
+GO:0008422	beta-glucosidase activity	molecular_function	Clostridium	Clostridium thermocellum	44.539	159.011	199.836	380.011	390.901	329.343
+GO:0008425	2-polyprenyl-6-methoxy-1,4-benzoquinone methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.106654
+GO:0008444	CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	4.64815	30.4238	25.0534	76.7492	71.5545	67.4362
+GO:0008444	CDP-diacylglycerol-glycerol-3-phosphate 3-phosphatidyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.060906	0	0	0	0	0
+GO:0008448	N-acetylglucosamine-6-phosphate deacetylase activity	molecular_function	Clostridium	Clostridium thermocellum	1.20035	4.47483	3.62673	11.2753	13.3918	13.4697
+GO:0008448	N-acetylglucosamine-6-phosphate deacetylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	92.503	36.1405	61.5543	21.013	24.3019	21.5417
+GO:0008452	RNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	0.910041	7.48463	3.94117	18.5528	19.1552	20.1523
+GO:0008452	RNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	28.137	19.8382	24.1651	17.1563	18.6719	10.7006
+GO:0008452	RNA ligase activity	molecular_function	Escherichia	Escherichia coli	0.090241	0	0.33505	0	0	0
+GO:0008452	RNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.184541	0.389771	0.136988	0.264345	0.23068	0.392303
+GO:0008453	alanine-glyoxylate transaminase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	20.0107	25.3463	31.8029	33.1498	38.9397	22.471
+GO:0008460	dTDP-glucose 4,6-dehydratase activity	molecular_function	Clostridium	Clostridium thermocellum	0	0	0	0.118854	0.285068	0.0772576
+GO:0008460	dTDP-glucose 4,6-dehydratase activity	molecular_function	Escherichia	Escherichia coli	0.0794256	0	0.0963923	0	0	0.0691405
+GO:0008460	dTDP-glucose 4,6-dehydratase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0845295	0	0.209564	0.0577733	0.20162	0.0749939
+GO:0008470	isovaleryl-CoA dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.065864	0	0.0611642	0	0	0
+GO:0008474	palmitoyl-(protein) hydrolase activity	molecular_function	Escherichia	Escherichia coli	0.17567	0	0	0	0	0
+GO:0008478	pyridoxal kinase activity	molecular_function	Escherichia	Escherichia coli	0.0681243	0	0	0	0	0
+GO:0008479	queuine tRNA-ribosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.897136	7.70357	5.64186	27.2274	27.742	24.7672
+GO:0008479	queuine tRNA-ribosyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2.0316	1.57836	2.19519	2.15738	2.01841	1.60763
+GO:0008479	queuine tRNA-ribosyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.247999	0.158737	0.153407	0.26335	0.0738116	0.12748
+GO:0008483	transaminase activity	molecular_function	Clostridium	Clostridium thermocellum	34.6064	1503.8	1284.56	797.63	836.735	918.54
+GO:0008483	transaminase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	249.643	136.399	206.923	106.815	124.342	88.9495
+GO:0008483	transaminase activity	molecular_function	Escherichia	Escherichia coli	0.369106	0	0.207895	0	0	0
+GO:0008483	transaminase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.517312	0.776229	0.879484	1.80773	1.4873	2.24962
+GO:0008484	sulfuric ester hydrolase activity	molecular_function	Clostridium	Clostridium thermocellum	1.70218	21.2246	14.8931	44.8457	44.6346	62.6851
+GO:0008484	sulfuric ester hydrolase activity	molecular_function	Escherichia	Escherichia coli	0.736097	0	0.334238	0	0	0.0433018
+GO:0008495	protoheme IX farnesyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0657425	0	0.122238	0	0	0
+GO:0008519	ammonium transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.11158	0.342864	0.248536	0.228308	0.199298	0.239211
+GO:0008531	riboflavin kinase activity	molecular_function	Clostridium	Clostridium thermocellum	2.18476	13.2453	14.3414	40.3507	33.9304	35.5191
+GO:0008531	riboflavin kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.502	12.0994	6.78476	11.8856	12.0771	13.8432
+GO:0008531	riboflavin kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.204106	0.338159	0	0.295319
+GO:0008534	oxidized purine nucleobase lesion DNA N-glycosylase activity	molecular_function	Clostridium	Clostridium thermocellum	0.658737	8.53306	5.56125	17.9834	10.9944	24.9227
+GO:0008534	oxidized purine nucleobase lesion DNA N-glycosylase activity	molecular_function	Escherichia	Escherichia coli	0.110365	0	0	0	0	0
+GO:0008551	cadmium-exporting ATPase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.8413	1.36716	1.77033	2.1443	2.67512	1.34029
+GO:0008551	cadmium-exporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0.0237208	0	0.0220119	0	0	0
+GO:0008556	potassium-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.835325	0	0	0.0340529
+GO:0008559	xenobiotic-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0.090168	0	0	0	0	0.0396151
+GO:0008565	protein transporter activity	molecular_function	Clostridium	Clostridium thermocellum	2.81725	12.3044	8.49569	126.483	156.54	148.163
+GO:0008565	protein transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	12.0461	16.6253	20.4181	8.68141	8.19072	6.27339
+GO:0008565	protein transporter activity	molecular_function	Escherichia	Escherichia coli	0.39132	0	0.265406	0	0	0.0639663
+GO:0008565	protein transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.408308	0.58146	0.431532	1.25395	0.553511	0.26201
+GO:0008609	alkylglycerone-phosphate synthase activity	molecular_function	Escherichia	Escherichia coli	0.0372581	0	0	0	0	0.0495755
+GO:0008610	lipid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0372581	0	0.150204	0	0	0.0495755
+GO:0008612	peptidyl-lysine modification to peptidyl-hypusine	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.125603	0	0	0.28919	0	0.0417172
+GO:0008615	pyridoxine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	4.64329	43.1918	35.0846	91.5843	88.7933	75.3085
+GO:0008615	pyridoxine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	4.07375	7.12706	5.74208	2.3601	3.26514	4.11351
+GO:0008615	pyridoxine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.055875	0	0.0959863	0	0	0.0555582
+GO:0008616	queuosine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	7.43787	63.0593	46.9281	191.288	179.866	167.202
+GO:0008616	queuosine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	4.62479	5.68111	3.72944	3.46988	3.9781	3.72444
+GO:0008616	queuosine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.3204	0	0.311279	0	0	0.12389
+GO:0008616	queuosine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.247999	0.158737	0.153407	0.26335	0.0738116	0.12748
+GO:0008641	small protein activating enzyme activity	molecular_function	Clostridium	Clostridium thermocellum	1.55531	48.6527	40.5622	116.804	106.304	101.53
+GO:0008641	small protein activating enzyme activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	42.592	60.7525	50.0251	65.998	73.718	62.6854
+GO:0008641	small protein activating enzyme activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.240634	0.231034	0.669649	0.246239	0	0
+GO:0008643	carbohydrate transport	biological_process	Clostridium	Clostridium thermocellum	59.5931	306.415	198.873	1042.01	736.089	800.478
+GO:0008643	carbohydrate transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	247.088	84.209	155.228	50.5251	51.841	56.4278
+GO:0008643	carbohydrate transport	biological_process	Escherichia	Escherichia coli	1.56265	0	0.920305	0	0	0.784186
+GO:0008649	rRNA methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.07106	19.5737	15.6598	64.815	59.9783	50.433
+GO:0008649	rRNA methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0375012	0	0	0	0	0
+GO:0008650	rRNA (uridine-2'-O-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.375871	0	0	0
+GO:0008650	rRNA (uridine-2'-O-)-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.099914	0	0.185252	0.307047	0	0.0665534
+GO:0008652	cellular amino acid biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.1678	11.7328	6.25914	43.8577	36.175	34.6783
+GO:0008652	cellular amino acid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0209987	0	0	0	0	0
+GO:0008653	lipopolysaccharide metabolic process	biological_process	Escherichia	Escherichia coli	0.304749	0	0	0	0	0
+GO:0008654	phospholipid biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	23.5476	153.037	92.8648	476.971	429.473	359.52
+GO:0008654	phospholipid biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	355.944	176.926	137.19	170.544	199.138	168.935
+GO:0008654	phospholipid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.368887	0	0.399642	0	0	0
+GO:0008654	phospholipid biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.29671	4.30961	4.19859	5.05565	3.42999	6.04643
+GO:0008657	DNA topoisomerase (ATP-hydrolyzing) inhibitor activity	molecular_function	Escherichia	Escherichia coli	0.150029	0	0	0	0	0.673716
+GO:0008658	penicillin binding	molecular_function	Clostridium	Clostridium thermocellum	5.79754	27.9027	26.0004	75.947	69.6038	70.5358
+GO:0008658	penicillin binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	18.5565	11.6189	6.88066	7.818	8.36936	10.2223
+GO:0008658	penicillin binding	molecular_function	Escherichia	Escherichia coli	0.164563	0	0.121562	0	0	0
+GO:0008661	1-deoxy-D-xylulose-5-phosphate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	11.4118	55.3911	37.2861	156.799	140.842	119.082
+GO:0008661	1-deoxy-D-xylulose-5-phosphate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	58.509	41.4332	32.2915	34.7667	42.3967	30.6407
+GO:0008662	1-phosphofructokinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	58.606	34.7227	47.5948	14.0036	17.6034	15.7465
+GO:0008663	2',3'-cyclic-nucleotide 2'-phosphodiesterase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2.36858	2.4759	1.09947	1.97859	2.67567	2.66498
+GO:0008663	2',3'-cyclic-nucleotide 2'-phosphodiesterase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.161661	0	0	0
+GO:0008664	2'-5'-RNA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.05304	14.8595	15.0335	28.6236	25.8995	31.0351
+GO:0008664	2'-5'-RNA ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	9.57913	6.22052	4.92814	6.42321	4.33271	8.69916
+GO:0008664	2'-5'-RNA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.718792	0.460995	0.222735	0.429706	0	0
+GO:0008667	2,3-dihydro-2,3-dihydroxybenzoate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0814186	0	0	0	0	0
+GO:0008670	2,4-dienoyl-CoA reductase (NADPH) activity	molecular_function	Escherichia	Escherichia coli	0.039008	0	0.144836	0	0	0
+GO:0008671	2-dehydro-3-deoxygalactonokinase activity	molecular_function	Escherichia	Escherichia coli	0.112528	0	0	0	0	0
+GO:0008672	2-dehydro-3-deoxyglucarate aldolase activity	molecular_function	Escherichia	Escherichia coli	0.0695339	0	0	0	0	0
+GO:0008673	2-dehydro-3-deoxygluconokinase activity	molecular_function	Escherichia	Escherichia coli	0.0623156	0	0.567393	0	0	0
+GO:0008674	2-dehydro-3-deoxy-6-phosphogalactonate aldolase activity	molecular_function	Escherichia	Escherichia coli	0.103876	0	0	0	0	0
+GO:0008675	2-dehydro-3-deoxy-phosphogluconate aldolase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.183357	0	0	0
+GO:0008676	3-deoxy-8-phosphooctulonate synthase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0639608	0	0	0
+GO:0008677	2-dehydropantoate 2-reductase activity	molecular_function	Escherichia	Escherichia coli	0.103171	0	0	0	0	0
+GO:0008678	2-deoxy-D-gluconate 3-dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	1.43953	0	0	0	0	0
+GO:0008679	2-hydroxy-3-oxopropionate reductase activity	molecular_function	Escherichia	Escherichia coli	0.0661313	0	0	0	0	0
+GO:0008684	2-oxopent-4-enoate hydratase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.205008	0	0	0
+GO:0008685	2-C-methyl-D-erythritol 2,4-cyclodiphosphate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	21.76	21.9113	19.3042	21.3913	29.527	21.6888
+GO:0008686	3,4-dihydroxy-2-butanone-4-phosphate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	2.5136	14.1421	9.7049	36.0382	30.5943	26.5774
+GO:0008686	3,4-dihydroxy-2-butanone-4-phosphate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0900222	0.51845	0.668251	0.41451	0.321312	0.479101
+GO:0008691	3-hydroxybutyryl-CoA dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0760717	0	0	0	0	0
+GO:0008692	3-hydroxybutyryl-CoA epimerase activity	molecular_function	Escherichia	Escherichia coli	0.0966572	0	0	0	0	0.0158461
+GO:0008694	3-octaprenyl-4-hydroxybenzoate carboxy-lyase activity	molecular_function	Escherichia	Escherichia coli	0.0361644	0	0	0	0	0.0481203
+GO:0008695	3-phenylpropionate dioxygenase activity	molecular_function	Escherichia	Escherichia coli	0.172632	0	0.0765455	0	0	0
+GO:0008697	4-deoxy-L-threo-5-hexosulose-uronate ketol-isomerase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0656748	0	0	0
+GO:0008700	4-hydroxy-2-oxoglutarate aldolase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.183357	0	0	0
+GO:0008703	5-amino-6-(5-phosphoribosylamino)uracil reductase activity	molecular_function	Escherichia	Escherichia coli	0.0509413	0	0	0	0	0
+GO:0008704	5-carboxymethyl-2-hydroxymuconate delta-isomerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	37.2074	46.3509	67.3938	29.4897	30.3195	28.1634
+GO:0008705	methionine synthase activity	molecular_function	Clostridium	Clostridium thermocellum	1.02847	9.14238	5.55692	33.1248	26.5505	35.1121
+GO:0008705	methionine synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.221945	0	0	0	0.24776	0
+GO:0008705	methionine synthase activity	molecular_function	Escherichia	Escherichia coli	0.0137561	0	0.0127651	0	0	0.0549114
+GO:0008706	6-phospho-beta-glucosidase activity	molecular_function	Escherichia	Escherichia coli	0.239638	0	0	0	0	0
+GO:0008709	cholate 7-alpha-dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.157247	0	0	0	0	0
+GO:0008710	8-amino-7-oxononanoate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	0	1.28413	0.221743	0.73342	1.19331	1.39811
+GO:0008710	8-amino-7-oxononanoate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	134.433	98.7123	165.423	101.135	109.359	59.248
+GO:0008712	ADP-glyceromanno-heptose 6-epimerase activity	molecular_function	Escherichia	Escherichia coli	0.124194	0	0	0	0	0
+GO:0008713	ADP-heptose-lipopolysaccharide heptosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.319452	0	0.0976553	0	0	0.0721157
+GO:0008716	D-alanine-D-alanine ligase activity	molecular_function	Clostridium	Clostridium thermocellum	5.92112	26.9703	36.235	49.0845	53.315	63.7877
+GO:0008716	D-alanine-D-alanine ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	15.6178	7.50381	4.59841	9.97003	7.99564	9.1715
+GO:0008716	D-alanine-D-alanine ligase activity	molecular_function	Escherichia	Escherichia coli	0.165875	0	0.153948	0	0	0
+GO:0008720	D-lactate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0311578	0	0	0	0	0
+GO:0008721	D-serine ammonia-lyase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.8998	8.65483	7.6177	10.4077	13.1879	9.88361
+GO:0008725	DNA-3-methyladenine glycosylase activity	molecular_function	Escherichia	Escherichia coli	0.234826	0	0.324811	0	0	0
+GO:0008728	GTP diphosphokinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.1728	7.58619	5.60298	8.45164	9.38304	7.76994
+GO:0008728	GTP diphosphokinase activity	molecular_function	Escherichia	Escherichia coli	0.0785264	0	0	0	0	0
+GO:0008730	L(+)-tartrate dehydratase activity	molecular_function	Escherichia	Escherichia coli	0.0637981	0	0	0	0	0.0848249
+GO:0008730	L(+)-tartrate dehydratase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0.0714767	0.186906	0.092942
+GO:0008734	L-aspartate oxidase activity	molecular_function	Clostridium	Clostridium thermocellum	2.029	11.9143	6.784	25.377	25.8602	20.0365
+GO:0008734	L-aspartate oxidase activity	molecular_function	Escherichia	Escherichia coli	0.0330049	0	0	0	0	0
+GO:0008736	L-fucose isomerase activity	molecular_function	Escherichia	Escherichia coli	0.014947	0	0.0554808	0	0	0
+GO:0008740	L-rhamnose isomerase activity	molecular_function	Escherichia	Escherichia coli	0.0437716	0	0	0	0	0
+GO:0008742	L-ribulose-phosphate 4-epimerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6.26478	1.75824	3.5795	2.61482	2.92358	3.20734
+GO:0008743	L-threonine 3-dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	1.04194	14.1858	11.3134	21.2411	23.4366	38.7121
+GO:0008743	L-threonine 3-dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.377831	0	0.0900323	0	0	0
+GO:0008744	L-xylulokinase activity	molecular_function	Escherichia	Escherichia coli	0.0359457	0	0.267842	0	0	0
+GO:0008745	N-acetylmuramoyl-L-alanine amidase activity	molecular_function	Clostridium	Clostridium thermocellum	7.10339	23.5058	19.0309	126.018	116.203	118.523
+GO:0008745	N-acetylmuramoyl-L-alanine amidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.0948	12.6157	10.4638	7.60829	8.64425	9.36065
+GO:0008745	N-acetylmuramoyl-L-alanine amidase activity	molecular_function	Escherichia	Escherichia coli	0.0675167	0	0	0	0	0.21583
+GO:0008747	N-acetylneuraminate lyase activity	molecular_function	Escherichia	Escherichia coli	0.130659	0	0	0	0	0.0434635
+GO:0008748	N-ethylmaleimide reductase activity	molecular_function	Escherichia	Escherichia coli	0.165389	0	0	0	0	0
+GO:0008750	NAD(P)+ transhydrogenase (AB-specific) activity	molecular_function	Escherichia	Escherichia coli	0.0392267	0	0	0	0	0.0260975
+GO:0008752	FMN reductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0008756	o-succinylbenzoate-CoA ligase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.114796	0	0	0
+GO:0008757	S-adenosylmethionine-dependent methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.90585	10.6931	9.83756	42.5034	41.2786	45.8459
+GO:0008757	S-adenosylmethionine-dependent methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.178708	0	0	0	0	0.0680087
+GO:0008760	UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	15.7121	94.3411	68.7886	207.11	180.461	207.703
+GO:0008760	UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	22.7477	23.8692	17.1089	21.6449	23.5611	21.4403
+GO:0008760	UDP-N-acetylglucosamine 1-carboxyvinyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0600067	0	0.0812816	0	0	0
+GO:0008761	UDP-N-acetylglucosamine 2-epimerase activity	molecular_function	Clostridium	Clostridium thermocellum	2.92271	22.322	22.6089	55.7991	61.8888	59.941
+GO:0008761	UDP-N-acetylglucosamine 2-epimerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	38.8843	38.8641	37.9197	31.6798	32.5771	32.4612
+GO:0008761	UDP-N-acetylglucosamine 2-epimerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.16483	0	0.767079	0.359498	0.166049	0.219937
+GO:0008762	UDP-N-acetylmuramate dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	2.82282	15.6682	16.9749	45.2639	42.9255	46.6343
+GO:0008762	UDP-N-acetylmuramate dehydrogenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.8142	45.5113	19.1255	25.9375	35.8126	29.5353
+GO:0008762	UDP-N-acetylmuramate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0276094	0	0.205279	0	0	0.147174
+GO:0008763	UDP-N-acetylmuramate-L-alanine ligase activity	molecular_function	Clostridium	Clostridium thermocellum	0.443573	2.03716	1.14417	4.28102	4.49404	5.82362
+GO:0008763	UDP-N-acetylmuramate-L-alanine ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6.38647	5.06801	2.84211	7.00932	6.40468	4.66566
+GO:0008763	UDP-N-acetylmuramate-L-alanine ligase activity	molecular_function	Escherichia	Escherichia coli	0.0732767	0	0	0	0	0
+GO:0008764	UDP-N-acetylmuramoylalanine-D-glutamate ligase activity	molecular_function	Clostridium	Clostridium thermocellum	1.67047	7.83337	6.48665	14.8667	16.8925	28.5573
+GO:0008764	UDP-N-acetylmuramoylalanine-D-glutamate ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	69.0901	51.0666	35.3913	44.1491	44.1554	39.7252
+GO:0008764	UDP-N-acetylmuramoylalanine-D-glutamate ligase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.110825
+GO:0008765	UDP-N-acetylmuramoylalanyl-D-glutamate-2,6-diaminopimelate ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.8484	6.35919	3.91428	6.04182	7.49536	6.00591
+GO:0008766	UDP-N-acetylmuramoylalanyl-D-glutamyl-2,6-diaminopimelate-D-alanyl-D-alanine ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.66061	18.9106	21.8839	51.6569	46.4233	52.6138
+GO:0008766	UDP-N-acetylmuramoylalanyl-D-glutamyl-2,6-diaminopimelate-D-alanyl-D-alanine ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	93.6144	85.4518	89.3883	66.6686	70.5838	51.1285
+GO:0008766	UDP-N-acetylmuramoylalanyl-D-glutamyl-2,6-diaminopimelate-D-alanyl-D-alanine ligase activity	molecular_function	Escherichia	Escherichia coli	0.0401989	0	0	0	0	0
+GO:0008767	UDP-galactopyranose mutase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	15.1574	28.828	18.8548	28.2784	39.0091	28.4669
+GO:0008767	UDP-galactopyranose mutase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.189131	0	0	0
+GO:0008767	UDP-galactopyranose mutase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0489241	0	0	0.0250442	0.0437097	0.130196
+GO:0008768	UDP-sugar diphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0161622	0	0	0	0	0
+GO:0008771	[citrate (pro-3S)-lyase] ligase activity	molecular_function	Escherichia	Escherichia coli	0.080252	0	0.0994144	0	0	0
+GO:0008772	[isocitrate dehydrogenase (NADP+)] kinase activity	molecular_function	Escherichia	Escherichia coli	0.0919179	0	0.056834	0	0	0.0409087
+GO:0008773	[protein-PII] uridylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0576492	0	0	0	0	0
+GO:0008774	acetaldehyde dehydrogenase (acetylating) activity	molecular_function	Clostridium	Clostridium thermocellum	0.658664	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0008774	acetaldehyde dehydrogenase (acetylating) activity	molecular_function	Escherichia	Escherichia coli	0.0192731	0	0	0	0	0
+GO:0008775	acetate CoA-transferase activity	molecular_function	Escherichia	Escherichia coli	0.0336125	0	0.211098	0	0	0.24694
+GO:0008776	acetate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	4.97497	31.7717	26.5377	74.1942	75.7388	54.5204
+GO:0008776	acetate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	32.0488	43.0591	49.0291	50.1978	48.3386	32.4178
+GO:0008776	acetate kinase activity	molecular_function	Escherichia	Escherichia coli	0.0923068	0	0	0	0	0.0613792
+GO:0008777	acetylornithine deacetylase activity	molecular_function	Escherichia	Escherichia coli	0.0727663	0	0	0	0	0
+GO:0008779	acyl-[acyl-carrier-protein]-phospholipid O-acyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0121034	0	0	0	0	0
+GO:0008783	agmatinase activity	molecular_function	Clostridium	Clostridium thermocellum	1.78679	13.4693	13.2085	36.5505	39.1243	37.5637
+GO:0008783	agmatinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.13654	0.328209	0.126884	0.0699597	0.304774	0.454394
+GO:0008784	alanine racemase activity	molecular_function	Clostridium	Clostridium thermocellum	0.852732	8.32088	5.31565	23.5014	22.1396	20.8272
+GO:0008784	alanine racemase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5.03638	4.11012	2.81549	4.96229	3.96708	5.04632
+GO:0008784	alanine racemase activity	molecular_function	Escherichia	Escherichia coli	0.052278	0	0	0	0	0
+GO:0008785	alkyl hydroperoxide reductase activity	molecular_function	Clostridium	Clostridium thermocellum	16.7778	159.381	159.13	520.725	417.94	348.992
+GO:0008785	alkyl hydroperoxide reductase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0636902	0	0	0
+GO:0008786	allose 6-phosphate isomerase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.300724	0	0	0
+GO:0008787	allose kinase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.404198	0	0	0
+GO:0008791	arginine N-succinyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0549272	0	0	0	0	0
+GO:0008792	arginine decarboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	2.07724	22.2313	19.2719	50.6028	48.4844	63.904
+GO:0008792	arginine decarboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	29.0916	43.415	37.4389	30.963	30.8548	24.9635
+GO:0008792	arginine decarboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0495317	0	0.0493915	0	0	0
+GO:0008792	arginine decarboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.305059	0.147408	0	0	0
+GO:0008793	aromatic-amino-acid:2-oxoglutarate aminotransferase activity	molecular_function	Escherichia	Escherichia coli	0.0698499	0	0	0	0	0
+GO:0008794	arsenate reductase (glutaredoxin) activity	molecular_function	Escherichia	Escherichia coli	0.231472	0	0	0	0	0
+GO:0008795	NAD+ synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.32506	8.8734	6.57136	6.87448	8.45912	10.685
+GO:0008795	NAD+ synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0720129	0.276494	0.801901	0.294711	0.160819	0.670579
+GO:0008798	beta-aspartyl-peptidase activity	molecular_function	Clostridium	Clostridium thermocellum	0	0.136474	0.219803	1.1145	0.99395	1.70167
+GO:0008798	beta-aspartyl-peptidase activity	molecular_function	Escherichia	Escherichia coli	0.0596421	0	0.0552553	0	0	0
+GO:0008800	beta-lactamase activity	molecular_function	Clostridium	Clostridium thermocellum	133936	95932	83193.2	37667.8	49698.2	17083.2
+GO:0008800	beta-lactamase activity	molecular_function	Escherichia	Escherichia coli	77927.8	0	34222.8	0	0	7845.05
+GO:0008801	beta-phosphoglucomutase activity	molecular_function	Escherichia	Escherichia coli	0.0476602	0	0	0	0	0
+GO:0008802	betaine-aldehyde dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0319598	0	0.162338	0	0	0
+GO:0008803	bis(5'-nucleosyl)-tetraphosphatase (symmetrical) activity	molecular_function	Escherichia	Escherichia coli	0.0695339	0	0	0	0	0
+GO:0008804	carbamate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	82.2044	17.393	23.6271	27.2268	30.7455	22.1183
+GO:0008804	carbamate kinase activity	molecular_function	Escherichia	Escherichia coli	0.0620482	0	0	0	0	0
+GO:0008806	carboxymethylenebutenolidase activity	molecular_function	Escherichia	Escherichia coli	0.0732524	0	0	0	0	0
+GO:0008808	cardiolipin synthase activity	molecular_function	Clostridium	Clostridium thermocellum	0.139359	3.14249	2.90972	4.88365	5.64617	5.83995
+GO:0008808	cardiolipin synthase activity	molecular_function	Escherichia	Escherichia coli	0.0368206	0	0.0826348	0	0	0.0296224
+GO:0008810	cellulase activity	molecular_function	Clostridium	Clostridium thermocellum	277.868	290.699	258.98	1025.09	852.867	885.348
+GO:0008810	cellulase activity	molecular_function	Escherichia	Escherichia coli	0.0761932	0	0	0	0	0
+GO:0008812	choline dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0319598	0	0.088634	0	0	0
+GO:0008814	citrate CoA-transferase activity	molecular_function	Escherichia	Escherichia coli	0.0351437	0	0	0	0	0
+GO:0008815	citrate (pro-3S)-lyase activity	molecular_function	Escherichia	Escherichia coli	0.0351437	0	0	0	0	0
+GO:0008817	cob(I)yrinic acid a,c-diamide adenosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.65144	22.8684	15.9601	71.1048	63.2645	77.3703
+GO:0008817	cob(I)yrinic acid a,c-diamide adenosyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	19.8117	26.9325	13.3741	32.1034	34.5025	26.5592
+GO:0008817	cob(I)yrinic acid a,c-diamide adenosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.330535	0	0	0	0	0
+GO:0008818	cobalamin 5'-phosphate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	0.529245	6.25324	3.85109	14.4517	14.1	18.0306
+GO:0008818	cobalamin 5'-phosphate synthase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.151602	0	0	0
+GO:0008818	cobalamin 5'-phosphate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.225532	0.165809	0.0723358	0.215506
+GO:0008821	crossover junction endodeoxyribonuclease activity	molecular_function	Clostridium	Clostridium thermocellum	0.500809	2.89171	0.791977	5.86776	6.65663	10.6703
+GO:0008821	crossover junction endodeoxyribonuclease activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	115.224	247.569	243.498	105.74	109.677	88.587
+GO:0008821	crossover junction endodeoxyribonuclease activity	molecular_function	Escherichia	Escherichia coli	0.0633364	0	0	0	0	0
+GO:0008821	crossover junction endodeoxyribonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0	0.0750921	0.247328
+GO:0008825	cyclopropane-fatty-acyl-phospholipid synthase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0903029	0	0	0
+GO:0008827	cytochrome o ubiquinol oxidase activity	molecular_function	Escherichia	Escherichia coli	0.104532	0	0	0	0	0
+GO:0008829	dCTP deaminase activity	molecular_function	Clostridium	Clostridium thermocellum	2.44795	10.3579	10.2479	25.2983	25.9347	35.8891
+GO:0008829	dCTP deaminase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.83	23.6456	13.4701	22.3517	31.1397	20.7496
+GO:0008829	dCTP deaminase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.107302	0	0	0.219603	0.04792	0
+GO:0008830	dTDP-4-dehydrorhamnose 3,5-epimerase activity	molecular_function	Clostridium	Clostridium thermocellum	2.41757	17.5311	19.2926	47.297	40.3979	54.0843
+GO:0008830	dTDP-4-dehydrorhamnose 3,5-epimerase activity	molecular_function	Escherichia	Escherichia coli	0.118993	0	0	0	0	0
+GO:0008830	dTDP-4-dehydrorhamnose 3,5-epimerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0595692	0	0.330043	0	0	0.312879
+GO:0008831	dTDP-4-dehydrorhamnose reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0700929	0	0	0.14355	0.187904	0.139995
+GO:0008832	dGTPase activity	molecular_function	Clostridium	Clostridium thermocellum	1.23528	7.17098	4.74217	16.84	15.7692	21.3615
+GO:0008832	dGTPase activity	molecular_function	Escherichia	Escherichia coli	0.0861822	0	0.159947	0	0	0
+GO:0008833	deoxyribonuclease IV (phage-T4-induced) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2.4279	2.54521	2.80124	1.05492	2.42825	2.98876
+GO:0008834	di-trans,poly-cis-decaprenylcistransferase activity	molecular_function	Escherichia	Escherichia coli	0.0797416	0	0	0	0	0
+GO:0008835	diaminohydroxyphosphoribosylaminopyrimidine deaminase activity	molecular_function	Escherichia	Escherichia coli	0.0509413	0	0	0	0	0
+GO:0008836	diaminopimelate decarboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	0.417568	12.3454	10.6147	52.5189	52.3375	69.821
+GO:0008836	diaminopimelate decarboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0436744	0	0.0810561	0	0	0
+GO:0008836	diaminopimelate decarboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0641141	0.533619	0.476052	0.459326	0.152658	0.312749
+GO:0008837	diaminopimelate epimerase activity	molecular_function	Clostridium	Clostridium thermocellum	0.631128	23.7695	32.1361	39.4224	43.0437	78.4114
+GO:0008837	diaminopimelate epimerase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.13365	0	0	0
+GO:0008837	diaminopimelate epimerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.236284	0.324102	0.560717	0.897886	0.361419	0.314399
+GO:0008838	diaminopropionate ammonia-lyase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0918816	0	0	0
+GO:0008839	4-hydroxy-tetrahydrodipicolinate reductase	molecular_function	Clostridium	Clostridium thermocellum	4.06544	9.76006	8.49578	22.5395	26.214	33.86
+GO:0008839	4-hydroxy-tetrahydrodipicolinate reductase	molecular_function	Escherichia	Escherichia coli	0.103973	0	0.0439787	0	0	0
+GO:0008839	4-hydroxy-tetrahydrodipicolinate reductase	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.642405	1.07298	1.22283	1.0671	0.516638	1.49693
+GO:0008840	4-hydroxy-tetrahydrodipicolinate synthase	molecular_function	Clostridium	Clostridium thermocellum	1.79903	4.86288	6.05792	20.2576	20.471800000000002	16.4978
+GO:0008840	4-hydroxy-tetrahydrodipicolinate synthase	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	22.6663	32.0953	53.8209	19.8541	22.3277	22.2371
+GO:0008840	4-hydroxy-tetrahydrodipicolinate synthase	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.346211	0.332316	0.835099	0.602106	0.247326	0.690662
+GO:0008847	Enterobacter ribonuclease activity	molecular_function	Escherichia	Escherichia coli	0.0369908	0	0	0	0	0
+GO:0008849	enterochelin esterase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0307219
+GO:0008852	exodeoxyribonuclease I activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0705914	0	0	0
+GO:0008853	exodeoxyribonuclease III activity	molecular_function	Clostridium	Clostridium thermocellum	2.72687	31.9533	20.168	68.6812	56.3785	96.8593
+GO:0008853	exodeoxyribonuclease III activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.194748	0.448673	1.29956	0.356762	0.347919	0.206807
+GO:0008854	exodeoxyribonuclease V activity	molecular_function	Clostridium	Clostridium thermocellum	1.90991	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0008854	exodeoxyribonuclease V activity	molecular_function	Escherichia	Escherichia coli	0.0591804	0	0	0	0	0
+GO:0008855	exodeoxyribonuclease VII activity	molecular_function	Clostridium	Clostridium thermocellum	9.96534	32.9928	26.8289	117.871	107.577	100.856
+GO:0008859	exoribonuclease II activity	molecular_function	Clostridium	Clostridium thermocellum	4.55329	15.0492	17.6433	32.604	34.212	38.5598
+GO:0008859	exoribonuclease II activity	molecular_function	Escherichia	Escherichia coli	0.0211931	0	0	0	0	0
+GO:0008860	ferredoxin-NAD+ reductase activity	molecular_function	Clostridium	Clostridium thermocellum	0.693711	18.2606	26.7851	56.2473	59.6931	111.807
+GO:0008860	ferredoxin-NAD+ reductase activity	molecular_function	Escherichia	Escherichia coli	0.0230889	0	0	0	0	0
+GO:0008861	formate C-acetyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	6.52107	50.7032	43.4059	122.485	102.544	118.133
+GO:0008861	formate C-acetyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	12.2128	10.0403	11.7339	5.33922	5.87136	5.90738
+GO:0008861	formate C-acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0675653	0	0.0817327	0	0	0.206969
+GO:0008863	formate dehydrogenase (NAD+) activity	molecular_function	Escherichia	Escherichia coli	0.173677	0	0.122734	0	0	0.0263239
+GO:0008863	formate dehydrogenase (NAD+) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.180019	0.0992815	0	0
+GO:0008866	fructuronate reductase activity	molecular_function	Escherichia	Escherichia coli	0.0554375	0	0	0	0	0
+GO:0008867	galactarate dehydratase activity	molecular_function	Escherichia	Escherichia coli	0.0335639	0	0	0	0	0
+GO:0008868	galactitol-1-phosphate 5-dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.07577
+GO:0008872	glucarate dehydratase activity	molecular_function	Escherichia	Escherichia coli	0.0507469	0	0	0	0	0
+GO:0008878	glucose-1-phosphate adenylyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.41814	12.5801	8.53354	55.3722	59.9012	52.6519
+GO:0008878	glucose-1-phosphate adenylyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	55.6787	29.383	28.2237	27.0182	27.6617	26.7756
+GO:0008878	glucose-1-phosphate adenylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0636037	0	0.0787106	0	0	0
+GO:0008879	glucose-1-phosphate thymidylyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.26015	1.99964	4.92832	0.722029	1.58891	1.92271
+GO:0008879	glucose-1-phosphate thymidylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.231618	0	0.12314	0	0	0.0961435
+GO:0008879	glucose-1-phosphate thymidylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0667146	0.0640362	0.185613	0.102117	0	0
+GO:0008880	glucuronate isomerase activity	molecular_function	Escherichia	Escherichia coli	0.057309	0	0.0705914	0	0	0
+GO:0008881	glutamate racemase activity	molecular_function	Clostridium	Clostridium thermocellum	5.7221	25.3437	28.2647	44.3002	51.8337	49.9638
+GO:0008881	glutamate racemase activity	molecular_function	Escherichia	Escherichia coli	0.0760717	0	0	0	0	0.101221
+GO:0008883	glutamyl-tRNA reductase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0574548	5.29461	5.06386	11.608	7.87258	5.57901
+GO:0008883	glutamyl-tRNA reductase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.162654	0	0	0
+GO:0008883	glutamyl-tRNA reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.321275	1.10178	1.5743	0.867768	0.204941	0.518942
+GO:0008884	glutathionylspermidine amidase activity	molecular_function	Escherichia	Escherichia coli	0.0852829	0	0	0	0	0
+GO:0008885	glutathionylspermidine synthase activity	molecular_function	Escherichia	Escherichia coli	0.0852829	0	0	0	0	0
+GO:0008887	glycerate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	42.8886	9.93042	11.9993	14.1016	15.5978	11.3916
+GO:0008887	glycerate kinase activity	molecular_function	Escherichia	Escherichia coli	0.0976051	0	0	0	0	0.129873
+GO:0008888	glycerol dehydrogenase [NAD+] activity	molecular_function	Escherichia	Escherichia coli	0.0508684	0	0	0	0	0
+GO:0008889	glycerophosphodiester phosphodiesterase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	44.9157	25.4133	31.2513	18.283	20.8246	13.5499
+GO:0008889	glycerophosphodiester phosphodiesterase activity	molecular_function	Escherichia	Escherichia coli	0.0262241	0	0	0	0	0
+GO:0008890	glycine C-acetyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	134.433	98.7123	165.423	101.135	109.359	59.248
+GO:0008890	glycine C-acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0696311	0	0	0	0	0
+GO:0008891	glycolate oxidase activity	molecular_function	Escherichia	Escherichia coli	0.0359943	0	0.0668025	0	0	0
+GO:0008894	guanosine-5'-triphosphate,3'-diphosphate diphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.254877	0	0.0675693	0	0	0.0484437
+GO:0008897	holo-[acyl-carrier-protein] synthase activity	molecular_function	Clostridium	Clostridium thermocellum	3.1134	23.8982	26.3249	55.7143	50.028	67.7148
+GO:0008897	holo-[acyl-carrier-protein] synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	7.96412	13.1862	9.17571	10.6701	11.5054	8.74583
+GO:0008897	holo-[acyl-carrier-protein] synthase activity	molecular_function	Escherichia	Escherichia coli	0.278913	0	0.0729821	0	0	0.147659
+GO:0008898	S-adenosylmethionine-homocysteine S-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0137561	0	0.0127651	0	0	0.0549114
+GO:0008899	homoserine O-succinyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.80171	18.6499	14.2566	39.4573	34.2343	40.4424
+GO:0008899	homoserine O-succinyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.155789	0	0.346913	0	0	0
+GO:0008901	ferredoxin hydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	7.39113	47.3819	28.6591	262.74	233.096	198.697
+GO:0008901	ferredoxin hydrogenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	72.8251	71.6263	56.2895	66.987	100.712	65.7144
+GO:0008901	ferredoxin hydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0312793	0	0.0465498	0	0	0
+GO:0008901	ferredoxin hydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	8.38981	7.17588	26.2628	12.3054	11.6651	29.7389
+GO:0008908	isochorismatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.127425	0	0	0
+GO:0008909	isochorismate synthase activity	molecular_function	Escherichia	Escherichia coli	0.0236965	0	0	0	0	0
+GO:0008911	lactaldehyde dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0389594	0	0	0	0	0
+GO:0008911	lactaldehyde dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.0740646	0	0	0
+GO:0008914	leucyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.704623	2.19613	0.980296	6.0269	4.87048	7.72586
+GO:0008914	leucyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0872759	0	0	0	0	0
+GO:0008917	lipopolysaccharide N-acetylglucosaminyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.157831	0	0.0976553	0	0	0
+GO:0008918	lipopolysaccharide 3-alpha-galactosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.671715	0	0.259948	0	0	0.372512
+GO:0008919	lipopolysaccharide glucosyltransferase I activity	molecular_function	Escherichia	Escherichia coli	0.591877	0	0.208121	0	0	0.22385
+GO:0008921	lipopolysaccharide-1,6-galactosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.365509	0	0.407987	0	0	0.181033
+GO:0008922	long-chain fatty acid [acyl-carrier-protein] ligase activity	molecular_function	Escherichia	Escherichia coli	0.0121034	0	0	0	0	0
+GO:0008923	lysine decarboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	0.815595	7.43865	3.57716	26.3429	23.4271	26.2391
+GO:0008923	lysine decarboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0486567	0	0.0225983	0	0	0
+GO:0008925	maltose O-acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.120913	0	0	0	0	0
+GO:0008926	mannitol-1-phosphate 5-dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0243284	0	0.225757	0	0	0
+GO:0008929	methylglyoxal synthase activity	molecular_function	Clostridium	Clostridium thermocellum	14.5058	68.6207	67.2482	226.88	198.339	202.822
+GO:0008929	methylglyoxal synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.8476	8.17008	7.28098	5.97475	7.36417	4.43159
+GO:0008932	lytic endotransglycosylase activity	molecular_function	Escherichia	Escherichia coli	0.0509413	0	0	0	0	0
+GO:0008933	lytic transglycosylase activity	molecular_function	Clostridium	Clostridium thermocellum	3.37987	22.2586	12.6333	61.629	55.6229	67.9723
+GO:0008933	lytic transglycosylase activity	molecular_function	Escherichia	Escherichia coli	0.314033	0	0	0	0	0.0656156
+GO:0008934	inositol monophosphate 1-phosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	37.3761	42.5571	34.4422	32.5891	40.4493	39.8263
+GO:0008934	inositol monophosphate 1-phosphatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.27587	0	0	0
+GO:0008934	inositol monophosphate 1-phosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0701415	0.06735	0.260354	0.0717752	0.156587	0
+GO:0008939	nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.42921	3.60526	1.94088	5.81473	5.79509	6.63769
+GO:0008939	nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.052278	0	0.0484893	0	0	0
+GO:0008939	nicotinate-nucleotide-dimethylbenzimidazole phosphoribosyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.13061	0.250917	0.0970238	0.080231	0.140114	0.312943
+GO:0008940	nitrate reductase activity	molecular_function	Escherichia	Escherichia coli	0.176593	0	0	0	0	0
+GO:0008941	nitric oxide dioxygenase activity	molecular_function	Escherichia	Escherichia coli	0.0466881	0	0	0	0	0
+GO:0008942	nitrite reductase [NAD(P)H] activity	molecular_function	Escherichia	Escherichia coli	0.0812241	0	0	0	0	0
+GO:0008948	oxaloacetate decarboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	8.12293	37.4354	30.9941	110.292	106.89	100.995
+GO:0008948	oxaloacetate decarboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	80.9923	54.3957	54.9056	41.5088	43.4297	35.3704
+GO:0008948	oxaloacetate decarboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0541008	0	0	0	0	0
+GO:0008948	oxaloacetate decarboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0312307	0.149776	0.115788	0.159741	0.0975763	0.228442
+GO:0008949	oxalyl-CoA decarboxylase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0418465
+GO:0008955	peptidoglycan glycosyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.22279	6.72394	4.65502	17.615	16.7616	17.2018
+GO:0008955	peptidoglycan glycosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0705061	0	0.0375285	0	0	0
+GO:0008959	phosphate acetyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.82636	26.167	24.122	49.8	56.3004	73.964
+GO:0008959	phosphate acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0227	0	0	0	0	0
+GO:0008960	phosphatidylglycerol-membrane-oligosaccharide glycerophosphotransferase activity	molecular_function	Escherichia	Escherichia coli	0.0907756	0	0	0	0	0
+GO:0008961	phosphatidylglycerol-prolipoprotein diacylglyceryl transferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.97208	5.6224	2.38586	18.0107	13.9535	12.5643
+GO:0008961	phosphatidylglycerol-prolipoprotein diacylglyceryl transferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	45.9846	64.7185	78.0134	26.6446	31.0394	36.6187
+GO:0008961	phosphatidylglycerol-prolipoprotein diacylglyceryl transferase activity	molecular_function	Escherichia	Escherichia coli	0.0669577	0	0	0	0	0
+GO:0008962	phosphatidylglycerophosphatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.244476	0	0	0.175277
+GO:0008962	phosphatidylglycerophosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.359773	0.138901	0.335591	0.147927	0.0322939	0
+GO:0008963	phospho-N-acetylmuramoyl-pentapeptide-transferase activity	molecular_function	Clostridium	Clostridium thermocellum	8.31155	50.4013	54.5091	143.257	142.31	148.974
+GO:0008963	phospho-N-acetylmuramoyl-pentapeptide-transferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	123.001	63.0804	56.0024	53.3677	45.8565	36.7708
+GO:0008963	phospho-N-acetylmuramoyl-pentapeptide-transferase activity	molecular_function	Escherichia	Escherichia coli	0.0765578	0	0.0472715	0	0	0
+GO:0008963	phospho-N-acetylmuramoyl-pentapeptide-transferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.16816	0.439805	0.10618	0.28924	0.0766981	0.257062
+GO:0008964	phosphoenolpyruvate carboxylase activity	molecular_function	Escherichia	Escherichia coli	0.0194432	0	0	0	0	0.025483
+GO:0008964	phosphoenolpyruvate carboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0342444	0.262166	0	0.262877	0.15294	0.159528
+GO:0008965	phosphoenolpyruvate-protein phosphotransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.6681	14.503	13.2736	20.8846	25.1986	16.0168
+GO:0008965	phosphoenolpyruvate-protein phosphotransferase activity	molecular_function	Escherichia	Escherichia coli	0.251839	0	0.0430315	0	0	0.0308513
+GO:0008966	phosphoglucosamine mutase activity	molecular_function	Clostridium	Clostridium thermocellum	5.04163	23.9885	14.9549	76.3643	62.9168	59.3693
+GO:0008966	phosphoglucosamine mutase activity	molecular_function	Escherichia	Escherichia coli	0.0409037	0	0	0	0	0.0543617
+GO:0008966	phosphoglucosamine mutase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.280226	0.384217	0.372578	0.553659	0.249866	0.132719
+GO:0008967	phosphoglycolate phosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	0.916311	12.1999	8.4127	33.9792	34.1312	43.0966
+GO:0008967	phosphoglycolate phosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.188405	0.361814	0.262248	0.240991	0.0420603	0.125346
+GO:0008972	phosphomethylpyrimidine kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0	0.146088	0	0	0	0
+GO:0008972	phosphomethylpyrimidine kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.305059	0.147408	0.243752	0.0708166	0.105683
+GO:0008973	phosphopentomutase activity	molecular_function	Clostridium	Clostridium thermocellum	0.81263	4.4486	5.05268	10.4408	12.9069	10.716
+GO:0008973	phosphopentomutase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	14.6687	10.4423	9.26466	12.7706	15.3251	11.6857
+GO:0008973	phosphopentomutase activity	molecular_function	Escherichia	Escherichia coli	0.180458	0	0	0	0	0.060215
+GO:0008977	prephenate dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	3.38371	16.3874	12.5114	61.2005	62.8299	58.0045
+GO:0008977	prephenate dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.2427	0.544541	0.41349	0.496905	0.289343	0.565963
+GO:0008979	prophage integrase activity	molecular_function	Escherichia	Escherichia coli	0.0479276	0	0	0	0	0
+GO:0008980	propionate kinase activity	molecular_function	Escherichia	Escherichia coli	0.0457159	0	0	0	0	0
+GO:0008982	protein-N(PI)-phosphohistidine-sugar phosphotransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1256.29	552.953	731.412	428.284	475.558	378.832
+GO:0008982	protein-N(PI)-phosphohistidine-sugar phosphotransferase activity	molecular_function	Escherichia	Escherichia coli	1.17274	0	2.2513	0	0	0.339235
+GO:0008983	protein-glutamate O-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.35053	3.84595	4.45073	48.6816	37.6826	26.3392
+GO:0008983	protein-glutamate O-methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0395184	0.151783	0	0.0403642	0.0705779	0
+GO:0008984	protein-glutamate methylesterase activity	molecular_function	Clostridium	Clostridium thermocellum	3.25315	9.02579	9.47242	86.7788	82.4587	83.4675
+GO:0008984	protein-glutamate methylesterase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.8894	20.1219	28.0721	10.4345	16.3788	14.0895
+GO:0008986	pyruvate, water dikinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.607431	0.574832	0.355077	0.495985	0.352955	0.322516
+GO:0008987	quinolinate synthetase A activity	molecular_function	Clostridium	Clostridium thermocellum	3.74812	39.4446	33.242	88.3542	86.2584	79.0776
+GO:0008987	quinolinate synthetase A activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0953205	0.122005	0	0.390386	0.0567314	0
+GO:0008989	rRNA (guanine-N1-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.151123	0	0	0	0	0
+GO:0008993	rhamnulokinase activity	molecular_function	Escherichia	Escherichia coli	0.0552431	0	0	0	0	0
+GO:0008998	ribonucleoside-triphosphate reductase activity	molecular_function	Escherichia	Escherichia coli	0.0487782	0	0	0	0	0.0325329
+GO:0008998	ribonucleoside-triphosphate reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0891473	0.213999	0.268834	0.0912236	0.059683	0.0889643
+GO:0008999	ribosomal-protein-alanine N-acetyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	7.87636	3.88773	3.60458	1.22769	3.346	1.58729
+GO:0009001	serine O-acetyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.70935	12.2732	6.72188	25.6384	18.8175	41.6856
+GO:0009002	serine-type D-Ala-D-Ala carboxypeptidase activity	molecular_function	Clostridium	Clostridium thermocellum	11.4678	41.1042	43.0798	77.3469	76.4782	95.1614
+GO:0009002	serine-type D-Ala-D-Ala carboxypeptidase activity	molecular_function	Escherichia	Escherichia coli	0.129832	0	0.380833	0	0	0
+GO:0009007	site-specific DNA-methyltransferase (adenine-specific) activity	molecular_function	Clostridium	Clostridium thermocellum	1.16504	22.054	19.0003	37.3825	34.1225	33.9458
+GO:0009007	site-specific DNA-methyltransferase (adenine-specific) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.791777	1.45729	1.46866	0.560821	0.434579	0.4054
+GO:0009007	site-specific DNA-methyltransferase (adenine-specific) activity	molecular_function	Escherichia	Escherichia coli	0.331775	0	0.071268	0	0	0
+GO:0009010	sorbitol-6-phosphate 2-dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0770925	0	0	0	0	0
+GO:0009011	starch synthase activity	molecular_function	Clostridium	Clostridium thermocellum	3.25983	22.9129	16.1641	176.137	163.855	141.991
+GO:0009011	starch synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	25.1303	18.9059	16.8647	23.5169	27.9081	19.338
+GO:0009011	starch synthase activity	molecular_function	Escherichia	Escherichia coli	0.0567743	0	0	0	0	0
+GO:0009013	succinate-semialdehyde dehydrogenase [NAD(P)+] activity	molecular_function	Escherichia	Escherichia coli	0.0781861	0	0	0	0	0
+GO:0009014	succinyl-diaminopimelate desuccinylase activity	molecular_function	Escherichia	Escherichia coli	0.0496046	0	0	0	0	0
+GO:0009017	succinylglutamate desuccinylase activity	molecular_function	Escherichia	Escherichia coli	0.118701	0	0	0	0	0
+GO:0009018	sucrose phosphorylase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.165946	0	0	0
+GO:0009022	tRNA nucleotidyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.09874	22.0906	19.5707	49.8565	44.7456	41.7264
+GO:0009022	tRNA nucleotidyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.171465	0	0	0	0	0
+GO:0009024	tagatose-6-phosphate kinase activity	molecular_function	Clostridium	Clostridium thermocellum	9.86686	28.7165	21.6438	133.033	107.045	143.081
+GO:0009024	tagatose-6-phosphate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	125.074	105.814	111.725	74.0842	99.1241	73.0471
+GO:0009025	tagatose-bisphosphate aldolase activity	molecular_function	Escherichia	Escherichia coli	0.103414	0	0	0	0	0
+GO:0009026	tagaturonate reductase activity	molecular_function	Escherichia	Escherichia coli	0.037331	0	0	0	0	0.0489934
+GO:0009027	tartrate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0963923	0	0	0
+GO:0009028	tartronate-semialdehyde synthase activity	molecular_function	Escherichia	Escherichia coli	0.0297725	0	0.225667	0	0	0.0197914
+GO:0009030	thiamine-phosphate kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.732208	0.75966	1.07344	1.04805	0.508174	0.872342
+GO:0009032	thymidine phosphorylase activity	molecular_function	Escherichia	Escherichia coli	0.0414384	0	0	0	0	0
+GO:0009033	trimethylamine-N-oxide reductase activity	molecular_function	Escherichia	Escherichia coli	0.023818	0	0	0	0	0
+GO:0009034	tryptophanase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	7.95642	2.92195	5.68913	0.332439	0.870287	2.26893
+GO:0009034	tryptophanase activity	molecular_function	Escherichia	Escherichia coli	0.0897792	0	0.299687	0	0	0
+GO:0009035	Type I site-specific deoxyribonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0504309	0.145202	0.0935957	0.0687908	0.0825362	0.0671032
+GO:0009036	Type II site-specific deoxyribonuclease activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0195762	0	0	0
+GO:0009037	tyrosine-based site-specific recombinase activity	molecular_function	Clostridium	Clostridium thermocellum	2.79817	18.9956	17.6943	53.5995	57.7881	90.0056
+GO:0009037	tyrosine-based site-specific recombinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	17.2546	16.0043	18.9494	12.4801	8.90857	9.72214
+GO:0009037	tyrosine-based site-specific recombinase activity	molecular_function	Escherichia	Escherichia coli	0.128568	0	0	0	0	0
+GO:0009037	tyrosine-based site-specific recombinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.123683	0.356213	0.401717	0.253103	0.386681	0.493718
+GO:0009039	urease activity	molecular_function	Clostridium	Clostridium thermocellum	0.0309634	0.628694	1.87584	1.02724	1.13578	2.2221
+GO:0009045	xylose isomerase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0769063	0	0	0
+GO:0009052	pentose-phosphate shunt, non-oxidative branch	biological_process	Escherichia	Escherichia coli	0.24479	0	0.0933701	0	0	0
+GO:0009052	pentose-phosphate shunt, non-oxidative branch	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.366068	1.3183	1.01918	1.49649	0.69458	0.912054
+GO:0009055	electron carrier activity	molecular_function	Clostridium	Clostridium thermocellum	155.433	2025.06	1177.37	6036.32	4225.39	7111.34
+GO:0009055	electron carrier activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6105.26	15041.1	12849.1	5663.86	6300.71	7716.41
+GO:0009055	electron carrier activity	molecular_function	Escherichia	Escherichia coli	1.71973	0	2.40106	0	0	0.239211
+GO:0009055	electron carrier activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	3.52377	21.4136	10.7144	9.17578	3.57768	9.9522
+GO:0009056	catabolic process	biological_process	Escherichia	Escherichia coli	0.0648918	0	0.0618859	0	0	0
+GO:0009058	biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	31.9919	1512.4	1300.19	810.889	863.893	937.324
+GO:0009058	biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	161.844	67.3117	111.497	41.4137	45.1148	49.2434
+GO:0009058	biosynthetic process	biological_process	Escherichia	Escherichia coli	0.196571	0	0.340192	0	0	0.0869269
+GO:0009058	biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.05381	2.9143	3.05997	3.37973	2.29367	5.24294
+GO:0009059	macromolecule biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.0777973	0.0373389	0.0360851	0.37815	0.277906	0.129388
+GO:0009060	aerobic respiration	biological_process	Escherichia	Escherichia coli	0.19696	0	0	0	0	0.106654
+GO:0009061	anaerobic respiration	biological_process	Escherichia	Escherichia coli	0.288319	0	0.605102	0	0	0.0680087
+GO:0009063	cellular amino acid catabolic process	biological_process	Escherichia	Escherichia coli	0.139554	0	0.0742451	0	0	0
+GO:0009073	aromatic amino acid family biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	33.1477	195.447	144.814	520.522	400.363	612.79
+GO:0009073	aromatic amino acid family biosynthetic process	biological_process	Escherichia	Escherichia coli	0.543123	0	0.0854314	0	0	0
+GO:0009073	aromatic amino acid family biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.89888	5.53782	3.08843	1.50516	1.32659	2.37442
+GO:0009082	branched-chain amino acid biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	5.75651	34.0291	23.5696	99.5964	78.3471	48.7481
+GO:0009086	methionine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	6.93494	45.9129	36.2113	124.122	135.236	151.264
+GO:0009086	methionine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	10.4237	7.6758	5.06856	6.69897	8.77134	7.19531
+GO:0009086	methionine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.273737	0	0.490126	0	0	0.0708545
+GO:0009086	methionine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.45451	0.689369	0.753186	0.587432	0.161122	0.562341
+GO:0009088	threonine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	5.74762	35.8923	30.8092	120.435	128.656	122.88
+GO:0009088	threonine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.274417	0.316447	0.10176	0.224826	0.637198	0.219193
+GO:0009088	threonine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0847725	0	0.15476	0	0	0
+GO:0009088	threonine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.752016	2.01327	2.17133	2.31757	1.04152	1.82708
+GO:0009089	lysine biosynthetic process via diaminopimelate	biological_process	Clostridium	Clostridium thermocellum	12.8175	88.7074	87.6977	259.318	265.568	319.566
+GO:0009089	lysine biosynthetic process via diaminopimelate	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.314908	0.47201	0.327066	0.26626	0.890384	0.353917
+GO:0009089	lysine biosynthetic process via diaminopimelate	biological_process	Escherichia	Escherichia coli	0.310703	0	0.298198	0	0	0.0822378
+GO:0009089	lysine biosynthetic process via diaminopimelate	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.64706	2.75967	4.2727	4.35302	1.59384	3.74378
+GO:0009090	homoserine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0825366	0	0.0395132	0	0	0
+GO:0009094	L-phenylalanine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.97178	34.7949	21.2976	90.9433	79.4176	122.027
+GO:0009094	L-phenylalanine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.14196	0	0	0	0	0
+GO:0009094	L-phenylalanine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0861822	0	0	0.176379	0	0
+GO:0009097	isoleucine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	21.536	164.346	107.335	479.914	443.671	381.841
+GO:0009097	isoleucine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.274417	0.316447	0.10176	0.224826	0.637198	0.219193
+GO:0009097	isoleucine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.219757	0	0.115427	0	0	0.0414585
+GO:0009097	isoleucine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.988008	2.11641	2.6657	3.91177	1.36168	2.36717
+GO:0009098	leucine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	16.6799	114.54	77.5037	335.963	262.374	199.657
+GO:0009098	leucine biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0.115427	0	0	0.0414585
+GO:0009098	leucine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.557462	2.28337	1.26343	1.79316	0.668537	0.961662
+GO:0009099	valine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	17.2058	142.842	87.5369	416.188	367.883	307.213
+GO:0009099	valine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.219757	0	0.115427	0	0	0.0414585
+GO:0009099	valine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.403982	1.70643	1.47989	2.6718	1.09014	1.55311
+GO:0009102	biotin biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.202428	2.11296	0.97538	2.63837	3.71452	4.66925
+GO:0009102	biotin biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	134.433	98.7123	165.423	101.135	109.359	59.248
+GO:0009102	biotin biosynthetic process	biological_process	Escherichia	Escherichia coli	0.302124	0	0.233516	0	0	0.11836
+GO:0009103	lipopolysaccharide biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	10.1563	81.3977	65.9993	190.168	201.5	250.541
+GO:0009103	lipopolysaccharide biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	17.0894	14.1176	12.1005	34.4997	35.4584	19.8786
+GO:0009103	lipopolysaccharide biosynthetic process	biological_process	Escherichia	Escherichia coli	1.57053	0	1.7029	0	0	0.431368
+GO:0009103	lipopolysaccharide biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0845295	0	0.209564	0.0577733	0.20162	0.0749939
+GO:0009107	lipoate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.341083	0	0	0	0	0
+GO:0009108	coenzyme biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.771678	0.763254	0.841504	1.98225	0.998638	1.40351
+GO:0009113	purine nucleobase biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	3.5272	5.59043	3.38983	57.058	45.3974	35.3047
+GO:0009113	purine nucleobase biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.387868	0.299551	0.499508	0.272179	0.405172	0.441555
+GO:0009113	purine nucleobase biosynthetic process	biological_process	Escherichia	Escherichia coli	0.220292	0	0	0	0	0
+GO:0009113	purine nucleobase biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.213633	0.190708	0.804382	0.622524	0.299956	0.630899
+GO:0009114	hypoxanthine catabolic process	biological_process	Escherichia	Escherichia coli	0.0226271	0	0	0	0	0.060215
+GO:0009115	xanthine catabolic process	biological_process	Escherichia	Escherichia coli	0.0258109	0	0	0	0	0.0119007
+GO:0009116	nucleoside metabolic process	biological_process	Clostridium	Clostridium thermocellum	8.27283	59.0624	42.3816	175.58	174.184	202.063
+GO:0009116	nucleoside metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	174.28	112.929	122.558	104.879	119.324	108.393
+GO:0009116	nucleoside metabolic process	biological_process	Escherichia	Escherichia coli	0.0710651	0	0	0	0	0
+GO:0009116	nucleoside metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.659466	1.10458	1.90245	2.14612	0.396208	1.96278
+GO:0009117	nucleotide metabolic process	biological_process	Escherichia	Escherichia coli	0.208966	0	0	0	0	0
+GO:0009117	nucleotide metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.321445	0.20471	0	0.656919	0.523974	0.141838
+GO:0009143	nucleoside triphosphate catabolic process	biological_process	Clostridium	Clostridium thermocellum	4.42378	27.4467	20.7349	59.5457	61.5965	71.5612
+GO:0009143	nucleoside triphosphate catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	39.9694	79.6803	76.3232	58.9659	71.4159	58.7156
+GO:0009143	nucleoside triphosphate catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.235117	0.564237	1.08797	0.960733	0.471539	1.87452
+GO:0009152	purine ribonucleotide biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.56609	19.096	13.0901	53.6147	49.7911	53.0492
+GO:0009156	ribonucleoside monophosphate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	7.68042	47.456	38.0977	129.847	130.084	128.96
+GO:0009156	ribonucleoside monophosphate biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	18.0708	16.0209	9.62597	23.7424	27.9475	19.6547
+GO:0009156	ribonucleoside monophosphate biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0685617	0.395372	0.191116	0.56194	0.0306445	0.548177
+GO:0009163	nucleoside biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.42921	3.60526	1.94088	5.81473	5.79509	6.63769
+GO:0009163	nucleoside biosynthetic process	biological_process	Escherichia	Escherichia coli	0.052278	0	0.0484893	0	0	0
+GO:0009165	nucleotide biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	12.3477	82.2144	59.9908	225.673	228.045	198.386
+GO:0009165	nucleotide biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	18.0708	16.0209	9.62597	23.7424	27.9475	19.6547
+GO:0009165	nucleotide biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0685617	0.395372	0.191116	0.56194	0.0306445	0.548177
+GO:0009166	nucleotide catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	311.041	63.3319	114.365	50.766	59.364	46.9924
+GO:0009166	nucleotide catabolic process	biological_process	Escherichia	Escherichia coli	0.0953934	0	0.161661	0	0	0.105683
+GO:0009166	nucleotide catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0388622	0.111877	0	0.0397673	0	0.155097
+GO:0009168	purine ribonucleoside monophosphate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.028533	0	0	0	0	0
+GO:0009186	deoxyribonucleoside diphosphate metabolic process	biological_process	Escherichia	Escherichia coli	0.0600067	0	0.0919719	0	0	0.0329857
+GO:0009220	pyrimidine ribonucleotide biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.44795	10.3579	10.2479	25.2983	25.9347	35.8891
+GO:0009220	pyrimidine ribonucleotide biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.83	23.6456	13.4701	22.3517	31.1397	20.7496
+GO:0009220	pyrimidine ribonucleotide biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.107302	0	0	0.219603	0.04792	0
+GO:0009225	nucleotide-sugar metabolic process	biological_process	Clostridium	Clostridium thermocellum	0	0	0	0.118854	0.285068	0.0772576
+GO:0009225	nucleotide-sugar metabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.0963923	0	0	0.0691405
+GO:0009228	thiamine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	6.01661	51.0999	62.497	93.3511	94.9705	85.8493
+GO:0009228	thiamine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	58.6956	41.7458	32.4765	34.8417	42.3967	30.9067
+GO:0009228	thiamine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.100108	0	0.0458281	0	0	0
+GO:0009228	thiamine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.11872	1.98694	1.88175	2.89438	1.18973	1.82805
+GO:0009229	thiamine diphosphate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	3.19829	31.4616	52.9087	44.9853	47.9843	41.0127
+GO:0009229	thiamine diphosphate biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	5.71622	3.38575	2.93453	2.60064	2.69027	2.62158
+GO:0009229	thiamine diphosphate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.100108	0	0.0458281	0	0	0
+GO:0009229	thiamine diphosphate biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.652126	1.2621	1.20249	1.87076	0.781305	1.10428
+GO:0009231	riboflavin biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	13.9733	108.373	64.8526	319.996	247.155	217.613
+GO:0009231	riboflavin biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	11.502	12.0994	6.78476	11.8856	12.0771	13.8432
+GO:0009231	riboflavin biosynthetic process	biological_process	Escherichia	Escherichia coli	0.165851	0	0.131891	0	0	0
+GO:0009231	riboflavin biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.22342	2.71318	3.34955	4.06472	0.854639	3.84729
+GO:0009234	menaquinone biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0.114796	0	0	0.106654
+GO:0009236	cobalamin biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	5.23905	72.1388	49.4712	181.5	165.378	210.436
+GO:0009236	cobalamin biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	19.8117	26.9325	13.3741	32.1034	34.5025	26.5592
+GO:0009236	cobalamin biosynthetic process	biological_process	Escherichia	Escherichia coli	0.429914	0	0.287553	0	0	0
+GO:0009236	cobalamin biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.02844	3.50664	3.96489	3.89456	2.84171	5.37637
+GO:0009239	enterobactin biosynthetic process	biological_process	Escherichia	Escherichia coli	0.256505	0	0.463062	0	0	0
+GO:0009242	colanic acid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.504479	0	0	0	0	0
+GO:0009243	O antigen biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	3.26015	1.99964	4.92832	0.722029	1.58891	1.92271
+GO:0009243	O antigen biosynthetic process	biological_process	Escherichia	Escherichia coli	0.546404	0	0.349033	0	0	0.0691405
+GO:0009243	O antigen biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.151244	0.0640362	0.395177	0.15989	0.20162	0.0749939
+GO:0009244	lipopolysaccharide core region biosynthetic process	biological_process	Escherichia	Escherichia coli	3.56912	0	2.71062	0	0	0.606904
+GO:0009245	lipid A biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	8.27278	53.4787	39.6463	149.361	140.346	156.965
+GO:0009245	lipid A biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	17.0894	14.1176	12.1005	34.4997	35.4584	19.8786
+GO:0009245	lipid A biosynthetic process	biological_process	Escherichia	Escherichia coli	0.51092	0	0.476594	0	0	0.0872827
+GO:0009246	enterobacterial common antigen biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	4.60829	38.8424	31.8566	98.9275	100.38	84.5695
+GO:0009246	enterobacterial common antigen biosynthetic process	biological_process	Escherichia	Escherichia coli	0.630083	0	0.729189	0	0	0.069561
+GO:0009246	enterobacterial common antigen biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.411541	1.18523	1.3379	0.63185	0.398466	0.410963
+GO:0009247	glycolipid biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.04611	24.743	19.4994	37.4554	36.2616	38.6475
+GO:0009249	protein lipoylation	biological_process	Clostridium	Clostridium thermocellum	1.97208	5.6224	2.38586	18.0107	13.9535	12.5643
+GO:0009249	protein lipoylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	79.0831	107.454	114.033	57.2569	68.2734	75.6252
+GO:0009249	protein lipoylation	biological_process	Escherichia	Escherichia coli	0.156275	0	0	0	0	0
+GO:0009250	glucan biosynthetic process	biological_process	Escherichia	Escherichia coli	0.282267	0	0.209203	0	0	0.0477969
+GO:0009252	peptidoglycan biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	51.5267	297.611	267.757	727.587	659.583	717.691
+GO:0009252	peptidoglycan biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	260.398	247.371	193.464	222.784	238.3	185.998
+GO:0009252	peptidoglycan biosynthetic process	biological_process	Escherichia	Escherichia coli	1.38905	0	0.960495	0	0	0.476222
+GO:0009253	peptidoglycan catabolic process	biological_process	Clostridium	Clostridium thermocellum	7.10339	23.5058	19.0309	126.018	116.203	118.523
+GO:0009253	peptidoglycan catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	11.0948	12.6157	10.4638	7.60829	8.64425	9.36065
+GO:0009253	peptidoglycan catabolic process	biological_process	Escherichia	Escherichia coli	0.212782	0	0	0	0	0.312523
+GO:0009254	peptidoglycan turnover	biological_process	Clostridium	Clostridium thermocellum	1.35245	3.64138	2.19357	9.87297	8.4925	11.1669
+GO:0009254	peptidoglycan turnover	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	29.3339	38.3753	20.3505	25.8515	35.8054	29.1819
+GO:0009254	peptidoglycan turnover	biological_process	Escherichia	Escherichia coli	0.46987	0	0.0737038	0	0	0.199693
+GO:0009263	deoxyribonucleotide biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0600067	0	0	0	0	0
+GO:0009264	deoxyribonucleotide catabolic process	biological_process	Clostridium	Clostridium thermocellum	2.90613	26.5489	20.1626	70.8073	50.647	71.5258
+GO:0009264	deoxyribonucleotide catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	33.9091	24.7874	17.0391	25.9841	31.4897	28.5441
+GO:0009264	deoxyribonucleotide catabolic process	biological_process	Escherichia	Escherichia coli	0.0771654	0	0	0	0	0.060215
+GO:0009264	deoxyribonucleotide catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.370175	0.347438	0.257738	0.142033	0.0826881	0.18514
+GO:0009266	response to temperature stimulus	biological_process	Escherichia	Escherichia coli	0.280031	0	0.374338	0	0	0.123535
+GO:0009267	cellular response to starvation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	2264.11	440.619	906.906	318.673	321.72	232.447
+GO:0009267	cellular response to starvation	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.324003
+GO:0009268	response to pH	biological_process	Escherichia	Escherichia coli	0.613604	0	1.6706	0	0	0.175277
+GO:0009271	phage shock	biological_process	Escherichia	Escherichia coli	0.0802034	0	0	0	0	0
+GO:0009273	peptidoglycan-based cell wall biogenesis	biological_process	Escherichia	Escherichia coli	0.10949	0	0	0	0	0
+GO:0009290	DNA import into cell involved in transformation	biological_process	Escherichia	Escherichia coli	0.201602	0	0.187552	0	0	0
+GO:0009294	DNA mediated transformation	biological_process	Clostridium	Clostridium thermocellum	0.857374	9.97961	8.14846	21.3218	22.7481	23.4977
+GO:0009294	DNA mediated transformation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	1.5961	1.49617	2.16822	1.03557	0.590536	0.569488
+GO:0009294	DNA mediated transformation	biological_process	Escherichia	Escherichia coli	0.111434	0	0	0	0	0
+GO:0009297	pilus assembly	biological_process	Escherichia	Escherichia coli	0.242579	0	0.136672	0	0	0.267701
+GO:0009298	GDP-mannose biosynthetic process	biological_process	Escherichia	Escherichia coli	0.03981	0	0	0	0	0
+GO:0009305	protein biotinylation	biological_process	Escherichia	Escherichia coli	0.178999	0	0	0	0	0
+GO:0009306	protein secretion	biological_process	Clostridium	Clostridium thermocellum	116.884	557.649	443.588	1997.09	1670.65	2125.64
+GO:0009306	protein secretion	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	759.094	460.013	447.271	370.495	410.122	328.987
+GO:0009306	protein secretion	biological_process	Escherichia	Escherichia coli	1.266	0	0.393824	0	0	0.117681
+GO:0009307	DNA restriction-modification system	biological_process	Escherichia	Escherichia coli	0	0	0.14213	0	0	0
+GO:0009307	DNA restriction-modification system	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0504309	2.26862	0.680068	0.43274	0.435274	0.803427
+GO:0009308	amine metabolic process	biological_process	Escherichia	Escherichia coli	0.0686346	0	0	0	0	0
+GO:0009372	quorum sensing	biological_process	Clostridium	Clostridium thermocellum	13.8842	61.0926	57.1465	116.659	97.5631	177.173
+GO:0009372	quorum sensing	biological_process	Escherichia	Escherichia coli	0.16534	0	0.492967	0	0	0
+GO:0009378	four-way junction helicase activity	molecular_function	Clostridium	Clostridium thermocellum	1.22587	14.6422	11.6968	34.7141	38.6659	39.8676
+GO:0009378	four-way junction helicase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	22.1839	32.6019	22.1902	27.65	26.8396	13.5117
+GO:0009378	four-way junction helicase activity	molecular_function	Escherichia	Escherichia coli	0.112917	0	0.104737	0	0	0
+GO:0009381	excinuclease ABC activity	molecular_function	Clostridium	Clostridium thermocellum	9.64752	26.388	25.182	61.711	59.6319	57.0161
+GO:0009381	excinuclease ABC activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	23.0826	22.3576	15.9566	24.5116	23.5278	18.7787
+GO:0009381	excinuclease ABC activity	molecular_function	Escherichia	Escherichia coli	0.111604	0	0	0	0	0
+GO:0009381	excinuclease ABC activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.230475	0.140161	0.308573	0.217042	0.168263	0.332023
+GO:0009389	dimethyl sulfoxide reductase activity	molecular_function	Escherichia	Escherichia coli	0.102199	0	0.252686	0	0	0
+GO:0009395	phospholipid catabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.244476	0	0	0.175277
+GO:0009396	folic acid-containing compound biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	10.5117	54.8254	42.4318	143.959	133.887	149.189
+GO:0009396	folic acid-containing compound biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	138.25	57.6078	89.4148	49.3146	66.0765	56.4692
+GO:0009396	folic acid-containing compound biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0648918	0	0	0	0	0
+GO:0009398	FMN biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.18476	13.2453	14.3414	40.3507	33.9304	35.5191
+GO:0009398	FMN biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	11.502	12.0994	6.78476	11.8856	12.0771	13.8432
+GO:0009398	FMN biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.204106	0.338159	0	0.295319
+GO:0009399	nitrogen fixation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	89.8945	66.5803	94.2909	35.8416	41.9936	38.8995
+GO:0009399	nitrogen fixation	biological_process	Escherichia	Escherichia coli	0.316439	0	0.0358144	0	0	0
+GO:0009399	nitrogen fixation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.18881	1.30317	1.201	2.57595	1.33749	3.28104
+GO:0009401	phosphoenolpyruvate-dependent sugar phosphotransferase system	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	1540.98	667.246	890.113	537.755	597.365	456.607
+GO:0009401	phosphoenolpyruvate-dependent sugar phosphotransferase system	biological_process	Escherichia	Escherichia coli	2.54014	0	3.19935	0	0	0.533462
+GO:0009403	toxin biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	4.60246	18.8217	6.64475	57.9102	57.4213	67.5969
+GO:0009405	pathogenesis	biological_process	Clostridium	Clostridium thermocellum	29.8344	141.85	161.68	252.317	242.793	327.098
+GO:0009405	pathogenesis	biological_process	Escherichia	Escherichia coli	1.34907	0	0.67231	0	0	0.273199
+GO:0009407	toxin catabolic process	biological_process	Escherichia	Escherichia coli	0.050601	0	0	0	0	0
+GO:0009408	response to heat	biological_process	Clostridium	Clostridium thermocellum	2.69197	26.4416	31.0869	38.6303	41.4569	45.3407
+GO:0009408	response to heat	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	106.328	24.3363	42.4334	17.9339	28.2875	32.3251
+GO:0009408	response to heat	biological_process	Escherichia	Escherichia coli	0.496532	0	0	0	0	0.267022
+GO:0009408	response to heat	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.049556	0.190288	0.458416	0.202692	0.13267	0.395472
+GO:0009411	response to UV	biological_process	Clostridium	Clostridium thermocellum	0.208553	0.972351	0.331306	3.19807	3.98802	2.61492
+GO:0009411	response to UV	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.175277
+GO:0009423	chorismate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	28.9614	161.878	112.064	469.11	355.165	557.325
+GO:0009423	chorismate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.543123	0	0	0	0	0
+GO:0009423	chorismate biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.6265	4.61047	2.46768	1.32797	0.950349	1.73249
+GO:0009432	SOS response	biological_process	Clostridium	Clostridium thermocellum	26.7801	153.199	114.421	313.661	317.219	320.542
+GO:0009432	SOS response	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	116.093	153.077	177.261	105.008	112.728	92.5415
+GO:0009432	SOS response	biological_process	Escherichia	Escherichia coli	2.01267	0	0.768973	0	0	0.36585
+GO:0009432	SOS response	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.230475	0.140161	0.308573	0.217042	0.168263	0.332023
+GO:0009435	NAD biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	12.187	89.5575	75.878	198.921	190.362	190.331
+GO:0009435	NAD biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	199.535	124.645	146.6	98.1614	113.467	78.0325
+GO:0009435	NAD biosynthetic process	biological_process	Escherichia	Escherichia coli	0.144488	0	0	0	0	0.0614116
+GO:0009435	NAD biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.308224	0.904721	2.07534	1.47793	0.924696	2.21819
+GO:0009436	glyoxylate catabolic process	biological_process	Escherichia	Escherichia coli	0.0297725	0	0.225667	0	0	0.0197914
+GO:0009437	carnitine metabolic process	biological_process	Escherichia	Escherichia coli	0.988494	0	0.590893	0	0	0.130229
+GO:0009438	methylglyoxal metabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.0997753	0	0	0.170588
+GO:0009443	pyridoxal 5'-phosphate salvage	biological_process	Escherichia	Escherichia coli	0.0681243	0	0	0	0	0
+GO:0009446	putrescine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0266129	0	0.0493915	0	0	0
+GO:0009447	putrescine catabolic process	biological_process	Escherichia	Escherichia coli	0.0785507	0	0	0	0	0.0828522
+GO:0009450	gamma-aminobutyric acid catabolic process	biological_process	Escherichia	Escherichia coli	0.099865399999999993	0	0.079748	0	0	0
+GO:0009451	RNA modification	biological_process	Clostridium	Clostridium thermocellum	2.68205	21.4866	17.6564	50.7099	42.5184	45.7352
+GO:0009451	RNA modification	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.5997	11.3454	7.56375	15.5999	16.5164	19.1874
+GO:0009451	RNA modification	biological_process	Escherichia	Escherichia coli	0.133697	0	0	0	0	0
+GO:0009451	RNA modification	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.124479	0.240552	0.0442191	0	0.229186
+GO:0009605	response to external stimulus	biological_process	Escherichia	Escherichia coli	0.270674	0	0	0	0	0.126833
+GO:0009607	response to biotic stimulus	biological_process	Escherichia	Escherichia coli	0.114108	0	0	0	0	0
+GO:0009617	response to bacterium	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0009636	response to toxic substance	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	5102.29	13939.3	11938.1	4792.25	5139.37	6668.11
+GO:0009636	response to toxic substance	biological_process	Escherichia	Escherichia coli	0.231861	0	0	0	0	0
+GO:0009637	response to blue light	biological_process	Escherichia	Escherichia coli	0.0457645	0	0	0	0	0.0304632
+GO:0009658	chloroplast organization	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009678	hydrogen-translocating pyrophosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	329.96	76.3616	128.399	27.1477	34.4745	46.8286
+GO:0009735	response to cytokinin	biological_process	Clostridium	Clostridium thermocellum	4.49499	69.5112	74.5146	100.37	105.77	104.092
+GO:0009735	response to cytokinin	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	50.2588	66.8372	80.2765	34.749	48.1546	40.7722
+GO:0009758	carbohydrate utilization	biological_process	Escherichia	Escherichia coli	0.0941296	0	0	0	0	0
+GO:0009791	post-embryonic development	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009845	seed germination	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	32.7965	30.3904	25.2548	30.4867	36.1375	23.6265
+GO:0009847	spore germination	biological_process	Clostridium	Clostridium thermocellum	0.720567	4.40828	4.72669	11.3903	13.797	20.0624
+GO:0009882	blue light photoreceptor activity	molecular_function	Escherichia	Escherichia coli	0.0457645	0	0	0	0	0.0304632
+GO:0009927	histidine phosphotransfer kinase activity	molecular_function	Escherichia	Escherichia coli	0.0862308	0	0.0824995	0	0	0.0390654
+GO:0009970	cellular response to sulfate starvation	biological_process	Escherichia	Escherichia coli	0	0	0.111097	0	0	0
+GO:0009982	pseudouridine synthase activity	molecular_function	Clostridium	Clostridium thermocellum	20.2392	92.4515	82.796	183.884	183.662	250.521
+GO:0009982	pseudouridine synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	49.0558	37.5712	26.2759	39.8535	39.3993	31.4734
+GO:0009982	pseudouridine synthase activity	molecular_function	Escherichia	Escherichia coli	0.292475	0	0	0	0	0
+GO:0009982	pseudouridine synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.752551	0.87625	0.922425	0.569526	0.745864	0.887056
+GO:0009992	cellular water homeostasis	biological_process	Escherichia	Escherichia coli	0.0545626	0	0	0	0	0.0773546
+GO:0010033	response to organic substance	biological_process	Escherichia	Escherichia coli	0.098796	0	0.0815072	0	0	0
+GO:0010038	response to metal ion	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0.444106	0	0
+GO:0010041	response to iron(III) ion	biological_process	Escherichia	Escherichia coli	0	0	0.287237	0	0	0.103032
+GO:0010043	response to zinc ion	biological_process	Escherichia	Escherichia coli	0.151682	0	0	0	0	0
+GO:0010045	response to nickel cation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.535151	0.341931	0.68724	0.364397	1.03378	0.533074
+GO:0010124	phenylacetate catabolic process	biological_process	Clostridium	Clostridium thermocellum	7.04363	28.6383	26.3849	80.0477	75.0165	65.8896
+GO:0010124	phenylacetate catabolic process	biological_process	Escherichia	Escherichia coli	0.203546	0	0.112495	0	0	0
+GO:0010124	phenylacetate catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.294541	0.161957	0.702937	0.517149	0.187709	0.47619
+GO:0010133	proline catabolic process to glutamate	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	8.8536	7.17812	8.30773	2.55001	3.206	4.34188
+GO:0010133	proline catabolic process to glutamate	biological_process	Escherichia	Escherichia coli	0.00636766	0	0	0	0	0
+GO:0010181	FMN binding	molecular_function	Clostridium	Clostridium thermocellum	32.9676	282.972	230.348	778.784	706.429	824.017
+GO:0010181	FMN binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	44.39	64.6538	47.2545	48.6192	55.3004	43.0751
+GO:0010181	FMN binding	molecular_function	Escherichia	Escherichia coli	0.890768	0	1.2766	0	0	0.109014
+GO:0010181	FMN binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.54802	3.90453	2.76394	3.99064	1.79507	4.1756
+GO:0010188	response to microbial phytotoxin	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0010212	response to ionizing radiation	biological_process	Escherichia	Escherichia coli	0.0778216	0	0	0	0	0.0845339
+GO:0010285	L,L-diaminopimelate aminotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.112212	6.54863	14.2787	14.7861	20.8913	21.728
+GO:0010285	L,L-diaminopimelate aminotransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0448896	0.129286	0.499643	0.0459351	0.0400853	0.0298488
+GO:0010312	detoxification of zinc ion	biological_process	Escherichia	Escherichia coli	0.0237208	0	0.0220119	0	0	0
+GO:0010340	carboxyl-O-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0	0.465523	0.128508	0.212515	0.618316	0.2764
+GO:0010438	cellular response to sulfur starvation	biological_process	Escherichia	Escherichia coli	0.0481949	0	0.0452868	0	0	0.0217641
+GO:0010468	regulation of gene expression	biological_process	Escherichia	Escherichia coli	0.0281198	0	0	0	0	0
+GO:0010498	proteasomal protein catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.61894	3.5695	1.70137	1.70878	0.959095	2.58087
+GO:0010501	RNA secondary structure unwinding	biological_process	Escherichia	Escherichia coli	0.0880779	0	0.0645923	0	0	0.0529711
+GO:0010608	posttranscriptional regulation of gene expression	biological_process	Escherichia	Escherichia coli	0.108493	0	0	0	0	0
+GO:0010628	positive regulation of gene expression	biological_process	Escherichia	Escherichia coli	0.0309148	0	0	0	0	0.0822378
+GO:0010629	negative regulation of gene expression	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.112378
+GO:0010795	regulation of ubiquinone biosynthetic process	biological_process	Escherichia	Escherichia coli	0.130416	0	0.0604876	0	0	0
+GO:0010967	regulation of polyamine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0983099	0	0.072937	0	0	0
+GO:0010974	negative regulation of barrier septum assembly	biological_process	Escherichia	Escherichia coli	0.108615	0	0	0	0	0.144684
+GO:0015020	glucuronosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0280226	0	0	0	0	0
+GO:0015031	protein transport	biological_process	Clostridium	Clostridium thermocellum	5.68761	59.1771	35.7814	143.815	136.364	129.333
+GO:0015031	protein transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	7.12833	14.9748	13.5304	19.2067	19.5046	16.6573
+GO:0015031	protein transport	biological_process	Escherichia	Escherichia coli	0.951139	0	2.04494	0	0	0.382925
+GO:0015031	protein transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.884445	1.58485	0	0
+GO:0015035	protein disulfide oxidoreductase activity	molecular_function	Clostridium	Clostridium thermocellum	69.7436	705.845	554.929	1695.74	1289.88	2098.5
+GO:0015035	protein disulfide oxidoreductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	74.529	175.079	237.509	129.362	148.538	101.234
+GO:0015035	protein disulfide oxidoreductase activity	molecular_function	Escherichia	Escherichia coli	0.710675	0	0.532526	0	0	0
+GO:0015035	protein disulfide oxidoreductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.01528	4.75987	2.86529	2.80575	0.970207	1.94706
+GO:0015036	disulfide oxidoreductase activity	molecular_function	Escherichia	Escherichia coli	0.101688	0	0	0	0	0
+GO:0015074	DNA integration	biological_process	Clostridium	Clostridium thermocellum	15.0104	115.421	74.3284	140.258	108.481	112.067
+GO:0015074	DNA integration	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	9.85029	12.0532	10.9526	11.5675	15.2489	15.3099
+GO:0015074	DNA integration	biological_process	Escherichia	Escherichia coli	2.53836	0	0.64448	0	0	0.316759
+GO:0015075	ion transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	70.4932	19.0135	31.7417	17.3804	35.2874	19.0254
+GO:0015075	ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0771654	0	0	0	0	0.102676
+GO:0015078	hydrogen ion transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	44.9564	683.11	435.448	1010.09	966.511	862.389
+GO:0015078	hydrogen ion transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	201.028	127.136	107.719	156.35	188.081	133.627
+GO:0015078	hydrogen ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0	0	0.501177	0	0	0
+GO:0015078	hydrogen ion transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.557049	0.252084	0.9268	1.05191	0.681059	0.882949
+GO:0015079	potassium ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.311481	0	0.0892204	0	0	0.109694
+GO:0015079	potassium ion transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0960739	0.73609	0.266533	0.343382	0.256746	0.766432
+GO:0015081	sodium ion transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	2.38104	17.75	13.8523	29.105	39.5093	53.9613
+GO:0015081	sodium ion transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	57.6596	26.7981	29.3111	17.74	17.493	12.5063
+GO:0015081	sodium ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.207557	0	0.177403	0	0	0
+GO:0015087	cobalt ion transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.24621	1.08189	1.3757	1.00187	0.476835	0.789716
+GO:0015087	cobalt ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.714855	0	0.0220119	0	0	0
+GO:0015087	cobalt ion transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0	0	0.747707
+GO:0015091	ferric iron transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0223597	0	0	0	0	0
+GO:0015093	ferrous iron transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	0	0	0	0.0248701	0.0976414	0.048476
+GO:0015093	ferrous iron transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6.08462	5.46879	4.18758	3.62868	3.38264	2.09136
+GO:0015093	ferrous iron transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.135349	0	0	0	0	0
+GO:0015093	ferrous iron transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.120184	2.76513	1.81531	0.517871	0.273739	0.410607
+GO:0015094	lead ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0237208	0	0.0220119	0	0	0
+GO:0015095	magnesium ion transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	1.51708	7.00716	5.29025	20.5804	20.1047	21.6624
+GO:0015095	magnesium ion transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.24621	1.08189	1.3757	1.00187	0.476835	0.789716
+GO:0015095	magnesium ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.691134	0	0	0	0	0
+GO:0015098	molybdate ion transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.436355	0.566151	0	1.2966	0.352889	0.449155
+GO:0015099	nickel cation transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.120232	0	0.0220119	0	0	0.0478292
+GO:0015103	inorganic anion transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	0.241364	5.40574	5.57221	1.34403	2.56268	2.1735
+GO:0015103	inorganic anion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.207727	0	0.192785	0	0	0
+GO:0015103	inorganic anion transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.295351	0.0951744	0.209879	0	0.136405
+GO:0015105	arsenite transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0395583	0	0	0.185755
+GO:0015109	chromate transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.238277	0.228794	0.110556	0.121913	0.212775	0
+GO:0015112	nitrate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.15331	0	0	0	0	0
+GO:0015113	nitrite transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.15331	0	0	0	0	0
+GO:0015116	sulfate transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0.0751824	0	0
+GO:0015128	gluconate transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	210.675	295.704	262.819	84.4667	105.365	123.045
+GO:0015128	gluconate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.285791	0	0.0761395	0	0	0.164637
+GO:0015129	lactate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.161403	0	0.119757	0	0	0
+GO:0015143	urate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0374282	0	0.0694638	0	0	0
+GO:0015144	carbohydrate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.525138	0	0.245965	0	0	0.178543
+GO:0015145	monosaccharide transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.4668	15.9374	18.6096	2.48895	4.0153	5.36667
+GO:0015145	monosaccharide transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.366432	0	0.113984	0	0	0.174565
+GO:0015153	rhamnose transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0960253	0	0.119351	0	0	0
+GO:0015159	polysaccharide transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.147258	0	0.186966	0	0	0
+GO:0015169	glycerol-3-phosphate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0724747	0	0	0	0	0
+GO:0015171	amino acid transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.37314	0	0.11042	0	0	3.23389
+GO:0015173	aromatic amino acid transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.246224	0	0.199641	0	0	0.134886
+GO:0015179	L-amino acid transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.460343	0	0.523098	0	0	0.179351
+GO:0015181	arginine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0498962	0	0	0	0	0
+GO:0015185	gamma-aminobutyric acid transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0388622	0	0	0	0	0
+GO:0015188	L-isoleucine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.145411	0	0	0	0	0
+GO:0015190	L-leucine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.246832	0	0	0	0	0
+GO:0015197	peptide transporter activity	molecular_function	Escherichia	Escherichia coli	0.233756	0	0	0	0	0
+GO:0015199	amino-acid betaine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.265619	0	0	0	0	0
+GO:0015205	nucleobase transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.186874	0	0	0	0	0
+GO:0015207	adenine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.123489	0	0.151873	0	0	0.054588
+GO:0015208	guanine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0803249	0	0	0	0	0.0530681
+GO:0015210	uracil transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0548468
+GO:0015211	purine nucleoside transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.141109	0	0	0	0	0
+GO:0015212	cytidine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0219952	0	0	0	0	0.0584364
+GO:0015213	uridine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0219952	0	0	0	0	0.0584364
+GO:0015214	pyrimidine nucleoside transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0219952	0	0	0	0	0.0584364
+GO:0015218	pyrimidine nucleotide transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0548468
+GO:0015220	choline transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.265619	0	0	0	0	0
+GO:0015221	lipopolysaccharide transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0	0	0.416332	0	0	0
+GO:0015225	biotin transporter activity	molecular_function	Clostridium	Clostridium thermocellum	8.34706	193.014	226.224	269.89	317.035	470.798
+GO:0015225	biotin transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.981519	4.00614	2.05031	1.63257	2.30155	3.91462
+GO:0015225	biotin transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.150029	0.144035	0.278442	0.230049	0.0669752	0.0997978
+GO:0015230	FAD transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0959524	0	0	0	0	0.0780984
+GO:0015232	heme transporter activity	molecular_function	Escherichia	Escherichia coli	0.237475	0	0	0	0	0.0756407
+GO:0015233	pantothenate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.111993	0	0	0	0	0
+GO:0015234	thiamine transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	35.435	13.8448	25.477	9.90637	9.92735	6.56379
+GO:0015235	cobalamin transporter activity	molecular_function	Escherichia	Escherichia coli	0.0914562	0	0.0530902	0	0	0.0381599
+GO:0015238	drug transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	5.61193	45.0619	27.6101	112.842	109.7	124.834
+GO:0015238	drug transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5.32465	3.04886	2.80652	8.9609	7.80836	5.64546
+GO:0015238	drug transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.824831	0	0.178802	0	0	0.267798
+GO:0015238	drug transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.260612	0.0385524	0.149212	0.12343	0.125638	0.133721
+GO:0015288	porin activity	molecular_function	Escherichia	Escherichia coli	1.54856	0	0.928875	0	0	0.781017
+GO:0015291	secondary active transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0773355	0	0	0	0	0
+GO:0015292	uniporter activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0807855	0	0	0
+GO:0015293	symporter activity	molecular_function	Escherichia	Escherichia coli	1.78885	0	0.82071	0	0	0.350036
+GO:0015294	solute:cation symporter activity	molecular_function	Escherichia	Escherichia coli	0.36388	0	0	0	0	0.0281348
+GO:0015295	solute:proton symporter activity	molecular_function	Escherichia	Escherichia coli	0.0392997	0	0	0	0	0.0261298
+GO:0015297	antiporter activity	molecular_function	Clostridium	Clostridium thermocellum	5.85329	50.4677	33.1823	114.186	112.263	127.008
+GO:0015297	antiporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5.32465	3.04886	2.80652	8.9609	7.80836	5.64546
+GO:0015297	antiporter activity	molecular_function	Escherichia	Escherichia coli	1.32963	0	0.700502	0	0	0.359447
+GO:0015297	antiporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.260612	0.333903	0.244386	0.333309	0.125638	0.270127
+GO:0015299	solute:proton antiporter activity	molecular_function	Clostridium	Clostridium thermocellum	0.0469554	0.45096	0.348627	1.0571	1.06906	1.84325
+GO:0015299	solute:proton antiporter activity	molecular_function	Escherichia	Escherichia coli	0.239079	0	0	0	0	0.0393888
+GO:0015299	solute:proton antiporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.127426	0.06721	0.0324766	0.338035	0.0413441	0.123179
+GO:0015307	drug:proton antiporter activity	molecular_function	Escherichia	Escherichia coli	0.265619	0	0	0	0	0
+GO:0015315	organophosphate:inorganic phosphate antiporter activity	molecular_function	Escherichia	Escherichia coli	0.0724747	0	0	0	0	0
+GO:0015321	sodium-dependent phosphate transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	10.2247	261.617	224.053	600.669	529.904	634.346
+GO:0015321	sodium-dependent phosphate transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	89.9159	78.5431	74.0493	39.0499	46.2699	45.7423
+GO:0015321	sodium-dependent phosphate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0655723	0	0	0	0	0
+GO:0015333	peptide:proton symporter activity	molecular_function	Escherichia	Escherichia coli	0.115323	0	0.253047	0	0	0
+GO:0015343	siderophore transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0426293	0	0.117682	0	0	0
+GO:0015385	sodium:proton antiporter activity	molecular_function	Escherichia	Escherichia coli	0.151584	0	0.0323864	0	0	0
+GO:0015386	potassium:proton antiporter activity	molecular_function	Escherichia	Escherichia coli	0.151584	0	0	0	0	0
+GO:0015388	potassium uptake transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0557049	0	0	0	0	0
+GO:0015407	monosaccharide-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0.0354596	0	0	0	0	0
+GO:0015412	molybdate transmembrane-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0.106914	0	0	0	0	0
+GO:0015412	molybdate transmembrane-transporting ATPase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.498786	0.0785896	0	0
+GO:0015413	nickel-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0733429	0	0	0
+GO:0015415	phosphate ion transmembrane-transporting ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	0.52645	0.388931	0.299596	0.331593	0.759667	1.28874
+GO:0015415	phosphate ion transmembrane-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.243484	0	0	0
+GO:0015415	phosphate ion transmembrane-transporting ATPase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.158851	0.152529	0.442223	0.0812756	0.14185	0.422831
+GO:0015419	sulfate transmembrane-transporting ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	61.4377	791.322	688.592	1110.28	1083.96	1272.36
+GO:0015419	sulfate transmembrane-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0.229843	0	0.845654	0	0	0.189053
+GO:0015420	cobalamin-transporting ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	1.74309	13.8545	11.2913	33.7485	31.6547	41.1753
+GO:0015420	cobalamin-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0.052278	0	0.0484893	0	0	0
+GO:0015420	cobalamin-transporting ATPase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.507371	0.464216	0.893196	0.726431	0.447297	1.43129
+GO:0015424	amino acid-transporting ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	2.21653	7.02737	4.46553	13.6725	13.1167	12.4513
+GO:0015424	amino acid-transporting ATPase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.69913	1.65803	2.58974	0.210327	0.734318	0.547109
+GO:0015424	amino acid-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0.420971	0	0.0740646	0	0	0.103387
+GO:0015430	glycerol-3-phosphate-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0978357	0	0	0
+GO:0015439	heme-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.192785	0	0	0
+GO:0015444	magnesium-importing ATPase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.101479
+GO:0015446	arsenite-transmembrane transporting ATPase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0	0	0.31359
+GO:0015450	P-P-bond-hydrolysis-driven protein transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	54.6744	346.477	215.63	1371.68	1105.27	1449.86
+GO:0015450	P-P-bond-hydrolysis-driven protein transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	320.77	451.692	397.094	377.988	419.456	341.457
+GO:0015450	P-P-bond-hydrolysis-driven protein transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.162011	0	0.0541727	0	0	0
+GO:0015450	P-P-bond-hydrolysis-driven protein transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.864349	4.36814	2.48701	0.723423	1.07795
+GO:0015459	potassium channel regulator activity	molecular_function	Escherichia	Escherichia coli	0.208748	0	0.176185	0	0	0.0427844
+GO:0015473	fimbrial usher porin activity	molecular_function	Escherichia	Escherichia coli	0.242579	0	0.136672	0	0	0.203735
+GO:0015481	maltose transporting porin activity	molecular_function	Escherichia	Escherichia coli	0.0408065	0	0	0	0	0
+GO:0015487	melibiose:monovalent cation symporter activity	molecular_function	Escherichia	Escherichia coli	0.142252	0	0.0880025	0	0	0.212208
+GO:0015489	putrescine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0392997	0	0	0	0	0.0261298
+GO:0015496	putrescine:ornithine antiporter activity	molecular_function	Escherichia	Escherichia coli	0.103876	0	0	0	0	0
+GO:0015499	formate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.139019	0	0	0	0	0
+GO:0015501	glutamate:sodium symporter activity	molecular_function	Escherichia	Escherichia coli	0.23327	0	0.0854314	0	0	0.0613145
+GO:0015503	glutathione-regulated potassium exporter activity	molecular_function	Escherichia	Escherichia coli	0.132068	0	0	0	0	0.0393888
+GO:0015513	nitrite uptake transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.143588	0	0	0	0	0
+GO:0015517	galactose:proton symporter activity	molecular_function	Escherichia	Escherichia coli	0.0410252	0	0	0	0	0.0554289
+GO:0015518	arabinose:proton symporter activity	molecular_function	Escherichia	Escherichia coli	0.0410252	0	0	0	0	0.0554289
+GO:0015527	glycerol-phosphate:inorganic phosphate antiporter activity	molecular_function	Escherichia	Escherichia coli	0.0724747	0	0	0	0	0
+GO:0015535	fucose:proton symporter activity	molecular_function	Escherichia	Escherichia coli	0.0410252	0	0	0	0	0.0554289
+GO:0015538	sialic acid:proton symporter activity	molecular_function	Escherichia	Escherichia coli	0.0194189	0	0	0	0	0.103387
+GO:0015542	sugar efflux transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.117413	0	0	0	0	0.0624787
+GO:0015546	sulfathiazole transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0266372	0	0.0494366	0	0	0
+GO:0015556	C4-dicarboxylate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.167188	0	0.0759591	0	0	0
+GO:0015558	p-aminobenzoyl-glutamate uptake transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0773355	0	0	0	0	0
+GO:0015562	efflux transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.177055	0	0	0	0	0.0861185
+GO:0015565	threonine efflux transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0443792	0	0	0	0	0
+GO:0015568	L-idonate transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.145363	0	0	0	0	0.0552672
+GO:0015572	N-acetylglucosamine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0270504	0	0	0	0	0
+GO:0015574	trehalose transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0383275	0	0	0	0	0.0431401
+GO:0015577	galactitol transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.122468	0	0	0	0	0
+GO:0015591	D-ribose transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.122857	0	0.0664868	0	0	0.109467
+GO:0015592	methylgalactoside transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.142252	0	0.0880025	0	0	0.212208
+GO:0015594	putrescine-importing ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	1.49691	24.2779	16.7169	104.586	98.4303	50.9279
+GO:0015594	putrescine-importing ATPase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0456927	0	0	0.065745
+GO:0015595	spermidine-importing ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	1.49691	24.2779	16.7169	104.586	98.4303	50.9279
+GO:0015595	spermidine-importing ATPase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0456927	0	0	0
+GO:0015606	spermidine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.251401	0	0	0	0	0
+GO:0015612	L-arabinose-importing ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	0.899031	2.69643	3.67495	3.0391	3.53656	4.19044
+GO:0015612	L-arabinose-importing ATPase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.518649	1.61411	2.1228	0.219578	0.28739	0.499668
+GO:0015612	L-arabinose-importing ATPase activity	molecular_function	Escherichia	Escherichia coli	0.26331	0	0.262158	0	0	0.109467
+GO:0015614	D-xylose-importing ATPase activity	molecular_function	Escherichia	Escherichia coli	0.0174503	0	0.0323864	0	0	0
+GO:0015616	DNA translocase activity	molecular_function	Escherichia	Escherichia coli	0.0241582	0	0	0	0	0
+GO:0015620	ferric-enterobactin transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.053153	0	0.0917012	0	0	0.0327593
+GO:0015623	iron-chelate-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.139198	0	0	0
+GO:0015628	protein secretion by the type II secretion system	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	12.0461	16.6253	20.4181	8.68141	8.19072	6.27339
+GO:0015628	protein secretion by the type II secretion system	biological_process	Escherichia	Escherichia coli	0.239371	0	0.111187	0	0	0
+GO:0015643	toxic substance binding	molecular_function	Escherichia	Escherichia coli	0.107934	0	0.406363	0	0	0
+GO:0015648	lipid-linked peptidoglycan transporter activity	molecular_function	Escherichia	Escherichia coli	0.0443792	0	0	0	0	0
+GO:0015655	alanine:sodium symporter activity	molecular_function	Escherichia	Escherichia coli	0.0759016	0	0.139018	0	0	0
+GO:0015658	branched-chain amino acid transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	19.4622	2.06521	1.51941	1.18974	1.11601	0.516032
+GO:0015661	L-lysine efflux transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.129711	0	0	0	0	0
+GO:0015675	nickel cation transport	biological_process	Escherichia	Escherichia coli	0.0341229	0	0	0	0	0
+GO:0015682	ferric iron transport	biological_process	Escherichia	Escherichia coli	0.0223597	0	0	0	0	0
+GO:0015684	ferrous iron transport	biological_process	Escherichia	Escherichia coli	0.329004	0	0.0804246	0	0	0
+GO:0015685	ferric-enterobactin transport	biological_process	Escherichia	Escherichia coli	0.053153	0	0.0917012	0	0	0.0327593
+GO:0015692	lead ion transport	biological_process	Escherichia	Escherichia coli	0.0237208	0	0.0220119	0	0	0
+GO:0015693	magnesium ion transport	biological_process	Clostridium	Clostridium thermocellum	1.51708	7.00716	5.29025	20.5804	20.1047	21.6624
+GO:0015693	magnesium ion transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	1.24621	1.08189	1.3757	1.00187	0.476835	0.789716
+GO:0015693	magnesium ion transport	biological_process	Escherichia	Escherichia coli	0.691134	0	0	0	0	0.101479
+GO:0015700	arsenite transport	biological_process	Escherichia	Escherichia coli	0	0	0.0395583	0	0	0.185755
+GO:0015707	nitrite transport	biological_process	Escherichia	Escherichia coli	0.143588	0	0	0	0	0
+GO:0015716	organic phosphonate transport	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.112281
+GO:0015724	formate transport	biological_process	Escherichia	Escherichia coli	0.139019	0	0	0	0	0
+GO:0015726	L-idonate transport	biological_process	Escherichia	Escherichia coli	0.145363	0	0	0	0	0.0552672
+GO:0015734	taurine transport	biological_process	Escherichia	Escherichia coli	0	0	0.111097	0	0	0
+GO:0015739	sialic acid transport	biological_process	Escherichia	Escherichia coli	0.0194189	0	0	0	0	0.103387
+GO:0015747	urate transport	biological_process	Escherichia	Escherichia coli	0.0374282	0	0.0694638	0	0	0
+GO:0015749	monosaccharide transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.4668	15.9374	18.6096	2.48895	4.0153	5.36667
+GO:0015749	monosaccharide transport	biological_process	Escherichia	Escherichia coli	0.245981	0	0.113984	0	0	0.174565
+GO:0015751	arabinose transport	biological_process	Escherichia	Escherichia coli	0.0410252	0	0	0	0	0.0554289
+GO:0015753	D-xylose transport	biological_process	Escherichia	Escherichia coli	0.115323	0	0	0	0	0
+GO:0015756	fucose transport	biological_process	Escherichia	Escherichia coli	0.0410252	0	0	0	0	0.0554289
+GO:0015757	galactose transport	biological_process	Escherichia	Escherichia coli	0.333597	0	0.109022	0	0	0.0554289
+GO:0015765	methylgalactoside transport	biological_process	Escherichia	Escherichia coli	0.142252	0	0.0880025	0	0	0.212208
+GO:0015769	melibiose transport	biological_process	Escherichia	Escherichia coli	0.142252	0	0.0880025	0	0	0.212208
+GO:0015771	trehalose transport	biological_process	Escherichia	Escherichia coli	0.0383275	0	0	0	0	0.0431401
+GO:0015793	glycerol transport	biological_process	Escherichia	Escherichia coli	0.0724747	0	0	0	0	0
+GO:0015794	glycerol-3-phosphate transport	biological_process	Clostridium	Clostridium thermocellum	115.851	297.81	235.253	1285.84	1089.39	861.139
+GO:0015794	glycerol-3-phosphate transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	188.38	65.4715	118.616	36.1918	34.5571	42.4546
+GO:0015794	glycerol-3-phosphate transport	biological_process	Escherichia	Escherichia coli	0.114108	0	0	0	0	0
+GO:0015803	branched-chain amino acid transport	biological_process	Escherichia	Escherichia coli	0.145411	0	0	0	0	0
+GO:0015807	L-amino acid transport	biological_process	Escherichia	Escherichia coli	0.707175	0	0.523098	0	0	0.179351
+GO:0015809	arginine transport	biological_process	Escherichia	Escherichia coli	0.0835087	0	0.154985	0	0	0
+GO:0015814	p-aminobenzoyl-glutamate transport	biological_process	Escherichia	Escherichia coli	0.0773355	0	0	0	0	0
+GO:0015818	isoleucine transport	biological_process	Escherichia	Escherichia coli	0.145411	0	0	0	0	0
+GO:0015820	leucine transport	biological_process	Escherichia	Escherichia coli	0.246832	0	0	0	0	0
+GO:0015823	phenylalanine transport	biological_process	Escherichia	Escherichia coli	0	0	0.0920621	0	0	0.105328
+GO:0015829	valine transport	biological_process	Escherichia	Escherichia coli	0.26941	0	0	0	0	0
+GO:0015833	peptide transport	biological_process	Clostridium	Clostridium thermocellum	1.79733	15.142	8.86768	34.1038	41.3	34.1558
+GO:0015833	peptide transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	488.778	153.393	213.126	105.328	128.007	101.995
+GO:0015833	peptide transport	biological_process	Escherichia	Escherichia coli	0.674146	0	0.659049	0	0	0.279279
+GO:0015846	polyamine transport	biological_process	Clostridium	Clostridium thermocellum	2.86812	14.2759	7.34115	83.8084	72.8267	32.8495
+GO:0015846	polyamine transport	biological_process	Escherichia	Escherichia coli	0	0	0.181102	0	0	0
+GO:0015847	putrescine transport	biological_process	Escherichia	Escherichia coli	0.0392997	0	0	0	0	0.0918424
+GO:0015851	nucleobase transport	biological_process	Escherichia	Escherichia coli	0.186874	0	0	0	0	0
+GO:0015853	adenine transport	biological_process	Escherichia	Escherichia coli	0.123489	0	0.151873	0	0	0.054588
+GO:0015857	uracil transport	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0548468
+GO:0015860	purine nucleoside transmembrane transport	biological_process	Escherichia	Escherichia coli	0.0219952	0	0	0	0	0.0584364
+GO:0015861	cytidine transport	biological_process	Escherichia	Escherichia coli	0.0219952	0	0	0	0	0.0584364
+GO:0015862	uridine transport	biological_process	Escherichia	Escherichia coli	0.0219952	0	0	0	0	0.0584364
+GO:0015864	pyrimidine nucleoside transport	biological_process	Escherichia	Escherichia coli	0.0219952	0	0	0	0	0.0584364
+GO:0015871	choline transport	biological_process	Escherichia	Escherichia coli	0.265619	0	0	0	0	0
+GO:0015886	heme transport	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0756407
+GO:0015887	pantothenate transmembrane transport	biological_process	Escherichia	Escherichia coli	0.111993	0	0	0	0	0
+GO:0015889	cobalamin transport	biological_process	Escherichia	Escherichia coli	0.0426293	0	0	0	0	0
+GO:0015891	siderophore transport	biological_process	Escherichia	Escherichia coli	0.111726	0	0.135725	0	0	0.0669738
+GO:0015906	sulfathiazole transport	biological_process	Escherichia	Escherichia coli	0.0266372	0	0.0494366	0	0	0
+GO:0015914	phospholipid transport	biological_process	Escherichia	Escherichia coli	0.110462	0	0	0	0	0
+GO:0015920	lipopolysaccharide transport	biological_process	Escherichia	Escherichia coli	0.098796	0	0.497839	0	0	0
+GO:0015926	glucosidase activity	molecular_function	Clostridium	Clostridium thermocellum	1.0845	6.84132	6.44917	14.4016	15.454	20.6395
+GO:0015926	glucosidase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0204783	0	0	0
+GO:0015936	coenzyme A metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0465666	0.357427	0	0.0476512	0.12349	0.0309807
+GO:0015937	coenzyme A biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	21.973	145.312	118.669	335.267	318.503	312.709
+GO:0015937	coenzyme A biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	47.3424	81.1278	64.0564	61.3695	68.0343	58.0248
+GO:0015937	coenzyme A biosynthetic process	biological_process	Escherichia	Escherichia coli	0.125117	0	0.681377	0	0	0
+GO:0015937	coenzyme A biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.144245	0.589068	0.603343	0.725884	0.123707	0.648653
+GO:0015940	pantothenate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	10.5444	43.7854	30.9204	93.2364	91.9091	101.826
+GO:0015940	pantothenate biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	86.372	51.1001	56.7059	49.8328	52.3983	44.7988
+GO:0015940	pantothenate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.210084	0	0	0	0	0
+GO:0015941	pantothenate catabolic process	biological_process	Clostridium	Clostridium thermocellum	2.40399	14.0103	9.51189	35.0685	35.422	28.2307
+GO:0015941	pantothenate catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	3.75624	4.16977	2.89714	3.77369	4.86838	3.58089
+GO:0015941	pantothenate catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.144245	0.461509	0.356881	0.318537	0.0643926	0.383798
+GO:0015948	methanogenesis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	27.9748	18.0663	28.4618	27.1532	16.1025	27.568
+GO:0015949	nucleobase-containing small molecule interconversion	biological_process	Escherichia	Escherichia coli	0.153577	0	0	0	0	0
+GO:0015969	guanosine tetraphosphate metabolic process	biological_process	Clostridium	Clostridium thermocellum	2.39942	12.373	7.30416	35.2623	33.6013	30.5255
+GO:0015969	guanosine tetraphosphate metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	11.1728	7.58619	5.60298	8.45164	9.38304	7.76994
+GO:0015970	guanosine tetraphosphate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.333403	0	0.0675693	0	0	0.0484437
+GO:0015974	guanosine pentaphosphate catabolic process	biological_process	Escherichia	Escherichia coli	0.254877	0	0.0675693	0	0	0.0484437
+GO:0015976	carbon utilization	biological_process	Clostridium	Clostridium thermocellum	0.658664	16.1959	9.70495	72.5495	65.9282	34.2944
+GO:0015976	carbon utilization	biological_process	Escherichia	Escherichia coli	0.208675	0	0.176005	0	0	0.270191
+GO:0015977	carbon fixation	biological_process	Escherichia	Escherichia coli	0.0194432	0	0	0	0	0.025483
+GO:0015977	carbon fixation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0342444	0.262166	0	0.262877	0.15294	0.159528
+GO:0015979	photosynthesis	biological_process	Clostridium	Clostridium thermocellum	4.56945	22.8185	16.9742	52.6723	45.9177	66.2287
+GO:0015979	photosynthesis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	54.4072	55.9203	43.4377	63.3122	70.553	37.9243
+GO:0015979	photosynthesis	biological_process	Escherichia	Escherichia coli	0.585874	0	0.528331	0	0	0.0471824
+GO:0015979	photosynthesis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.87559	2.37592	2.75528	1.30118	0.823192	1.31645
+GO:0015986	ATP synthesis coupled proton transport	biological_process	Clostridium	Clostridium thermocellum	40.434	668.937	426.393	906.92	869.677	781.444
+GO:0015986	ATP synthesis coupled proton transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	85.7719	70.0725	52.4691	100.01	132.568	71.7211
+GO:0015986	ATP synthesis coupled proton transport	biological_process	Escherichia	Escherichia coli	0	0	0.501177	0	0	0
+GO:0015991	ATP hydrolysis coupled proton transport	biological_process	Clostridium	Clostridium thermocellum	54.7493	782.906	507.51	1241.4	1193.76	1037.99
+GO:0015991	ATP hydrolysis coupled proton transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	299.031	179.331	150.513	220.231	268.282	203.938
+GO:0015991	ATP hydrolysis coupled proton transport	biological_process	Escherichia	Escherichia coli	0.039421200000000003	0	0.501177	0	0	0
+GO:0015991	ATP hydrolysis coupled proton transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.747471	0.443213	1.40799	1.46774	1.07041	1.40102
+GO:0015992	proton transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	329.96	76.3616	128.399	27.1477	34.4745	46.8286
+GO:0015992	proton transport	biological_process	Escherichia	Escherichia coli	0.410666	0	0.222374	0	0	0.190702
+GO:0015995	chlorophyll biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.47512	23.5746	18.4798	53.1256	45.2639	66.1155
+GO:0015995	chlorophyll biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.989807	1.17071	0.813673	1.09185	0.833826	0.786255
+GO:0015995	chlorophyll biosynthetic process	biological_process	Escherichia	Escherichia coli	0.585874	0	0.528331	0	0	0.0471824
+GO:0015995	chlorophyll biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.87559	2.37592	2.75528	1.30118	0.823192	1.31645
+GO:0016024	CDP-diacylglycerol biosynthetic process	biological_process	Escherichia	Escherichia coli	0.323463	0	0	0	0	0
+GO:0016036	cellular response to phosphate starvation	biological_process	Escherichia	Escherichia coli	0.190058	0	0	0	0	0
+GO:0016048	detection of temperature stimulus	biological_process	Escherichia	Escherichia coli	0.0815887	0	0	0	0	0
+GO:0016051	carbohydrate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.01823	7.02629	4.44239	48.2055	36.3285	39.9526
+GO:0016051	carbohydrate biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0453757	0.172926	0.0842136	0.742945	0.162121	0.332153
+GO:0016052	carbohydrate catabolic process	biological_process	Clostridium	Clostridium thermocellum	2.09353	22.1003	15.1099	60.3665	37.74	60.8098
+GO:0016052	carbohydrate catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	91.1103	28.1964	28.6492	23.9455	28.6974	33.1018
+GO:0016052	carbohydrate catabolic process	biological_process	Escherichia	Escherichia coli	0.0771654	0	0	0	0	0
+GO:0016052	carbohydrate catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.370175	0.347438	0.257738	0.142033	0.0826881	0.18514
+GO:0016075	rRNA catabolic process	biological_process	Clostridium	Clostridium thermocellum	1.29891	6.48698	2.88541	28.1773	22.2648	16.6507
+GO:0016114	terpenoid biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	9.35047	70.1949	47.9649	168.702	161.307	170.131
+GO:0016114	terpenoid biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	99.108	86.8614	64.7914	79.988	93.7285	68.1825
+GO:0016114	terpenoid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.219709	0	0	0	0	0
+GO:0016117	carotenoid biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.298381	0.635321	0.0921974	0.101719	0.133147	0.674751
+GO:0016149	translation release factor activity, codon specific	molecular_function	Clostridium	Clostridium thermocellum	8.22943	53.8034	38.0568	151.697	156.734	164.242
+GO:0016149	translation release factor activity, codon specific	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	100.411	68.8617	64.911	74.1595	79.4663	52.5343
+GO:0016149	translation release factor activity, codon specific	molecular_function	Escherichia	Escherichia coli	0.033734	0	0.0626527	0	0	0.0224432
+GO:0016149	translation release factor activity, codon specific	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0452541	0.608344	0.251964	0.231566	0.242313	0.330859
+GO:0016151	nickel cation binding	molecular_function	Clostridium	Clostridium thermocellum	1.396	40.236	36.0393	83.4331	69.5957	62.1647
+GO:0016151	nickel cation binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	78.4407	69.0492	74.2359	84.4078	80.3539	50.0137
+GO:0016151	nickel cation binding	molecular_function	Escherichia	Escherichia coli	0.253127	0	0	0	0	0
+GO:0016151	nickel cation binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	15.4715	7.40832	19.0774	17.2368	11.5143	11.4617
+GO:0016153	urocanate hydratase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	18.4303	10.6455	37.127	1.77538	2.92599	4.555
+GO:0016154	pyrimidine-nucleoside phosphorylase activity	molecular_function	Clostridium	Clostridium thermocellum	0.738284	1.98489	2.77977	9.99093	9.33907	7.15631
+GO:0016154	pyrimidine-nucleoside phosphorylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	30.5868	22.757	25.5162	24.0789	31.9322	18.0353
+GO:0016154	pyrimidine-nucleoside phosphorylase activity	molecular_function	Escherichia	Escherichia coli	0.0414384	0	0	0	0	0
+GO:0016162	cellulose 1,4-beta-cellobiosidase activity	molecular_function	Clostridium	Clostridium thermocellum	29.1765	25.9726	18.4872	104.811	91.8518	100.319
+GO:0016163	nitrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.545869	1.22402	0.7655	2.16848	0.836213	1.44442
+GO:0016197	endosomal transport	biological_process	Clostridium	Clostridium thermocellum	0.844128	1.36483	0.989498	14.7573	12.6659	10.6787
+GO:0016197	endosomal transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0151414	0.116311	0.168608	0.123953	0.0946464	0.362616
+GO:0016208	AMP binding	molecular_function	Escherichia	Escherichia coli	0.0624857	0	0	0	0	0
+GO:0016208	AMP binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.321105	0.603863	0.128914	0.461639	0	0.431271
+GO:0016209	antioxidant activity	molecular_function	Clostridium	Clostridium thermocellum	6.81943	141.165	105.744	337.12	230.315	488.91
+GO:0016209	antioxidant activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	47.8557	15.3999	95.7575	7.71615	13.4677	28.4274
+GO:0016226	iron-sulfur cluster assembly	biological_process	Clostridium	Clostridium thermocellum	3.46617	67.6044	65.482	114.777	110.089	136.593
+GO:0016226	iron-sulfur cluster assembly	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	63.3322	62.2854	59.1862	6.35001	10.196	9.64194
+GO:0016226	iron-sulfur cluster assembly	biological_process	Escherichia	Escherichia coli	0.360016	0	0.157827	0	0	0.0375455
+GO:0016226	iron-sulfur cluster assembly	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.381501	1.37897	0.790669	0.528142	0.400766	0.537408
+GO:0016259	selenocysteine metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	33.2716	51.5545	66.8396	27.4989	35.3101	21.7446
+GO:0016259	selenocysteine metabolic process	biological_process	Escherichia	Escherichia coli	0.0286545	0	0	0	0	0
+GO:0016260	selenocysteine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.40476	16.8858	13.3064	39.3101	43.4919	37.9766
+GO:0016260	selenocysteine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.9356	17.2239	16.0292	17.8264	20.1536	21.2747
+GO:0016260	selenocysteine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0212417	0	0	0	0	0
+GO:0016298	lipase activity	molecular_function	Escherichia	Escherichia coli	0.0364075	0	0	0	0	0
+GO:0016301	kinase activity	molecular_function	Clostridium	Clostridium thermocellum	45.5243	226.434	179.036	916.407	881.102	1045.35
+GO:0016301	kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	515.008	453.921	527.034	323.433	389.687	304.637
+GO:0016301	kinase activity	molecular_function	Escherichia	Escherichia coli	2.76884	0	3.57161	0	0	0.494041
+GO:0016301	kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	4.29557	4.98269	2.66773	3.33859	2.01507	2.95907
+GO:0016310	phosphorylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0016310	phosphorylation	biological_process	Escherichia	Escherichia coli	0.143904	0	0.567393	0	0	0
+GO:0016310	phosphorylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0632878	0.187441	0.0587285	0.0645628	0.113029	0.215668
+GO:0016311	dephosphorylation	biological_process	Clostridium	Clostridium thermocellum	1.23491	9.13104	5.3175	27.0817	19.7135	23.0007
+GO:0016311	dephosphorylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	9.94741	5.0141	2.59939	7.62938	7.53182	5.54085
+GO:0016311	dephosphorylation	biological_process	Escherichia	Escherichia coli	1.52656	0	0.779257	0	0	0.438612
+GO:0016311	dephosphorylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.281003	0.744397	0.263782	0.502426	0.109621	0
+GO:0016405	CoA-ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.294541	0.161957	0.702937	0.517149	0.187709	0.47619
+GO:0016407	acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0333938	0	0.0817327	0	0	0
+GO:0016407	acetyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.039421200000000003	0	0	0	0.0704043	0.0524537
+GO:0016410	N-acyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.118215	0	0	0	0	0
+GO:0016413	O-acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.223276	0	0	0
+GO:0016415	octanoyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.341083	0	0	0	0	0
+GO:0016416	O-palmitoyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.118264	0	0	0	0	0
+GO:0016429	tRNA (adenine-N1-)-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.611927	4.37182	3.08121	10.9291	8.2845	15.2462
+GO:0016429	tRNA (adenine-N1-)-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.495997	0.158597	0.153407	0.169191	0	0
+GO:0016430	tRNA (adenine-N6-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.140416	0	0	0
+GO:0016434	rRNA (cytosine) methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.129006	0	0	0	0	0
+GO:0016437	tRNA cytidylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0223111	0	0	0	0	0
+GO:0016437	tRNA cytidylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0016462	pyrophosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	3.92593	27.1335	16.1024	89.4446	80.4397	68.3222
+GO:0016462	pyrophosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	51.7973	29.7592	26.6445	20.2701	25.1246	15.1858
+GO:0016462	pyrophosphatase activity	molecular_function	Escherichia	Escherichia coli	0.03405	0	0	0	0	0
+GO:0016462	pyrophosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.122249	0.356213	0.286922	0.126564	0.193243	0.575956
+GO:0016463	zinc-exporting ATPase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.8413	1.36716	1.77033	2.1443	2.67512	1.34029
+GO:0016463	zinc-exporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0.0237208	0	0.0220119	0	0	0
+GO:0016485	protein processing	biological_process	Escherichia	Escherichia coli	0.169424	0	0	0	0	0
+GO:0016491	oxidoreductase activity	molecular_function	Clostridium	Clostridium thermocellum	84.3911	839.947	654.431	2048.18	1791.14	2380.9
+GO:0016491	oxidoreductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6523.31	14984.4	13383.7	5555.74	6228.2	7900.53
+GO:0016491	oxidoreductase activity	molecular_function	Escherichia	Escherichia coli	2.47551	0	2.55451	0	0	1.25067
+GO:0016491	oxidoreductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	5.66571	16.9487	11.6479	17.644	7.50235	15.0906
+GO:0016539	intein-mediated protein splicing	biological_process	Clostridium	Clostridium thermocellum	15.9503	80.7575	104.534	135.659	145.23	149.925
+GO:0016539	intein-mediated protein splicing	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.2401	0.477658	0.379705	0.351489	0.309136	0.585237
+GO:0016540	protein autoprocessing	biological_process	Escherichia	Escherichia coli	0.0596421	0	0.0552553	0	0	0
+GO:0016597	amino acid binding	molecular_function	Clostridium	Clostridium thermocellum	30.9154	201.901	156.513	513.895	466.456	471.19
+GO:0016597	amino acid binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	64.8263	25.8324	29.2434	29.6508	33.8493	23.0321
+GO:0016597	amino acid binding	molecular_function	Escherichia	Escherichia coli	0.744069	0	0.204467	0	0	0
+GO:0016597	amino acid binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.46143	2.34862	2.72848	2.31188	1.65945	3.41712
+GO:0016614	oxidoreductase activity, acting on CH-OH group of donors	molecular_function	Clostridium	Clostridium thermocellum	0.590661	6.23938	6.73266	15.5823	17.5142	24.8387
+GO:0016614	oxidoreductase activity, acting on CH-OH group of donors	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	49.4772	24.604	18.3525	18.578	18.8433	15.6221
+GO:0016614	oxidoreductase activity, acting on CH-OH group of donors	molecular_function	Escherichia	Escherichia coli	0.410034	0	0.246732	0	0	0.0495755
+GO:0016614	oxidoreductase activity, acting on CH-OH group of donors	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0946886	0.363914	0.131891	0.0242484	0.042299	0.0945589
+GO:0016616	oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor	molecular_function	Clostridium	Clostridium thermocellum	12.3699	143.819	94.7709	392.804	338.032	274.143
+GO:0016616	oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	111.98	113.11	90.9395	125.413	149.457	106.639
+GO:0016616	oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor	molecular_function	Escherichia	Escherichia coli	2.46764	0	2.04233	0	0	0.170588
+GO:0016616	oxidoreductase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.242554	0.465803	0.540013	0.198563	0.216508	0.516129
+GO:0016620	oxidoreductase activity, acting on the aldehyde or oxo group of donors, NAD or NADP as acceptor	molecular_function	Escherichia	Escherichia coli	0.0302342	0	0.112225	0	0	0
+GO:0016624	oxidoreductase activity, acting on the aldehyde or oxo group of donors, disulfide as acceptor	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	160.445	10.9993	20.7678	5.23805	5.2151	4.77089
+GO:0016625	oxidoreductase activity, acting on the aldehyde or oxo group of donors, iron-sulfur protein as acceptor	molecular_function	Clostridium	Clostridium thermocellum	5.21115	122.998	88.8388	212.784	207.427	225.863
+GO:0016625	oxidoreductase activity, acting on the aldehyde or oxo group of donors, iron-sulfur protein as acceptor	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	440.06	99.0689	205.948	63.8164	73.35	55.8581
+GO:0016625	oxidoreductase activity, acting on the aldehyde or oxo group of donors, iron-sulfur protein as acceptor	molecular_function	Escherichia	Escherichia coli	0.0653293	0	0.146596	0	0	0
+GO:0016627	oxidoreductase activity, acting on the CH-CH group of donors	molecular_function	Escherichia	Escherichia coli	0.0368206	0	0	0	0	0
+GO:0016628	oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor	molecular_function	Clostridium	Clostridium thermocellum	0.352822	1.59544	1.4264	9.34948	6.41586	5.38808
+GO:0016628	oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor	molecular_function	Escherichia	Escherichia coli	0.130999	0	0.0405055	0	0	0
+GO:0016628	oxidoreductase activity, acting on the CH-CH group of donors, NAD or NADP as acceptor	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.453951	1.49108	0.952646	1.67878	1.15991	2.00246
+GO:0016639	oxidoreductase activity, acting on the CH-NH2 group of donors, NAD or NADP as acceptor	molecular_function	Escherichia	Escherichia coli	0.0566527	0	0.113894	0	0	0
+GO:0016639	oxidoreductase activity, acting on the CH-NH2 group of donors, NAD or NADP as acceptor	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.123051	0.425617	0.274202	0.100799	0.109795	0.294898
+GO:0016645	oxidoreductase activity, acting on the CH-NH group of donors	molecular_function	Escherichia	Escherichia coli	0.0261755	0	0	0	0	0
+GO:0016645	oxidoreductase activity, acting on the CH-NH group of donors	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.309196	0.166391	0.522873	0.201	0.2735	0.238855
+GO:0016651	oxidoreductase activity, acting on NAD(P)H	molecular_function	Clostridium	Clostridium thermocellum	0.783927	6.16806	3.72998	19.1628	18.519	16.1259
+GO:0016651	oxidoreductase activity, acting on NAD(P)H	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	111.537	75.7659	81.9169	105.601	102.045	51.835
+GO:0016651	oxidoreductase activity, acting on NAD(P)H	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.123683	0.778142	0.427653	0.10331	0.320248	0.0924892
+GO:0016652	oxidoreductase activity, acting on NAD(P)H, NAD(P) as acceptor	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0016655	oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.156229
+GO:0016661	oxidoreductase activity, acting on other nitrogenous compounds as donors	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0532988	0.511776	0	0.10908	0.285567	0.0709192
+GO:0016667	oxidoreductase activity, acting on a sulfur group of donors	molecular_function	Escherichia	Escherichia coli	0.0564826	0	0	0	0	0
+GO:0016668	oxidoreductase activity, acting on a sulfur group of donors, NAD(P) as acceptor	molecular_function	Escherichia	Escherichia coli	0.0206584	0	0	0	0	0
+GO:0016671	oxidoreductase activity, acting on a sulfur group of donors, disulfide as acceptor	molecular_function	Escherichia	Escherichia coli	0.0685131	0	0	0	0	0
+GO:0016682	oxidoreductase activity, acting on diphenols and related substances as donors, oxygen as acceptor	molecular_function	Escherichia	Escherichia coli	0.0920638	0	0.0646374	0	0	0.023187
+GO:0016692	NADH peroxidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	56.6641	72.7031	100.891	75.3205	108.043	91.2171
+GO:0016705	oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen	molecular_function	Escherichia	Escherichia coli	0.0551702	0	0	0	0	0
+GO:0016705	oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	6.22434	1.48707	6.3337	6.22444	5.29137	12.8244
+GO:0016706	oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, 2-oxoglutarate as one donor, and incorporation of one atom each of oxygen into both donors	molecular_function	Escherichia	Escherichia coli	0.0500177	0	0	0	0	0
+GO:0016708	oxidoreductase activity, acting on paired donors, with incorporation or reduction of molecular oxygen, NAD(P)H as one donor, and incorporation of two atoms of oxygen into one donor	molecular_function	Escherichia	Escherichia coli	0.0498476	0	0	0	0	0
+GO:0016722	oxidoreductase activity, oxidizing metal ions	molecular_function	Escherichia	Escherichia coli	0.068659	0	0	0	0	0
+GO:0016726	oxidoreductase activity, acting on CH or CH2 groups, NAD or NADP as acceptor	molecular_function	Clostridium	Clostridium thermocellum	4.06544	9.76006	8.49578	22.5395	26.214	33.86
+GO:0016726	oxidoreductase activity, acting on CH or CH2 groups, NAD or NADP as acceptor	molecular_function	Escherichia	Escherichia coli	0.0723289	0	0	0	0	0
+GO:0016726	oxidoreductase activity, acting on CH or CH2 groups, NAD or NADP as acceptor	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.361571	0.694877	0.805193	0.923204	0.290624	0.673651
+GO:0016730	oxidoreductase activity, acting on iron-sulfur proteins as donors	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.610117	0.416738	0.650205	0.283701	0.422055
+GO:0016740	transferase activity	molecular_function	Clostridium	Clostridium thermocellum	48.9152	387.626	291.329	984.594	869.141	909.554
+GO:0016740	transferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1378.86	757.897	842.507	602.021	687.286	590.54
+GO:0016740	transferase activity	molecular_function	Escherichia	Escherichia coli	1.42774	0	0.600772	0	0	0.310518
+GO:0016740	transferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	2.08045	4.35082	4.08415	6.98756	1.99817	4.74661
+GO:0016741	transferase activity, transferring one-carbon groups	molecular_function	Escherichia	Escherichia coli	0.0964628	0	0	0	0	0
+GO:0016742	hydroxymethyl-, formyl- and related transferase activity	molecular_function	Escherichia	Escherichia coli	0.0265157	0	0.049211	0	0	0
+GO:0016743	carboxyl- or carbamoyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.241607	3.27014	1.08914	9.48984	7.39755	8.80261
+GO:0016743	carboxyl- or carbamoyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	5.79985	8.39756	4.91912	6.8849	7.22312	7.9444
+GO:0016743	carboxyl- or carbamoyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0214706	0	0	0
+GO:0016743	carboxyl- or carbamoyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0714782	0.343191	0.442223	0.231615	0.0850971	0.110825
+GO:0016744	transferase activity, transferring aldehyde or ketonic groups	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.149324	0.501741	0.346552	0.076401	0.266447	0.347061
+GO:0016746	transferase activity, transferring acyl groups	molecular_function	Clostridium	Clostridium thermocellum	1.00884	3.38855	2.91915	17.8118	14.5481	21.1241
+GO:0016746	transferase activity, transferring acyl groups	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	44.8414	32.6972	30.944	32.8257	38.1974	28.2954
+GO:0016746	transferase activity, transferring acyl groups	molecular_function	Escherichia	Escherichia coli	0.368522	0	0	0	0	0.0961435
+GO:0016746	transferase activity, transferring acyl groups	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.134733	0.631801	0.129762	0
+GO:0016747	transferase activity, transferring acyl groups other than amino-acyl groups	molecular_function	Clostridium	Clostridium thermocellum	8.12898	55.4573	22.4483	204.23	158.909	103.123
+GO:0016747	transferase activity, transferring acyl groups other than amino-acyl groups	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	80.7218	94.8999	70.5393	108.616	128.233	96.9585
+GO:0016747	transferase activity, transferring acyl groups other than amino-acyl groups	molecular_function	Escherichia	Escherichia coli	0.305794	0	0	0	0	0
+GO:0016747	transferase activity, transferring acyl groups other than amino-acyl groups	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.394625	1.23685	0.427383	1.03619	0.517636	1.3117
+GO:0016755	transferase activity, transferring amino-acyl groups	molecular_function	Clostridium	Clostridium thermocellum	0.187093	2.10419	0.942452	5.19669	4.29486	4.19435
+GO:0016755	transferase activity, transferring amino-acyl groups	molecular_function	Escherichia	Escherichia coli	0.0143151	0	0	0	0	0
+GO:0016757	transferase activity, transferring glycosyl groups	molecular_function	Clostridium	Clostridium thermocellum	8.12543	85.9673	76.0786	173.097	167.105	176.538
+GO:0016757	transferase activity, transferring glycosyl groups	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	38.861	37.6813	31.4745	33.9496	44.5723	36.2736
+GO:0016757	transferase activity, transferring glycosyl groups	molecular_function	Escherichia	Escherichia coli	1.04247	0	0.476955	0	0	0.281833
+GO:0016757	transferase activity, transferring glycosyl groups	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0867898	0.192855	0.17596	0.823002	0.352586	0.372447
+GO:0016758	transferase activity, transferring hexosyl groups	molecular_function	Clostridium	Clostridium thermocellum	2.523	26.836	20.7677	45.9819	45.7431	48.9789
+GO:0016758	transferase activity, transferring hexosyl groups	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	23.0057	10.0247	7.60845	14.6403	15.6966	16.805
+GO:0016758	transferase activity, transferring hexosyl groups	molecular_function	Escherichia	Escherichia coli	0.0411225	0	0.11448	0	0	0
+GO:0016758	transferase activity, transferring hexosyl groups	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0861093	0	0	0	0	0
+GO:0016760	cellulose synthase (UDP-forming) activity	molecular_function	Escherichia	Escherichia coli	0.0393726	0	0	0	0	0
+GO:0016763	transferase activity, transferring pentosyl groups	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2.93853	1.14346	1.69027	0.728719	1.27641	0.422896
+GO:0016763	transferase activity, transferring pentosyl groups	molecular_function	Escherichia	Escherichia coli	0.200095	0	0.0586834	0	0	0
+GO:0016765	transferase activity, transferring alkyl or aryl (other than methyl) groups	molecular_function	Clostridium	Clostridium thermocellum	5.18554	58.2138	51.3871	116.81	117.896	126.646
+GO:0016765	transferase activity, transferring alkyl or aryl (other than methyl) groups	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.46276	2.28943	2.91662	0.637297	0.99204	1.80244
+GO:0016765	transferase activity, transferring alkyl or aryl (other than methyl) groups	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.391125	0.370962	0.488908	0.55622	0.130803	0.110567
+GO:0016772	transferase activity, transferring phosphorus-containing groups	molecular_function	Escherichia	Escherichia coli	0	0	0.287237	0	0	0.103032
+GO:0016772	transferase activity, transferring phosphorus-containing groups	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.187441	0	0	0	0.131458
+GO:0016773	phosphotransferase activity, alcohol group as acceptor	molecular_function	Clostridium	Clostridium thermocellum	3.28428	20.1069	21.7966	37.1672	36.8788	48.0418
+GO:0016773	phosphotransferase activity, alcohol group as acceptor	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	10.1265	24.3598	14.7753	15.3747	16.4329	16.4033
+GO:0016773	phosphotransferase activity, alcohol group as acceptor	molecular_function	Escherichia	Escherichia coli	0.618927	0	0.645201	0	0	0.0419435
+GO:0016773	phosphotransferase activity, alcohol group as acceptor	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.121071	0.350792	0.193539	0.084446	0.0419435
+GO:0016774	phosphotransferase activity, carboxyl group as acceptor	molecular_function	Escherichia	Escherichia coli	0.0195648	0	0	0	0	0.0390654
+GO:0016774	phosphotransferase activity, carboxyl group as acceptor	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0945671	0.120978	0.117006	0.61285	0	0.209718
+GO:0016775	phosphotransferase activity, nitrogenous group as acceptor	molecular_function	Clostridium	Clostridium thermocellum	6.59697	103.14	172.408	53.3925	61.8042	46.4737
+GO:0016776	phosphotransferase activity, phosphate group as acceptor	molecular_function	Escherichia	Escherichia coli	0.0975565	0	0	0	0	0
+GO:0016779	nucleotidyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	14.4557	146.815	108.905	386.373	341.151	378.763
+GO:0016779	nucleotidyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	106.424	100.867	102.97	72.0581	93.4425	81.5766
+GO:0016779	nucleotidyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.160966	0	0.298739	0	0	0
+GO:0016779	nucleotidyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.45973	2.86805	0.948767	1.18951	0.561324	2.79457
+GO:0016780	phosphotransferase activity, for other substituted phosphate groups	molecular_function	Escherichia	Escherichia coli	0.28917	0	0.14619	0	0	0
+GO:0016780	phosphotransferase activity, for other substituted phosphate groups	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.121071	0.45377	0.534235	0.431063	0.411124
+GO:0016783	sulfurtransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.79967	38.8015	41.6555	95.6325	84.0832	62.1276
+GO:0016783	sulfurtransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	47.4728	25.5698	16.3938	7.78537	10.9886	7.01621
+GO:0016783	sulfurtransferase activity	molecular_function	Escherichia	Escherichia coli	0.205102	0	0	0	0	0
+GO:0016783	sulfurtransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0814186	0.312713	1.0964	0.722328	0.209238	1.2736
+GO:0016787	hydrolase activity	molecular_function	Clostridium	Clostridium thermocellum	160.454	821.53	712.615	2056.03	1971.88	2453.43
+GO:0016787	hydrolase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	834.065	641.316	665.284	526.99	629.442	544.747
+GO:0016787	hydrolase activity	molecular_function	Escherichia	Escherichia coli	1.50445	0	0.276773	0	0	0.343051
+GO:0016787	hydrolase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	2.39004	6.54135	3.11978	3.57418	2.73298	5.2576599999999996
+GO:0016788	hydrolase activity, acting on ester bonds	molecular_function	Clostridium	Clostridium thermocellum	24.1927	112.856	133.745	239.459	240.616	272.626
+GO:0016788	hydrolase activity, acting on ester bonds	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	17.6673	15.5307	13.405	14.5746	16.6134	19.4505
+GO:0016788	hydrolase activity, acting on ester bonds	molecular_function	Escherichia	Escherichia coli	0.359263	0	0.0618859	0	0	0
+GO:0016788	hydrolase activity, acting on ester bonds	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.11366	2.4331	3.92376	3.21026	0.962481	1.75975
+GO:0016790	thiolester hydrolase activity	molecular_function	Clostridium	Clostridium thermocellum	0.635138	3.35602	4.71429	6.21626	8.14849	13.8948
+GO:0016790	thiolester hydrolase activity	molecular_function	Escherichia	Escherichia coli	0.381719	0	0.335681	0	0	0
+GO:0016791	phosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	1.85348	10.1261	8.60101	22.7806	24.3596	18.8439
+GO:0016791	phosphatase activity	molecular_function	Escherichia	Escherichia coli	1.12968	0	0.270367	0	0	0.0419435
+GO:0016795	phosphoric triester hydrolase activity	molecular_function	Escherichia	Escherichia coli	0.0461291	0	0.0378893	0	0	0
+GO:0016798	hydrolase activity, acting on glycosyl bonds	molecular_function	Clostridium	Clostridium thermocellum	13.361	27.8183	15.0313	55.0456	56.3294	81.1271
+GO:0016798	hydrolase activity, acting on glycosyl bonds	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	99.2343	61.2982	62.9423	43.6585	69.2681	59.5412
+GO:0016798	hydrolase activity, acting on glycosyl bonds	molecular_function	Escherichia	Escherichia coli	0.288076	0	0.435367	0	0	0.175277
+GO:0016805	dipeptidase activity	molecular_function	Clostridium	Clostridium thermocellum	0.309172	1.84039	0.688639	4.5854799999999996	4.02984	5.22299
+GO:0016805	dipeptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	17.9339	18.7187	13.0648	22.0688	19.0866	15.9968
+GO:0016805	dipeptidase activity	molecular_function	Escherichia	Escherichia coli	0.0461291	0	0.0378893	0	0	0
+GO:0016807	cysteine-type carboxypeptidase activity	molecular_function	Escherichia	Escherichia coli	0.0143151	0	0	0	0	0
+GO:0016810	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds	molecular_function	Clostridium	Clostridium thermocellum	41.9027	75.2149	73.5632	156.028	132.134	159.755
+GO:0016810	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	258.911	224.072	204.845	214.696	259.126	236.585
+GO:0016810	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds	molecular_function	Escherichia	Escherichia coli	0.283312	0	0.29274	0	0	0.101221
+GO:0016810	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.212393	0.593082	0.134733	0.774232	0.441719	0.465971
+GO:0016811	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	23.564	5.88078	5.84105	6.14106	7.45656	5.88991
+GO:0016811	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0872827
+GO:0016811	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amides	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.261074	0.588694	0.812726	0.357931	0.0390435	0.174792
+GO:0016812	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in cyclic amides	molecular_function	Escherichia	Escherichia coli	0.0786479	0	0	0	0	0
+GO:0016813	hydrolase activity, acting on carbon-nitrogen (but not peptide) bonds, in linear amidines	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	31.334	20.0835	26.696	23.9334	29.1499	17.6021
+GO:0016817	hydrolase activity, acting on acid anhydrides	molecular_function	Escherichia	Escherichia coli	0.123538	0	0	0	0	0
+GO:0016818	hydrolase activity, acting on acid anhydrides, in phosphorus-containing anhydrides	molecular_function	Escherichia	Escherichia coli	0.127402	0	0	0	0	0.151831
+GO:0016820	hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances	molecular_function	Escherichia	Escherichia coli	0.0180336	0	0	0	0	0
+GO:0016820	hydrolase activity, acting on acid anhydrides, catalyzing transmembrane movement of substances	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.498476	0.104082	0.292921	0.744661	0.0469868	0.557296
+GO:0016829	lyase activity	molecular_function	Clostridium	Clostridium thermocellum	43.1951	251.02	228.725	643.928	620.508	599.84
+GO:0016829	lyase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	170.495	91.7257	80.737	122.151	151.113	102.012
+GO:0016829	lyase activity	molecular_function	Escherichia	Escherichia coli	0.208626	0	0.0458281	0	0	0
+GO:0016829	lyase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.7801	5.12952	3.69335	3.16062	1.6869	2.46513
+GO:0016831	carboxy-lyase activity	molecular_function	Escherichia	Escherichia coli	0.113014	0	0	0	0	0
+GO:0016831	carboxy-lyase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.173288	0.290917	0.321247	0.177324	0.0580336	0.0576602
+GO:0016832	aldehyde-lyase activity	molecular_function	Clostridium	Clostridium thermocellum	4.18625	33.5688	32.7505	51.4121	45.198	55.465
+GO:0016832	aldehyde-lyase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.467166	0	0	0
+GO:0016833	oxo-acid-lyase activity	molecular_function	Escherichia	Escherichia coli	0.0401017	0	0.148851	0	0	0
+GO:0016833	oxo-acid-lyase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.121538	0.352236	0.19431	0.0565144	0.252599
+GO:0016835	carbon-oxygen lyase activity	molecular_function	Escherichia	Escherichia coli	0.065062	0	0	0	0	0
+GO:0016836	hydro-lyase activity	molecular_function	Clostridium	Clostridium thermocellum	10.7124	94.1762	47.619	230.162	116.762	364.765
+GO:0016836	hydro-lyase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.5226	16.506	11.0525	16.5646	19.4523	14.2968
+GO:0016836	hydro-lyase activity	molecular_function	Escherichia	Escherichia coli	0.14981	0	0	0	0	0
+GO:0016836	hydro-lyase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.642478	2.32827	1.93741	1.91555	1.04089	1.80335
+GO:0016837	carbon-oxygen lyase activity, acting on polysaccharides	molecular_function	Escherichia	Escherichia coli	0.55124	0	0	0	0	0.0656156
+GO:0016840	carbon-nitrogen lyase activity	molecular_function	Clostridium	Clostridium thermocellum	2.86788	11.0986	10.9256	39.106	36.1662	33.0985
+GO:0016840	carbon-nitrogen lyase activity	molecular_function	Escherichia	Escherichia coli	0.0464694	0	0	0	0	0.12389
+GO:0016840	carbon-nitrogen lyase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.127159	0.487086	0.236087	0.994084	0.198647	0.549632
+GO:0016851	magnesium chelatase activity	molecular_function	Clostridium	Clostridium thermocellum	2.23945	17.4025	12.2372	39.5776	34.6634	54.8841
+GO:0016851	magnesium chelatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.989807	1.17071	0.813673	1.09185	0.833826	0.786255
+GO:0016851	magnesium chelatase activity	molecular_function	Escherichia	Escherichia coli	0.585874	0	0.528331	0	0	0.0471824
+GO:0016851	magnesium chelatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.87559	2.37592	2.75528	1.30118	0.85733	1.36729
+GO:0016852	sirohydrochlorin cobaltochelatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.196916	0.379841	0.419758	0.457866	1.36338
+GO:0016853	isomerase activity	molecular_function	Clostridium	Clostridium thermocellum	13.9559	63.2049	53.7063	163.665	157.755	206.418
+GO:0016853	isomerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	145.812	229.964	301.385	169.261	201.171	138.079
+GO:0016853	isomerase activity	molecular_function	Escherichia	Escherichia coli	0.324411	0	0.119802	0	0	0
+GO:0016853	isomerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	2.41757	3.25226	2.36899	4.12133	1.97479	3.57688
+GO:0016855	racemase and epimerase activity, acting on amino acids and derivatives	molecular_function	Escherichia	Escherichia coli	0.0595692	0	0	0	0	0
+GO:0016857	racemase and epimerase activity, acting on carbohydrates and derivatives	molecular_function	Clostridium	Clostridium thermocellum	5.98225	36.2569	27.1105	100.723	88.9785	89.6585
+GO:0016857	racemase and epimerase activity, acting on carbohydrates and derivatives	molecular_function	Escherichia	Escherichia coli	0.071381	0	0.0471361	0	0	0.0951734
+GO:0016857	racemase and epimerase activity, acting on carbohydrates and derivatives	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0682701	0.087373	0.168878	0.0465817	0	0.121109
+GO:0016861	intramolecular oxidoreductase activity, interconverting aldoses and ketoses	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.6022	8.82271	4.81488	8.87252	10.4749	8.15105
+GO:0016861	intramolecular oxidoreductase activity, interconverting aldoses and ketoses	molecular_function	Escherichia	Escherichia coli	0.336174	0	0	0	0	0
+GO:0016862	intramolecular oxidoreductase activity, interconverting keto- and enol-groups	molecular_function	Clostridium	Clostridium thermocellum	3.3367	20.9109	5.65737	28.5364	43.3716	65.2845
+GO:0016868	intramolecular transferase activity, phosphotransferases	molecular_function	Clostridium	Clostridium thermocellum	0.0630447	0.363214	0.234012	1.16099	0.787924	1.00658
+GO:0016868	intramolecular transferase activity, phosphotransferases	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	23.5838	15.8669	9.26421	28.7642	30.7572	21.7891
+GO:0016868	intramolecular transferase activity, phosphotransferases	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.228968	0.281535	0.153813	0	0.0373941	0
+GO:0016869	intramolecular transferase activity, transferring amino groups	molecular_function	Escherichia	Escherichia coli	0.027658	0	0	0	0	0
+GO:0016872	intramolecular lyase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.691985	1.13095	2.00534	0.404388	0.791896	0.524763
+GO:0016872	intramolecular lyase activity	molecular_function	Escherichia	Escherichia coli	0.0900222	0	0	0	0	0
+GO:0016874	ligase activity	molecular_function	Clostridium	Clostridium thermocellum	12.658	55.6299	42.6905	168.182	143.736	102.032
+GO:0016874	ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	179.082	140.979	174.861	112.425	124.84	93.3947
+GO:0016874	ligase activity	molecular_function	Escherichia	Escherichia coli	0.549077	0	0.627565	0	0	0.119363
+GO:0016874	ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.678156	0.936366	1.15405	0.786344	0.654886	0.852453
+GO:0016878	acid-thiol ligase activity	molecular_function	Escherichia	Escherichia coli	0.069704	0	0.0642766	0	0	0
+GO:0016879	ligase activity, forming carbon-nitrogen bonds	molecular_function	Clostridium	Clostridium thermocellum	3.23407	21.9685	15.6691	74.2925	67.1286	68.034
+GO:0016879	ligase activity, forming carbon-nitrogen bonds	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.9417	9.21365	4.19593	3.90655	4.23014	3.57849
+GO:0016879	ligase activity, forming carbon-nitrogen bonds	molecular_function	Escherichia	Escherichia coli	0.178051	0	0.0787106	0	0	0
+GO:0016879	ligase activity, forming carbon-nitrogen bonds	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.20631	1.89798	2.29411	0.996993	0.777333	2.23452
+GO:0016881	acid-amino acid ligase activity	molecular_function	Clostridium	Clostridium thermocellum	1.57886	8.27644	7.72167	23.5333	21.6319	23.9263
+GO:0016881	acid-amino acid ligase activity	molecular_function	Escherichia	Escherichia coli	0.0397128	0	0.0737038	0	0	0
+GO:0016884	carbon-nitrogen ligase activity, with glutamine as amido-N-donor	molecular_function	Clostridium	Clostridium thermocellum	69.1656	494.745	265.457	1228.89	1051.44	1149.61
+GO:0016884	carbon-nitrogen ligase activity, with glutamine as amido-N-donor	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	12.7622	20.7861	18.2133	17.6636	24.1738	13.057
+GO:0016887	ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	120.268	683.451	505.781	1920.06	1561.26	1613.93
+GO:0016887	ATPase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1114.05	637.734	789.1	515.807	630.094	456.637
+GO:0016887	ATPase activity	molecular_function	Escherichia	Escherichia coli	1.60183	0	0.975019	0	0	0.786352
+GO:0016887	ATPase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	2.15995	6.1794	5.13297	4.15229	2.49748	4.77539
+GO:0016888	endodeoxyribonuclease activity, producing 5'-phosphomonoesters	molecular_function	Clostridium	Clostridium thermocellum	1.72782	10.1905	6.13095	35.7433	29.6849	20.023
+GO:0016888	endodeoxyribonuclease activity, producing 5'-phosphomonoesters	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	23.7802	10.2669	11.4827	9.10722	10.74	9.14537
+GO:0016888	endodeoxyribonuclease activity, producing 5'-phosphomonoesters	molecular_function	Escherichia	Escherichia coli	0.0768008	0	0.142536	0	0	0
+GO:0016888	endodeoxyribonuclease activity, producing 5'-phosphomonoesters	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.827796	0.530586	0.72531	1.20108	0.612565	0.522758
+GO:0016901	oxidoreductase activity, acting on the CH-OH group of donors, quinone or similar compound as acceptor	molecular_function	Escherichia	Escherichia coli	0.0155303	0	0	0	0	0
+GO:0016903	oxidoreductase activity, acting on the aldehyde or oxo group of donors	molecular_function	Clostridium	Clostridium thermocellum	12.8185	56.9574	36.3573	162.379	129.516	111.612
+GO:0016903	oxidoreductase activity, acting on the aldehyde or oxo group of donors	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.4209	4.47964	7.20398	4.03809	4.54913	2.72074
+GO:0016903	oxidoreductase activity, acting on the aldehyde or oxo group of donors	molecular_function	Escherichia	Escherichia coli	0.0258109	0	0	0	0	0.0119007
+GO:0016903	oxidoreductase activity, acting on the aldehyde or oxo group of donors	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.288392	0.486852	0.199596	0.0387477	0.0336829	0
+GO:0016920	pyroglutamyl-peptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	40.8456	71.071	59.7194	78.6609	88.171	67.0996
+GO:0016966	nitric oxide reductase activity	molecular_function	Escherichia	Escherichia coli	0.0447681	0	0.124584	0	0	0
+GO:0016985	mannan endo-1,4-beta-mannosidase activity	molecular_function	Clostridium	Clostridium thermocellum	41.2293	46.4253	52.9957	128.966	117.098	135.834
+GO:0016987	sigma factor activity	molecular_function	Clostridium	Clostridium thermocellum	64.1625	339.573	262.041	939.367	878.372	972.412
+GO:0016987	sigma factor activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	170.255	122.214	124.81	81.1139	113.434	92.5824
+GO:0016987	sigma factor activity	molecular_function	Escherichia	Escherichia coli	0.536974	0	0.215338	0	0	0.0917454
+GO:0016987	sigma factor activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.342298	0.657351	1.91549	1.08847	0	0.231191
+GO:0016989	sigma factor antagonist activity	molecular_function	Clostridium	Clostridium thermocellum	0	1.24413	1.65441	4.88044	4.12021	4.4064
+GO:0016989	sigma factor antagonist activity	molecular_function	Escherichia	Escherichia coli	0.0604685	0	0	0	0	0
+GO:0016992	lipoate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	33.0985	42.7352	36.02	30.6123	37.2339	39.0065
+GO:0016992	lipoate synthase activity	molecular_function	Escherichia	Escherichia coli	0.0893174	0	0	0	0	0
+GO:0016993	precorrin-8X methylmutase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.206512	0	0.0957608	0.158398	0.276473	0.0686555
+GO:0016994	precorrin-6A reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.35634	0.393172	0.171605	0.340787
+GO:0016998	cell wall macromolecule catabolic process	biological_process	Escherichia	Escherichia coli	0.439126	0	0	0	0	0.0966933
+GO:0017001	antibiotic catabolic process	biological_process	Escherichia	Escherichia coli	0.073617	0	0	0	0	0
+GO:0017004	cytochrome complex assembly	biological_process	Clostridium	Clostridium thermocellum	7.81876	83.5873	67.8413	138.875	101.384	229.216
+GO:0017004	cytochrome complex assembly	biological_process	Escherichia	Escherichia coli	0.381671	0	0.192785	0	0	0
+GO:0017004	cytochrome complex assembly	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0	0.147645	0
+GO:0017013	protein flavinylation	biological_process	Clostridium	Clostridium thermocellum	0.670865	14.7097	11.1055	32.1483	25.356	47.2252
+GO:0017038	protein import	biological_process	Clostridium	Clostridium thermocellum	1.53359	8.4545	6.70407	23.1515	21.6566	17.3492
+GO:0017038	protein import	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	22.2381	15.0365	29.4212	14.101	18.5976	11.9837
+GO:0017038	protein import	biological_process	Escherichia	Escherichia coli	0.0846267	0	0.118404	0	0	0
+GO:0017057	6-phosphogluconolactonase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0532706	0	0	0
+GO:0017061	S-methyl-5-thioadenosine phosphorylase activity	molecular_function	Clostridium	Clostridium thermocellum	3.18101	9.1625	8.16429	42.2096	39.3841	31.042
+GO:0017061	S-methyl-5-thioadenosine phosphorylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	53.6806	43.6106	43.2065	48.0188	47.6454	48.9161
+GO:0017061	S-methyl-5-thioadenosine phosphorylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.259407	0.14355	0.062461	0.09333
+GO:0017103	UTP:galactose-1-phosphate uridylyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	9.59595	13.7924	5.45755	15.3531	18.278	12.0259
+GO:0017108	5'-flap endonuclease activity	molecular_function	Escherichia	Escherichia coli	0.103438	0	0	0	0	0
+GO:0017108	5'-flap endonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.232128	0	0.32251	0.475343	0.103718	0.0772576
+GO:0017111	nucleoside-triphosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	4.42378	27.4467	20.7349	59.5457	61.5965	71.5612
+GO:0017111	nucleoside-triphosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	39.9694	79.6803	76.3232	58.9659	71.4159	58.7156
+GO:0017111	nucleoside-triphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0136346	0	0	0	0	0
+GO:0017111	nucleoside-triphosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.556563	0.768948	1.08797	1.61763	0.995513	2.01636
+GO:0017116	single-stranded DNA-dependent ATP-dependent DNA helicase activity	molecular_function	Escherichia	Escherichia coli	0.110802	0	0	0	0	0.0384186
+GO:0017148	negative regulation of translation	biological_process	Clostridium	Clostridium thermocellum	1.39243	22.0746	15.9619	51.3402	47.5091	73.1241
+GO:0017148	negative regulation of translation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	4.65391	2.99453	3.27865	1.59564	2.6893	3.31622
+GO:0017148	negative regulation of translation	biological_process	Escherichia	Escherichia coli	0.964482	0	0	0	0	0
+GO:0017150	tRNA dihydrouridine synthase activity	molecular_function	Clostridium	Clostridium thermocellum	9.76146	48.7718	59.4041	84.9538	94.6885	113.978
+GO:0017150	tRNA dihydrouridine synthase activity	molecular_function	Escherichia	Escherichia coli	0.137853	0	0.42418	0	0	0.0364136
+GO:0017150	tRNA dihydrouridine synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.126211	0.161211	1.24633	0.128852	0.149924	0.167548
+GO:0017153	sodium:dicarboxylate symporter activity	molecular_function	Escherichia	Escherichia coli	0.170153	0	0.0387464	0	0	0
+GO:0017183	peptidyl-diphthamide biosynthetic process from peptidyl-histidine	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.139875	0	0	0.200404
+GO:0018106	peptidyl-histidine phosphorylation	biological_process	Escherichia	Escherichia coli	0.417033	0	0.500184	0	0	0.103032
+GO:0018160	peptidyl-pyrromethane cofactor linkage	biological_process	Clostridium	Clostridium thermocellum	0.233319	3.13586	4.32944	6.23263	4.85062	5.67706
+GO:0018160	peptidyl-pyrromethane cofactor linkage	biological_process	Escherichia	Escherichia coli	0.0613677	0	0.0569693	0	0	0
+GO:0018160	peptidyl-pyrromethane cofactor linkage	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.129659	0	0.241738	0.241185	0.26948
+GO:0018298	protein-chromophore linkage	biological_process	Escherichia	Escherichia coli	0.0457645	0	0	0	0	0.0304632
+GO:0018298	protein-chromophore linkage	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.265935	0.196403	0.151828	0	0.0730737	0
+GO:0018307	enzyme active site formation	biological_process	Clostridium	Clostridium thermocellum	0.0764362	0.299178	0.290079	0.637695	0.418042	0.414617
+GO:0018339	peptidyl-L-beta-methylthioaspartic acid biosynthetic process from peptidyl-aspartic acid	biological_process	Clostridium	Clostridium thermocellum	1.48308	13.9746	12.425	28.6716	24.4524	24.9415
+GO:0018339	peptidyl-L-beta-methylthioaspartic acid biosynthetic process from peptidyl-aspartic acid	biological_process	Escherichia	Escherichia coli	0.0978481	0	0	0	0	0
+GO:0018364	peptidyl-glutamine methylation	biological_process	Clostridium	Clostridium thermocellum	1.69703	8.97286	6.41728	11.9222	13.9485	13.8792
+GO:0018364	peptidyl-glutamine methylation	biological_process	Escherichia	Escherichia coli	0.0620482	0	0	0	0	0
+GO:0018378	cytochrome c-heme linkage via heme-L-cysteine	biological_process	Escherichia	Escherichia coli	0.0655237	0	0.100903	0	0	0
+GO:0018455	alcohol dehydrogenase [NAD(P)+] activity	molecular_function	Escherichia	Escherichia coli	0.0479276	0	0	0	0	0
+GO:0018492	carbon-monoxide dehydrogenase (acceptor) activity	molecular_function	Clostridium	Clostridium thermocellum	0.130416	31.3103	29.1451	43.3765	37.6878	33.5279
+GO:0018492	carbon-monoxide dehydrogenase (acceptor) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0834844	0	0	0.294885	0.159451	0.11144
+GO:0018493	formylmethanofuran dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.53774	3.50888	3.31902	2.70077	1.62173	2.40061
+GO:0018537	coenzyme F420-dependent N5,N10-methenyltetrahydromethanopterin reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	7.03269	3.21927	8.41721	8.43702	7.34774	17.9235
+GO:0018580	nitronate monooxygenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	90.8081	8.77324	9.87973	39.3985	47.2665	24.2261
+GO:0018697	carbonyl sulfide nitrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.545869	1.22402	0.7655	2.14768	0.836213	1.36341
+GO:0018738	S-formylglutathione hydrolase activity	molecular_function	Escherichia	Escherichia coli	0.0710651	0	0	0	0	0
+GO:0018741	alkyl sulfatase activity	molecular_function	Escherichia	Escherichia coli	0.0264671	0	0	0	0	0
+GO:0018759	methenyltetrahydromethanopterin cyclohydrolase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.209234	0.459268	0.166442	0.428189	0.160406	0.874961
+GO:0018801	glutaconyl-CoA decarboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	21.7383	13.8552	10.5367	15.8808	17.9128	16.441
+GO:0018937	nitroglycerin metabolic process	biological_process	Escherichia	Escherichia coli	0.165389	0	0	0	0	0
+GO:0019003	GDP binding	molecular_function	Escherichia	Escherichia coli	0.0286545	0	0	0	0	0
+GO:0019073	viral DNA genome packaging	biological_process	Escherichia	Escherichia coli	20.3105	0	23.4071	0	0	18.4157
+GO:0019076	viral release from host cell	biological_process	Escherichia	Escherichia coli	0.209817	0	0.588457	0	0	0.0758994
+GO:0019104	DNA N-glycosylase activity	molecular_function	Clostridium	Clostridium thermocellum	8.44359	38.6602	41.3978	94.1453	87.3801	154.826
+GO:0019104	DNA N-glycosylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	22.8755	10.1067	11.4614	13.4119	20.5167	15.9538
+GO:0019104	DNA N-glycosylase activity	molecular_function	Escherichia	Escherichia coli	0.100011	0	0	0	0	0
+GO:0019104	DNA N-glycosylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.164322	0.045388	0.235607	0.293152
+GO:0019107	myristoyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.029578	0	0	0	0	0
+GO:0019134	glucosamine-1-phosphate N-acetyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	6.26833	35.7007	27.2547	96.8199	94.1636	84.6506
+GO:0019134	glucosamine-1-phosphate N-acetyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	17.0894	14.1176	12.1005	34.4997	35.4584	19.8786
+GO:0019134	glucosamine-1-phosphate N-acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.019905	0	0.0738842	0	0	0
+GO:0019134	glucosamine-1-phosphate N-acetyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.151609	0.166391	0.200994	0.15514	0.116067	0.172948
+GO:0019143	3-deoxy-manno-octulosonate-8-phosphatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.21633	0	0	0
+GO:0019144	ADP-sugar diphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.118264	0	0	0	0	0
+GO:0019146	arabinose-5-phosphate isomerase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.107759	0	0	0.0772576
+GO:0019148	D-cysteine desulfhydrase activity	molecular_function	Escherichia	Escherichia coli	0.0580624	0	0.107759	0	0	0
+GO:0019159	nicotinamide-nucleotide amidase activity	molecular_function	Escherichia	Escherichia coli	0.0696311	0	0	0	0	0
+GO:0019164	pyruvate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	37.7541	467.125	390.5	1143.26	1120.48	917.719
+GO:0019164	pyruvate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.102	15.7809	22.2174	16.6257	21.7097	12.2023
+GO:0019164	pyruvate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.082415	0	0.283448	0.430328	0.559241	0.166028
+GO:0019172	glyoxalase III activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.175277
+GO:0019180	dTDP-4-amino-4,6-dideoxygalactose transaminase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0459634	0	0	0
+GO:0019239	deaminase activity	molecular_function	Clostridium	Clostridium thermocellum	0	53.2952	41.7632	133.282	125.444	119.676
+GO:0019242	methylglyoxal biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	8.8476	8.17008	7.28098	5.97475	7.36417	4.43159
+GO:0019243	methylglyoxal catabolic process to D-lactate via S-lactoyl-glutathione	biological_process	Escherichia	Escherichia coli	0.226611	0	0.148851	0	0	0.175277
+GO:0019249	lactate biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.175277
+GO:0019251	anaerobic cobalamin biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.196916	0.379841	0.419758	0.457866	1.36338
+GO:0019253	reductive pentose-phosphate cycle	biological_process	Escherichia	Escherichia coli	0.11593	0	0	0	0	0.1225
+GO:0019262	N-acetylneuraminate catabolic process	biological_process	Escherichia	Escherichia coli	0.205345	0	0	0	0	0.0434635
+GO:0019264	glycine biosynthetic process from serine	biological_process	Clostridium	Clostridium thermocellum	2.54412	52.7806	35.9423	179.599	189.141	149.235
+GO:0019264	glycine biosynthetic process from serine	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	22.6804	11.9841	12.0337	8.85192	9.73997	6.94814
+GO:0019264	glycine biosynthetic process from serine	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.106889	0.164198	0.236042	0.436595	0.0381754	0.0853423
+GO:0019272	L-alanine biosynthetic process from pyruvate	biological_process	Escherichia	Escherichia coli	0.0446465	0	0	0	0	0
+GO:0019277	UDP-N-acetylgalactosamine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	15.7121	94.3411	68.7886	205.784	178.629	204.708
+GO:0019277	UDP-N-acetylgalactosamine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	22.7477	23.8692	17.1089	21.6449	23.5611	21.4403
+GO:0019277	UDP-N-acetylgalactosamine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0600067	0	0.0812816	0	0	0
+GO:0019281	L-methionine biosynthetic process from homoserine via O-succinyl-L-homoserine and cystathionine	biological_process	Clostridium	Clostridium thermocellum	1.80171	18.6499	14.2566	39.4573	34.2343	40.4424
+GO:0019281	L-methionine biosynthetic process from homoserine via O-succinyl-L-homoserine and cystathionine	biological_process	Escherichia	Escherichia coli	0.155789	0	0.346913	0	0	0
+GO:0019284	L-methionine biosynthetic process from S-adenosylmethionine	biological_process	Clostridium	Clostridium thermocellum	1.90797	8.33124	5.07952	33.3417	25.5352	24.3338
+GO:0019284	L-methionine biosynthetic process from S-adenosylmethionine	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	22.4369	12.727	27.7473	8.96712	12.2831	20.0084
+GO:0019284	L-methionine biosynthetic process from S-adenosylmethionine	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.525672	1.42523	1.09036	0.253054	0.414178	0.369989
+GO:0019285	glycine betaine biosynthetic process from choline	biological_process	Escherichia	Escherichia coli	0.086328	0	0.162338	0	0	0.0355404
+GO:0019287	isopentenyl diphosphate biosynthetic process, mevalonate pathway	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0638711	0	0	0.0326296	0.0569702	0
+GO:0019288	isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway	biological_process	Clostridium	Clostridium thermocellum	17.5654	96.757	66.0977	306.882	268.141	243.195
+GO:0019288	isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	42.2315	46.6955	32.9517	47.2494	54.0949	40.364
+GO:0019288	isopentenyl diphosphate biosynthetic process, methylerythritol 4-phosphate pathway	biological_process	Escherichia	Escherichia coli	0.219709	0	0	0	0	0
+GO:0019290	siderophore biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0814186	0	0	0	0	0
+GO:0019294	keto-3-deoxy-D-manno-octulosonic acid biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0.0639608	0	0	0
+GO:0019295	coenzyme M biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.912739	1.67978	1.961	2.31954	1.29925	1.0969
+GO:0019298	coenzyme B biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.18198	0.0879123	0.242384	0.0846197	0
+GO:0019299	rhamnose metabolic process	biological_process	Clostridium	Clostridium thermocellum	5.56439	29.6624	24.26	87.8646	80.5556	79.0305
+GO:0019299	rhamnose metabolic process	biological_process	Escherichia	Escherichia coli	0.17375	0	0	0	0	0.232064
+GO:0019301	rhamnose catabolic process	biological_process	Escherichia	Escherichia coli	0.13795	0	0	0	0	0
+GO:0019303	D-ribose catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.691985	1.13095	2.00534	0.404388	0.791896	0.524763
+GO:0019303	D-ribose catabolic process	biological_process	Escherichia	Escherichia coli	0.148935	0	0	0	0	0.0783571
+GO:0019305	dTDP-rhamnose biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	3.26015	1.99964	4.92832	0.722029	1.58891	1.92271
+GO:0019305	dTDP-rhamnose biosynthetic process	biological_process	Escherichia	Escherichia coli	0.430036	0	0.12314	0	0	0
+GO:0019305	dTDP-rhamnose biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.210813	0.0640362	0.72522	0.15989	0.20162	0.387873
+GO:0019316	D-allose catabolic process	biological_process	Escherichia	Escherichia coli	0.0890257	0	0.704922	0	0	0
+GO:0019323	pentose catabolic process	biological_process	Escherichia	Escherichia coli	0.0890257	0	0.0933701	0	0	0
+GO:0019324	L-lyxose metabolic process	biological_process	Escherichia	Escherichia coli	0.0359457	0	0.267842	0	0	0
+GO:0019344	cysteine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0019344	cysteine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.119503	0	0	0	0	0
+GO:0019354	siroheme biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.0182523	12.9279	7.92212	23.4066	22.693	32.3801
+GO:0019354	siroheme biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.08384	1.48067	1.34034	1.00281	0.829117	0.892133
+GO:0019357	nicotinate nucleotide biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0461534	0	0	0	0	0.0614116
+GO:0019358	nicotinate nucleotide salvage	biological_process	Clostridium	Clostridium thermocellum	1.5758	3.20363	4.54108	9.51954	9.20165	8.45937
+GO:0019363	pyridine nucleotide biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0696311	0	0	0	0	0
+GO:0019379	sulfate assimilation, phosphoadenylyl sulfate reduction by phosphoadenylyl-sulfate reductase (thioredoxin)	biological_process	Clostridium	Clostridium thermocellum	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0019380	3-phenylpropionate catabolic process	biological_process	Escherichia	Escherichia coli	0.172632	0	0.281554	0	0	0
+GO:0019386	methanogenesis, from carbon dioxide	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	35.4646	20.0618	50.7883	37.8944	33.1387	60.675
+GO:0019402	galactitol metabolic process	biological_process	Escherichia	Escherichia coli	0.124996	0	0	0	0	0.07577
+GO:0019404	galactitol catabolic process	biological_process	Escherichia	Escherichia coli	0.0436744	0	0.0810561	0	0	0
+GO:0019419	sulfate reduction	biological_process	Escherichia	Escherichia coli	0.0639926	0	0	0	0	0
+GO:0019427	acetyl-CoA biosynthetic process from acetate	biological_process	Escherichia	Escherichia coli	0.0624857	0	0	0	0	0
+GO:0019427	acetyl-CoA biosynthetic process from acetate	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.321105	0.603863	0.128914	0.461639	0	0.431271
+GO:0019430	removal of superoxide radicals	biological_process	Clostridium	Clostridium thermocellum	3.34271	26.5836	22.3044	73.621	51.4425	40.9378
+GO:0019430	removal of superoxide radicals	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	60.5844	45.6812	40.6282	27.2136	35.3746	29.7026
+GO:0019430	removal of superoxide radicals	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.560136	3.79685	1.7356	1.12194	1.27526	1.14176
+GO:0019439	aromatic compound catabolic process	biological_process	Escherichia	Escherichia coli	0.244353	0	0.205008	0	0	0
+GO:0019441	tryptophan catabolic process to kynurenine	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.5656	12.5449	8.71175	11.5431	10.73	8.61288
+GO:0019441	tryptophan catabolic process to kynurenine	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.320352	0.531379	0.222735	0.184064	0.107169	0.319411
+GO:0019464	glycine decarboxylation via glycine cleavage system	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	706.074	325.416	401.597	307.487	371.456	244.037
+GO:0019478	D-amino acid catabolic process	biological_process	Clostridium	Clostridium thermocellum	3.31886	15.3888	14.6693	64.3926	55.4333	51.6832
+GO:0019478	D-amino acid catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	17.6673	15.5307	13.405	14.5746	16.6134	19.4505
+GO:0019491	ectoine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.395184	0.94332	0	0	0	0.131458
+GO:0019509	L-methionine biosynthetic process from methylthioadenosine	biological_process	Clostridium	Clostridium thermocellum	1.90797	8.33124	5.07952	33.3417	25.5352	24.3338
+GO:0019509	L-methionine biosynthetic process from methylthioadenosine	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	22.4369	12.727	27.7473	8.96712	12.2831	20.0084
+GO:0019516	lactate oxidation	biological_process	Escherichia	Escherichia coli	0.176836	0	0.0692383	0	0	0.0506104
+GO:0019516	lactate oxidation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	6.10015	1.48707	6.2415	6.12275	5.15822	12.196
+GO:0019518	L-threonine catabolic process to glycine	biological_process	Escherichia	Escherichia coli	0.374696	0	0	0	0	0
+GO:0019521	D-gluconate metabolic process	biological_process	Escherichia	Escherichia coli	0.431421	0	0.288636	0	0	0.128612
+GO:0019538	protein metabolic process	biological_process	Clostridium	Clostridium thermocellum	21.8133	263.562	347.214	110.844	101.05	103.011
+GO:0019538	protein metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	525.539	231.02	388.516	41.1582	53.0827	48.5591
+GO:0019544	arginine catabolic process to glutamate	biological_process	Escherichia	Escherichia coli	0.241704	0	0	0	0	0
+GO:0019545	arginine catabolic process to succinate	biological_process	Escherichia	Escherichia coli	0.241704	0	0	0	0	0
+GO:0019546	arginine deiminase pathway	biological_process	Clostridium	Clostridium thermocellum	1.50707	2.58642	1.39825	7.4204	5.77356	4.76255
+GO:0019546	arginine deiminase pathway	biological_process	Escherichia	Escherichia coli	0.0620482	0	0	0	0	0
+GO:0019547	arginine catabolic process to ornithine	biological_process	Clostridium	Clostridium thermocellum	1.50707	2.58642	1.39825	7.4204	5.77356	4.76255
+GO:0019552	glutamate catabolic process via 2-hydroxyglutarate	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	21.7383	13.8552	10.5367	15.8808	17.9128	16.441
+GO:0019556	histidine catabolic process to glutamate and formamide	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	22.0551	11.8131	40.4703	1.99762	3.44961	5.27732
+GO:0019557	histidine catabolic process to glutamate and formate	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	22.0551	11.8131	40.4703	1.99762	3.44961	5.27732
+GO:0019563	glycerol catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0019563	glycerol catabolic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0350877
+GO:0019588	anaerobic glycerol catabolic process	biological_process	Escherichia	Escherichia coli	0.0508684	0	0	0	0	0
+GO:0019594	mannitol metabolic process	biological_process	Escherichia	Escherichia coli	0.0797659	0	0.225757	0	0	0
+GO:0019605	butyrate metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	81.3009	96.7253	101.091	83.5603	101.809	119.134
+GO:0019627	urea metabolic process	biological_process	Clostridium	Clostridium thermocellum	0.0764362	0.299178	0.290079	0.637695	0.418042	0.414617
+GO:0019630	quinate metabolic process	biological_process	Clostridium	Clostridium thermocellum	1.38574	7.35655	3.7173	17.0606	15.9985	19.0732
+GO:0019632	shikimate metabolic process	biological_process	Clostridium	Clostridium thermocellum	1.36543	6.36931	4.52466	37.8689	40.8847	40.2398
+GO:0019632	shikimate metabolic process	biological_process	Escherichia	Escherichia coli	0.181527	0	0	0	0	0
+GO:0019632	shikimate metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.307155	1.98349	0.569964	0.0392948	0.171431	0.306379
+GO:0019645	anaerobic electron transport chain	biological_process	Escherichia	Escherichia coli	0.0810054	0	0.252686	0	0	0
+GO:0019646	aerobic electron transport chain	biological_process	Escherichia	Escherichia coli	0.146432	0	0.0646374	0	0	0.023187
+GO:0019674	NAD metabolic process	biological_process	Clostridium	Clostridium thermocellum	3.27337	43.3958	38.1945	99.6322	94.2849	136.194
+GO:0019674	NAD metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	26.7214	39.4559	31.2051	22.3689	30.5419	23.339
+GO:0019674	NAD metabolic process	biological_process	Escherichia	Escherichia coli	0.233368	0	0	0	0	0
+GO:0019674	NAD metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.207727	0.398826	0.192649	0.070855	0.15459	0
+GO:0019693	ribose phosphate metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.222333	0.573012	0.41146	0.532295	0.266599	0.446632
+GO:0019698	D-galacturonate catabolic process	biological_process	Escherichia	Escherichia coli	1.43953	0	0	0	0	0
+GO:0019700	organic phosphonate catabolic process	biological_process	Escherichia	Escherichia coli	0.0798145	0	0	0	0	0
+GO:0019740	nitrogen utilization	biological_process	Escherichia	Escherichia coli	0.0551702	0	0	0	0	0
+GO:0019752	carboxylic acid metabolic process	biological_process	Escherichia	Escherichia coli	0.298235	0	0	0	0	0
+GO:0019808	polyamine binding	molecular_function	Clostridium	Clostridium thermocellum	2.86812	14.2759	7.34115	83.8084	72.8267	32.8495
+GO:0019808	polyamine binding	molecular_function	Escherichia	Escherichia coli	0	0	0.181102	0	0	0
+GO:0019825	oxygen binding	molecular_function	Escherichia	Escherichia coli	0.0466881	0	0	0	0	0
+GO:0019829	cation-transporting ATPase activity	molecular_function	Clostridium	Clostridium thermocellum	5.28287	21.5243	18.7184	79.1633	55.1678	45.7095
+GO:0019829	cation-transporting ATPase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.390031	0.365314	0.395041	0.191326	0.0816681	0.210461
+GO:0019835	cytolysis	biological_process	Escherichia	Escherichia coli	0.154063	0	0.176907	0	0	0
+GO:0019843	rRNA binding	molecular_function	Clostridium	Clostridium thermocellum	332.151	1592.04	935.931	6762.96	5484.78	5699.01
+GO:0019843	rRNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1995.01	1799.96	1399.49	1858.17	2246	1681.5
+GO:0019843	rRNA binding	molecular_function	Escherichia	Escherichia coli	0.855989	0	2.05938	0	0	0.40443
+GO:0019843	rRNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	7.89043	20.042	37.5021	51.1639	18.2033	27.5042
+GO:0019853	L-ascorbic acid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0540036	0	0	0	0	0
+GO:0019854	L-ascorbic acid catabolic process	biological_process	Escherichia	Escherichia coli	0.0683187	0	0	0	0	0
+GO:0019856	pyrimidine nucleobase biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	5.1579	4.68626	2.36768	1.02219	2.77335	2.067
+GO:0019856	pyrimidine nucleobase biosynthetic process	biological_process	Escherichia	Escherichia coli	0.054198	0	0	0	0	0
+GO:0019877	diaminopimelate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	10.3515	38.2045	33.9355	110.667	117.318	123.081
+GO:0019877	diaminopimelate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.121933	0	0	0	0	0
+GO:0019877	diaminopimelate biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.952354	1.1316	2.39713	2.38761	0.732126	1.87084
+GO:0019932	second-messenger-mediated signaling	biological_process	Clostridium	Clostridium thermocellum	4.19311	21.5017	17.5922	87.8474	83.4249	100.137
+GO:0020037	heme binding	molecular_function	Clostridium	Clostridium thermocellum	0.268876	23.4922	17.0868	64.5776	54.314	45.8254
+GO:0020037	heme binding	molecular_function	Escherichia	Escherichia coli	1.36037	0	0.422737	0	0	0.0680087
+GO:0020037	heme binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.126576	0.486199	0.258414	0.155438	0.0676914	0.0673619
+GO:0022611	dormancy process	biological_process	Escherichia	Escherichia coli	0.0428724	0	0	0	0	0
+GO:0022820	potassium ion symporter activity	molecular_function	Clostridium	Clostridium thermocellum	1.88529	7.99094	4.77929	25.7575	26.9227	25.4754
+GO:0022820	potassium ion symporter activity	molecular_function	Escherichia	Escherichia coli	0.0557049	0	0	0	0	0
+GO:0022857	transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.641821	0	0.523008	0	0	0.102935
+GO:0022872	protein-N(PI)-phosphohistidine-mannitol phosphotransferase system transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.201845	0	0.29901	0	0	0.0426873
+GO:0022877	protein-N(PI)-phosphohistidine-fructose phosphotransferase system transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	92.4241	20.5231	28.3484	18.3597	14.3406	8.53233
+GO:0022877	protein-N(PI)-phosphohistidine-fructose phosphotransferase system transporter activity	molecular_function	Escherichia	Escherichia coli	0.0550244	0	0.469873	0	0	0.0209879
+GO:0022885	bacteriocin transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	7.07246	25.0548	21.4841	39.2775	35.7906	61.1063
+GO:0022889	serine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0443792	0	0	0	0	0
+GO:0022891	substrate-specific transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.698766	0	0.306904	0	0	0.0769342
+GO:0022900	electron transport chain	biological_process	Clostridium	Clostridium thermocellum	27.3023	113.233	112.84	293.625	296.322	288.779
+GO:0022900	electron transport chain	biological_process	Escherichia	Escherichia coli	0.0534689	0	0.297747	0	0	0
+GO:0022904	respiratory electron transport chain	biological_process	Escherichia	Escherichia coli	0.395208	0	0.108165	0	0	0.0508367
+GO:0023014	signal transduction by protein phosphorylation	biological_process	Escherichia	Escherichia coli	0.571121	0	0.500184	0	0	0.103032
+GO:0030001	metal ion transport	biological_process	Clostridium	Clostridium thermocellum	24.9573	165.741	102.104	716.088	559.563	560.753
+GO:0030001	metal ion transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	10.7306	9.79903	8.87016	6.29811	7.3781	6.73538
+GO:0030001	metal ion transport	biological_process	Escherichia	Escherichia coli	0.14072	0	0	0	0	0
+GO:0030001	metal ion transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.296339	0.31612	0	0.269493	0.176445	0.131458
+GO:0030060	L-malate dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.440074	0.281489	0.162202	0.240295	0.104847	0
+GO:0030091	protein repair	biological_process	Clostridium	Clostridium thermocellum	0.217497	2.60971	0.706365	3.28263	1.65025	7.94968
+GO:0030091	protein repair	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	1.85163	2.10927	1.80651	1.83144	1.68072	1.29517
+GO:0030091	protein repair	biological_process	Escherichia	Escherichia coli	0.61742	0	0.170863	0	0	0
+GO:0030091	protein repair	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.610761	0.259319	0.964644	0.359672	0.0430586	0.106039
+GO:0030145	manganese ion binding	molecular_function	Clostridium	Clostridium thermocellum	21.8883	203.144	212.555	520.555	460.296	438.792
+GO:0030145	manganese ion binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	30.5053	18.0302	14.1882	22.8974	23.4574	20.9737
+GO:0030145	manganese ion binding	molecular_function	Escherichia	Escherichia coli	1.623	0	1.43235	0	0	0.34221
+GO:0030145	manganese ion binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.1594	2.28439	3.22316	2.43329	1.48253	3.45237
+GO:0030151	molybdenum ion binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	13.8821	19.0385	12.9373	17.7183	19.5629	16.2159
+GO:0030151	molybdenum ion binding	molecular_function	Escherichia	Escherichia coli	0.758043	0	0	0	0	0.0514188
+GO:0030151	molybdenum ion binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.100011	1.60431	0.342583	0.798878	0.150792	1.45312
+GO:0030153	bacteriocin immunity	biological_process	Escherichia	Escherichia coli	0.424738	0	0.188139	0	0	0
+GO:0030163	protein catabolic process	biological_process	Clostridium	Clostridium thermocellum	5.84393	40.4205	28.0088	109.896	98.4439	102.769
+GO:0030163	protein catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	18.5312	28.6788	32.6612	16.4149	18.2525	20.9937
+GO:0030163	protein catabolic process	biological_process	Escherichia	Escherichia coli	0.412172	0	0.100722	0	0	0.0362196
+GO:0030163	protein catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.613459	1.5799	1.39239	0.716359	0.489531	1.12297
+GO:0030170	pyridoxal phosphate binding	molecular_function	Clostridium	Clostridium thermocellum	61.3959	1793.24	1516.57	1656.84	1637.87	1670.83
+GO:0030170	pyridoxal phosphate binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	538.617	260.019	385.875	230.782	249.884	168.924
+GO:0030170	pyridoxal phosphate binding	molecular_function	Escherichia	Escherichia coli	1.77874	0	0.977725	0	0	0.136567
+GO:0030170	pyridoxal phosphate binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.12535	3.27695	2.84959	4.34625	2.66794	4.28542
+GO:0030234	enzyme regulator activity	molecular_function	Clostridium	Clostridium thermocellum	29.5502	131.469	92.9205	281.49	268.928	416.262
+GO:0030234	enzyme regulator activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0514188
+GO:0030234	enzyme regulator activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.642259	1.17865	0.205956	0.531599	0.464442	1.83536
+GO:0030244	cellulose biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0566041	0	0.280742	0	0	0.0229283
+GO:0030245	cellulose catabolic process	biological_process	Clostridium	Clostridium thermocellum	360.113	492.19	489.415	1494.12	1317.1	1291.15
+GO:0030245	cellulose catabolic process	biological_process	Escherichia	Escherichia coli	0.0761932	0	0	0	0	0
+GO:0030246	carbohydrate binding	molecular_function	Clostridium	Clostridium thermocellum	236.158	332.987	319.585	866.912	764.217	811.045
+GO:0030246	carbohydrate binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	246.44	87.6649	114.489	82.2803	91.0537	71.6753
+GO:0030246	carbohydrate binding	molecular_function	Escherichia	Escherichia coli	4.46643	0	3.38907	0	0	1.25439
+GO:0030246	carbohydrate binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.47961	2.4815	1.77877	2.41031	1.75273	3.16953
+GO:0030248	cellulose binding	molecular_function	Clostridium	Clostridium thermocellum	96.9815	115.552	93.088	368.944	317.694	349.076
+GO:0030254	protein secretion by the type III secretion system	biological_process	Clostridium	Clostridium thermocellum	1.77383	6.01273	5.19088	50.7058	47.3394	37.1062
+GO:0030259	lipid glycosylation	biological_process	Clostridium	Clostridium thermocellum	1.58956	8.72969	6.41773	32.6025	24.0076	23.7881
+GO:0030259	lipid glycosylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	23.0057	10.0247	7.60845	14.6403	15.6966	16.805
+GO:0030259	lipid glycosylation	biological_process	Escherichia	Escherichia coli	0.0536877	0	0	0	0	0
+GO:0030259	lipid glycosylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0861093	0	0	0	0	0
+GO:0030261	chromosome condensation	biological_process	Clostridium	Clostridium thermocellum	35.245	378.631	231.085	1476.91	1305.28	1935.4
+GO:0030261	chromosome condensation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	907.442	2125.74	1515.98	841.108	1142.16	1196.14
+GO:0030261	chromosome condensation	biological_process	Escherichia	Escherichia coli	0.109368	0	0	0	0	0
+GO:0030266	quinate 3-dehydrogenase (NAD+) activity	molecular_function	Escherichia	Escherichia coli	0.0327619	0	0	0	0	0
+GO:0030268	methylenetetrahydromethanopterin dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	6.52795	5.96223	21.7131	10.4726	10.4144	28.2812
+GO:0030269	tetrahydromethanopterin S-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	26.7966	9.15881	23.6886	22.4062	18.9856	22.9934
+GO:0030270	formylmethanofuran-tetrahydromethanopterin N-formyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.615063	0.430891	1.07935	0.989756	0.893184	2.66469
+GO:0030272	5-formyltetrahydrofolate cyclo-ligase activity	molecular_function	Clostridium	Clostridium thermocellum	4.04441	28.8063	16.8272	112.805	85.4843	97.7769
+GO:0030272	5-formyltetrahydrofolate cyclo-ligase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.199145	0	0	0.21418
+GO:0030337	DNA polymerase processivity factor activity	molecular_function	Escherichia	Escherichia coli	0.0136346	0	0	0	0	0
+GO:0030337	DNA polymerase processivity factor activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.166118	0.159437	0.0770868	0.595043	0.519394	1.1055
+GO:0030388	fructose 1,6-bisphosphate metabolic process	biological_process	Clostridium	Clostridium thermocellum	9.251	187.596	131.683	467.604	448.693	467.214
+GO:0030388	fructose 1,6-bisphosphate metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	61.2687	66.3204	53.7575	64.3077	73.8739	48.3358
+GO:0030393	fructoselysine metabolic process	biological_process	Escherichia	Escherichia coli	0.040928	0	0.0374834	0	0	0
+GO:0030409	glutamate formimidoyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	38.7195	12.9166	45.4751	2.07255	4.42169	4.76219
+GO:0030410	nicotianamine synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0.458381	0.165789	0.19869
+GO:0030418	nicotianamine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0.458381	0.165789	0.19869
+GO:0030420	establishment of competence for transformation	biological_process	Clostridium	Clostridium thermocellum	26.4095	282.329	361.857	180.511	165.892	181.106
+GO:0030420	establishment of competence for transformation	biological_process	Escherichia	Escherichia coli	0.201602	0	0.187552	0	0	0
+GO:0030435	sporulation resulting in formation of a cellular spore	biological_process	Clostridium	Clostridium thermocellum	79.6942	328.256	169.846	1262.16	1104.35	1594.63
+GO:0030435	sporulation resulting in formation of a cellular spore	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	225.31	404.169	315.996	283.672	335.978	603.333
+GO:0030436	asexual sporulation	biological_process	Clostridium	Clostridium thermocellum	1.06843	21.4712	7.272	53.8536	45.1479	49.5785
+GO:0030497	fatty acid elongation	biological_process	Clostridium	Clostridium thermocellum	1.23664	9.73149	5.3981	27.9807	25.9851	38.4535
+GO:0030497	fatty acid elongation	biological_process	Escherichia	Escherichia coli	0	0	0.150204	0	0	0
+GO:0030515	snoRNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	4.51064	3.85666	1.44687	0
+GO:0030541	plasmid partitioning	biological_process	Escherichia	Escherichia coli	0.0836546	0	0	0	0	0
+GO:0030573	bile acid catabolic process	biological_process	Escherichia	Escherichia coli	0.157247	0	0	0	0	0
+GO:0030599	pectinesterase activity	molecular_function	Clostridium	Clostridium thermocellum	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0030604	1-deoxy-D-xylulose-5-phosphate reductoisomerase activity	molecular_function	Clostridium	Clostridium thermocellum	1.5856	8.00737	3.75655	20.4672	19.2295	15.9648
+GO:0030604	1-deoxy-D-xylulose-5-phosphate reductoisomerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	4.67053	4.78465	2.16822	5.04796	4.35649	2.48715
+GO:0030604	1-deoxy-D-xylulose-5-phosphate reductoisomerase activity	molecular_function	Escherichia	Escherichia coli	0.0464207	0	0	0	0	0
+GO:0030632	D-alanine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.852732	8.32088	5.31565	23.5014	22.1396	20.8272
+GO:0030632	D-alanine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	5.03638	4.11012	2.81549	4.96229	3.96708	5.04632
+GO:0030632	D-alanine biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0969003	0	0	0	0	0
+GO:0030643	cellular phosphate ion homeostasis	biological_process	Clostridium	Clostridium thermocellum	0.873002	8.92465	7.92108	11.9012	13.2486	11.9292
+GO:0030643	cellular phosphate ion homeostasis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	134.535	172.094	104.632	117.972	146.035	117.723
+GO:0030643	cellular phosphate ion homeostasis	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.112378
+GO:0030643	cellular phosphate ion homeostasis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.111434	0.184127	1.56966	0.754758	0.256333	0.805659
+GO:0030655	beta-lactam antibiotic catabolic process	biological_process	Clostridium	Clostridium thermocellum	133936	95932	83193.2	37667.8	49698.2	17083.2
+GO:0030655	beta-lactam antibiotic catabolic process	biological_process	Escherichia	Escherichia coli	77927.6	0	34222.8	0	0	7845.05
+GO:0030674	protein binding, bridging	molecular_function	Escherichia	Escherichia coli	0.0814915	0	0.0755531	0	0	0
+GO:0030697	S-adenosylmethionine-dependent tRNA (m5U54) methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0511114	0	0	0	0	0
+GO:0030698	5,10-methylenetetrahydrofolate-dependent tRNA (m5U54) methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.54783	8.23481	3.57378	33.2139	32.0653	25.7839
+GO:0030698	5,10-methylenetetrahydrofolate-dependent tRNA (m5U54) methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	15.3952	25.0556	21.3114	16.3395	17.3561	16.2648
+GO:0030699	glycine reductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	149.417	194.567	244.91	115.624	154.387	113.778
+GO:0030788	precorrin-2 C20-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.177006	0.170032	0	0.226492	0.513556	0.471145
+GO:0030798	trans-aconitate 2-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0798145	0	0	0	0	0
+GO:0030955	potassium ion binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	82.4715	172.006	221.728	91.3702	114.013	90.918
+GO:0030955	potassium ion binding	molecular_function	Escherichia	Escherichia coli	0.183884	0	0	0	0	0
+GO:0030961	peptidyl-arginine hydroxylation	biological_process	Escherichia	Escherichia coli	0.0500177	0	0	0	0	0
+GO:0030976	thiamine pyrophosphate binding	molecular_function	Clostridium	Clostridium thermocellum	34.6043	296.207	197.136	815.991	684.099	659
+GO:0030976	thiamine pyrophosphate binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	140.286	75.2662	108.498	40.4161	49.8643	52.1933
+GO:0030976	thiamine pyrophosphate binding	molecular_function	Escherichia	Escherichia coli	0.213511	0	0.225667	0	0	0.0616379
+GO:0030976	thiamine pyrophosphate binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.942924	1.45645	1.49627	1.39118	0.732539	0.439162
+GO:0030980	alpha-glucan catabolic process	biological_process	Escherichia	Escherichia coli	0.168573	0	0.129139	0	0	0
+GO:0030983	mismatched DNA binding	molecular_function	Clostridium	Clostridium thermocellum	2.98984	19.5161	13.0179	52.0287	52.5978	53.8572
+GO:0030983	mismatched DNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	34.6387	33.8197	30.2089	39.5389	47.3924	42.4149
+GO:0030983	mismatched DNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.135471	1.14467	1.00474	0.277252	0.241922	0.342437
+GO:0031071	cysteine desulfurase activity	molecular_function	Clostridium	Clostridium thermocellum	3.91947	55.9324	51.6661	114.788	99.4343	130.863
+GO:0031071	cysteine desulfurase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.138023	0.0884932	0.0854314	0.118083	0.0412138	0.122855
+GO:0031119	tRNA pseudouridine synthesis	biological_process	Clostridium	Clostridium thermocellum	1.44257	11.3463	8.44567	28.0432	29.1417	20.7401
+GO:0031119	tRNA pseudouridine synthesis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.964506	0.884605	0.57055	1.30193	0.757714	0.359253
+GO:0031119	tRNA pseudouridine synthesis	biological_process	Escherichia	Escherichia coli	0.133186	0	0	0	0	0
+GO:0031119	tRNA pseudouridine synthesis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.752551	0.87625	0.922425	0.569526	0.745864	0.887056
+GO:0031154	culmination involved in sorocarp development	biological_process	Escherichia	Escherichia coli	0.0403933	0	0.0750119	0	0	0
+GO:0031167	rRNA methylation	biological_process	Clostridium	Clostridium thermocellum	2.10947	15.9748	14.7093	39.1462	36.2457	56.1881
+GO:0031167	rRNA methylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	3.26581	1.00339	2.54012	1.33674	1.74978	2.77348
+GO:0031167	rRNA methylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0615379	0.236635	0.11439	0.0630458	0	0.0819791
+GO:0031176	endo-1,4-beta-xylanase activity	molecular_function	Clostridium	Clostridium thermocellum	39.2754	60.4228	57.7899	127.287	102.867	96.3288
+GO:0031218	arabinogalactan endo-1,4-beta-galactosidase activity	molecular_function	Clostridium	Clostridium thermocellum	1.0845	6.84132	6.44917	14.4016	15.454	20.6395
+GO:0031220	maltodextrin phosphorylase activity	molecular_function	Escherichia	Escherichia coli	0.0643814	0	0.0803795	0	0	0
+GO:0031222	arabinan catabolic process	biological_process	Clostridium	Clostridium thermocellum	0.249773	2.9802	2.21887	5.951	5.87756	6.05251
+GO:0031280	negative regulation of cyclase activity	biological_process	Escherichia	Escherichia coli	0.108493	0	0	0	0	0
+GO:0031297	replication fork processing	biological_process	Escherichia	Escherichia coli	0.0241582	0	0	0	0	0
+GO:0031388	organic acid phosphorylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	42.8886	9.93042	11.9993	14.1016	15.5978	11.3916
+GO:0031388	organic acid phosphorylation	biological_process	Escherichia	Escherichia coli	0.0976051	0	0	0	0	0.129873
+GO:0031402	sodium ion binding	molecular_function	Escherichia	Escherichia coli	0.200047	0	0	0	0	0
+GO:0031418	L-ascorbic acid binding	molecular_function	Escherichia	Escherichia coli	0.0692422	0	0	0	0	0
+GO:0031419	cobalamin binding	molecular_function	Clostridium	Clostridium thermocellum	8.41394	130.346	127.939	169.82	136.309	98.5787
+GO:0031419	cobalamin binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	144.278	89.4375	110.055	81.7648	101.578	70.7379
+GO:0031419	cobalamin binding	molecular_function	Escherichia	Escherichia coli	0.0381088	0	0.0127651	0	0	0.0549114
+GO:0031419	cobalamin binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.84983	1.92543	2.22374	1.59718	0.781131	1.3366
+GO:0031460	glycine betaine transport	biological_process	Escherichia	Escherichia coli	0.328907	0	0.042851	0	0	0
+GO:0031564	transcription antitermination	biological_process	Clostridium	Clostridium thermocellum	12.7564	60.6285	41.9023	224.412	224.981	181.282
+GO:0031564	transcription antitermination	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	73.3022	109.531	86.4041	101.71	134.323	109.123
+GO:0031564	transcription antitermination	biological_process	Escherichia	Escherichia coli	0.0795229	0	0	0	0	0.0241572
+GO:0031669	cellular response to nutrient levels	biological_process	Escherichia	Escherichia coli	0.25614	0	0	0	0	0
+GO:0031956	medium-chain fatty acid-CoA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0767036	0	0	0	0	0.0216994
+GO:0031992	energy transducer activity	molecular_function	Escherichia	Escherichia coli	0.0426293	0	0	0	0	0
+GO:0032026	response to magnesium ion	biological_process	Escherichia	Escherichia coli	0	0	0.244476	0	0	0.175277
+GO:0032049	cardiolipin biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.139359	3.14249	2.90972	4.88365	5.64617	5.83995
+GO:0032049	cardiolipin biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0368206	0	0.0826348	0	0	0.0296224
+GO:0032135	DNA insertion or deletion binding	molecular_function	Escherichia	Escherichia coli	0.315175	0	0	0	0	0
+GO:0032196	transposition	biological_process	Escherichia	Escherichia coli	1.22062	0	0.559229	0	0	0.106039
+GO:0032238	adenosine transport	biological_process	Escherichia	Escherichia coli	0.0219952	0	0	0	0	0.0584364
+GO:0032259	methylation	biological_process	Escherichia	Escherichia coli	0.0764849	0	0	0	0	0
+GO:0032264	IMP salvage	biological_process	Escherichia	Escherichia coli	0.125603	0	0.23311	0	0	0.309904
+GO:0032264	IMP salvage	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.634761	0.307761	0.0564054	0.0984227	0
+GO:0032297	negative regulation of DNA-dependent DNA replication initiation	biological_process	Escherichia	Escherichia coli	0.12276	0	0.227832	0	0	0
+GO:0032324	molybdopterin cofactor biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	85.9615	34.4384	28.4195	35.6175	36.5763	25.4597
+GO:0032324	molybdopterin cofactor biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.045643	0.262912	0.253543	0.326694	0.304774	0.455429
+GO:0032450	maltose alpha-glucosidase activity	molecular_function	Escherichia	Escherichia coli	0.016867	0	0	0	0	0
+GO:0032467	positive regulation of cytokinesis	biological_process	Escherichia	Escherichia coli	0.0424106	0	0	0	0	0
+GO:0032508	DNA duplex unwinding	biological_process	Escherichia	Escherichia coli	0.234704	0	0.0936859	0	0	0.0384186
+GO:0032543	mitochondrial translation	biological_process	Escherichia	Escherichia coli	0.0469554	0	0	0	0	0
+GO:0032549	ribonucleoside binding	molecular_function	Clostridium	Clostridium thermocellum	4.13446	16.721800000000002	9.551	60.1148	58.1994	51.541
+GO:0032549	ribonucleoside binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	30.8268	15.7939	11.9398	13.5998	14.9322	7.92765
+GO:0032549	ribonucleoside binding	molecular_function	Escherichia	Escherichia coli	0.0313279	0	0.0232749	0	0	0.0166869
+GO:0032549	ribonucleoside binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0438688	0.441299	0.490441	0.833547	0.23832	0.189021
+GO:0032775	DNA methylation on adenine	biological_process	Escherichia	Escherichia coli	0.0768494	0	0.071268	0	0	0
+GO:0032781	positive regulation of ATPase activity	biological_process	Escherichia	Escherichia coli	0.0933276	0	0	0	0	0
+GO:0032784	regulation of DNA-templated transcription, elongation	biological_process	Clostridium	Clostridium thermocellum	14.6136	76.1035	52.063	280.642	256.965	244.417
+GO:0032784	regulation of DNA-templated transcription, elongation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	115.488	151.304	113.504	211.533	241.643	188.773
+GO:0032784	regulation of DNA-templated transcription, elongation	biological_process	Escherichia	Escherichia coli	0.351534	0	0	0	0	0
+GO:0032955	regulation of barrier septum assembly	biological_process	Clostridium	Clostridium thermocellum	15.7858	124.745	96.0914	298.916	275.98	215.301
+GO:0032955	regulation of barrier septum assembly	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	41.0953	64.2831	64.2589	61.723	73.4074	44.1752
+GO:0032955	regulation of barrier septum assembly	biological_process	Escherichia	Escherichia coli	0.415453	0	0	0	0	0
+GO:0032973	amino acid export	biological_process	Escherichia	Escherichia coli	0.162035	0	0	0	0	0.215603
+GO:0033094	butane-1,4-diamine:2-oxoglutarate aminotransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	176.201	53.7552	61.3663	40.5953	46.613	27.8041
+GO:0033094	butane-1,4-diamine:2-oxoglutarate aminotransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0567224
+GO:0033212	iron assimilation	biological_process	Escherichia	Escherichia coli	0	0	0.198062	0	0	0
+GO:0033228	cysteine export	biological_process	Escherichia	Escherichia coli	0.090168	0	0.0573753	0	0	0.0861185
+GO:0033362	lysine biosynthetic process via diaminopimelate, diaminopimelate-aminotransferase pathway	biological_process	Clostridium	Clostridium thermocellum	0.112212	6.54863	14.2787	14.7861	20.8913	21.728
+GO:0033362	lysine biosynthetic process via diaminopimelate, diaminopimelate-aminotransferase pathway	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0448896	0.129286	0.499643	0.0459351	0.0400853	0.0298488
+GO:0033384	geranyl diphosphate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.129589	0	0	0	0	0
+GO:0033387	putrescine biosynthetic process from ornithine	biological_process	Escherichia	Escherichia coli	0.0726691	0	0.0220119	0	0	0
+GO:0033388	putrescine biosynthetic process from arginine	biological_process	Clostridium	Clostridium thermocellum	1.78679	13.4693	13.2085	36.5505	39.1243	37.5637
+GO:0033499	galactose catabolic process via UDP-galactose	biological_process	Escherichia	Escherichia coli	0.0545626	0	0	0	0	0
+GO:0033539	fatty acid beta-oxidation using acyl-CoA dehydrogenase	biological_process	Escherichia	Escherichia coli	0.12327	0	0.0611642	0	0	0
+GO:0033543	fatty acid beta-oxidation, unsaturated, even number, reductase/isomerase pathway	biological_process	Escherichia	Escherichia coli	0.039008	0	0.144836	0	0	0
+GO:0033554	cellular response to stress	biological_process	Clostridium	Clostridium thermocellum	3.384	11.554	11.2844	33.3054	26.5787	30.8817
+GO:0033554	cellular response to stress	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	14.3745	14.8853	9.86895	18.6179	26.4482	29.9665
+GO:0033554	cellular response to stress	biological_process	Escherichia	Escherichia coli	0.509097	0	1.91711	0	0	0
+GO:0033567	DNA replication, Okazaki fragment processing	biological_process	Escherichia	Escherichia coli	0.0401017	0	0	0	0	0
+GO:0033592	RNA strand annealing activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.027294
+GO:0033608	formyl-CoA transferase activity	molecular_function	Escherichia	Escherichia coli	0.0441605	0	0	0	0	0
+GO:0033611	oxalate catabolic process	biological_process	Escherichia	Escherichia coli	0.0441605	0	0	0	0	0.0418465
+GO:0033680	ATP-dependent DNA/RNA helicase activity	molecular_function	Escherichia	Escherichia coli	0.0579166	0	0.0179072	0	0	0.0256771
+GO:0033721	aldehyde dehydrogenase (NADP+) activity	molecular_function	Escherichia	Escherichia coli	0.0479276	0	0	0	0	0
+GO:0033726	aldehyde ferredoxin oxidoreductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	209.021	34.6766	39.8562	70.1212	80.2354	39.5824
+GO:0033739	preQ1 synthase activity	molecular_function	Escherichia	Escherichia coli	0.0694853	0	0.129049	0	0	0
+GO:0033743	peptide-methionine (R)-S-oxide reductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.85163	2.10927	1.80651	1.83144	1.68072	1.29517
+GO:0033743	peptide-methionine (R)-S-oxide reductase activity	molecular_function	Escherichia	Escherichia coli	0.36789	0	0.170863	0	0	0
+GO:0033743	peptide-methionine (R)-S-oxide reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.158584	0	0	0.162278	0	0.106039
+GO:0033748	hydrogenase (acceptor) activity	molecular_function	Escherichia	Escherichia coli	0.0312793	0	0.0465498	0	0	0
+GO:0033764	steroid dehydrogenase activity, acting on the CH-OH group of donors, NAD or NADP as acceptor	molecular_function	Escherichia	Escherichia coli	1.43953	0	0	0	0	0
+GO:0033785	heptose 7-phosphate kinase activity	molecular_function	Escherichia	Escherichia coli	0.0189329	0	0.0702306	0	0	0
+GO:0033786	heptose-1-phosphate adenylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0189329	0	0.0702306	0	0	0
+GO:0033794	sarcosine reductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	39.2407	35.7679	37.5771	30.153	31.4085	22.4047
+GO:0033795	betaine reductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	39.2407	35.7679	37.5771	30.153	31.4085	22.4047
+GO:0033817	beta-ketoacyl-acyl-carrier-protein synthase II activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	66.4879	3.17819	4.16665	18.499	28.3962	21.9105
+GO:0033818	beta-ketoacyl-acyl-carrier-protein synthase III activity	molecular_function	Clostridium	Clostridium thermocellum	4.04767	19.5069	7.83488	91.367	62.7221	37.8774
+GO:0033819	lipoyl(octanoyl) transferase activity	molecular_function	Escherichia	Escherichia coli	0.341083	0	0	0	0	0
+GO:0033856	pyridoxine 5'-phosphate synthase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0555582
+GO:0033862	UMP kinase activity	molecular_function	Clostridium	Clostridium thermocellum	11.3218	67.1234	51.461	159.51	193.93	308.74
+GO:0033862	UMP kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	31.9732	40.3057	29.2957	30.9004	30.1003	24.9502
+GO:0033862	UMP kinase activity	molecular_function	Escherichia	Escherichia coli	0.0843837	0	0	0	0	0
+GO:0033862	UMP kinase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0925984	0	0	0.236316	0.289365	0.123082
+GO:0033883	pyridoxal phosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0746134	0	0.138477	0	0	0.0419435
+GO:0033897	ribonuclease T2 activity	molecular_function	Escherichia	Escherichia coli	0.0369908	0	0	0	0	0
+GO:0033905	xylan endo-1,3-beta-xylosidase activity	molecular_function	Clostridium	Clostridium thermocellum	16.3941	19.9949	19.8209	38.1925	25.6185	20.6253
+GO:0033971	hydroxyisourate hydrolase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.246875
+GO:0033990	ectoine synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.395184	0.94332	0	0	0	0.131458
+GO:0034015	L-ribulose-5-phosphate 3-epimerase activity	molecular_function	Escherichia	Escherichia coli	0.0683187	0	0	0	0	0
+GO:0034023	5-(carboxyamino)imidazole ribonucleotide mutase activity	molecular_function	Clostridium	Clostridium thermocellum	2.61281	3.63587	3.39479	26.268	33.4033	33.0155
+GO:0034023	5-(carboxyamino)imidazole ribonucleotide mutase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2.53017	1.38868	0.939701	2.2926	2.8344	2.40446
+GO:0034023	5-(carboxyamino)imidazole ribonucleotide mutase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.224229	0.322981	0.312136	0.114751	0.175186	0.223753
+GO:0034028	5-(carboxyamino)imidazole ribonucleotide synthase activity	molecular_function	Escherichia	Escherichia coli	0.0529585	0	0.0982867	0	0	0
+GO:0034038	deoxyhypusine synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.125603	0	0	0.28919	0	0.0417172
+GO:0034039	8-oxo-7,8-dihydroguanine DNA N-glycosylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0.189038	0.0550169	0.0819791
+GO:0034040	lipid-transporting ATPase activity	molecular_function	Escherichia	Escherichia coli	0.150977	0	0	0	0	0.040456
+GO:0034194	D-galactonate catabolic process	biological_process	Escherichia	Escherichia coli	0.216379	0	0	0	0	0
+GO:0034198	cellular response to amino acid starvation	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0362842
+GO:0034200	D,D-heptose 1,7-bisphosphate phosphatase activity	molecular_function	Escherichia	Escherichia coli	0.114108	0	0.21227	0	0	0
+GO:0034213	quinolinate catabolic process	biological_process	Escherichia	Escherichia coli	0.0653293	0	0	0	0	0
+GO:0034219	carbohydrate transmembrane transport	biological_process	Escherichia	Escherichia coli	0.699835	0	0.245965	0	0	0.108206
+GO:0034220	ion transmembrane transport	biological_process	Escherichia	Escherichia coli	0.466103	0	0	0	0	0.102676
+GO:0034224	cellular response to zinc ion starvation	biological_process	Escherichia	Escherichia coli	0.0484137	0	0	0	0	0
+GO:0034227	tRNA thio-modification	biological_process	Clostridium	Clostridium thermocellum	1.60429	7.88873	6.48377	27.1068	28.7997	21.395
+GO:0034227	tRNA thio-modification	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.427095	0.271734	0.79518	0.582508	0.353779	0.573821
+GO:0034257	nicotinamide riboside transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	0.0875918	4.78624	2.8431	6.88935	7.03481	9.66661
+GO:0034567	chromate reductase activity	molecular_function	Escherichia	Escherichia coli	0.165389	0	0	0	0	0
+GO:0034599	cellular response to oxidative stress	biological_process	Escherichia	Escherichia coli	0.0685131	0	0	0	0	0
+GO:0034618	arginine binding	molecular_function	Clostridium	Clostridium thermocellum	1.71324	12.8289	13.414	29.8852	32.2591	32.9507
+GO:0034618	arginine binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	58.4295	48.081	48.318600000000004	16.422	24.8708	34.0323
+GO:0034618	arginine binding	molecular_function	Escherichia	Escherichia coli	0.234947	0	0.154985	0	0	0
+GO:0034628	'de novo' NAD biosynthetic process from aspartate	biological_process	Escherichia	Escherichia coli	0.0653293	0	0	0	0	0
+GO:0034639	L-amino acid efflux transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.162035	0	0	0	0	0.215603
+GO:0034661	ncRNA catabolic process	biological_process	Escherichia	Escherichia coli	0.0135617	0	0	0	0	0.0352171
+GO:0034700	allulose 6-phosphate 3-epimerase activity	molecular_function	Escherichia	Escherichia coli	0.0890257	0	0	0	0	0
+GO:0034775	glutathione transmembrane transport	biological_process	Escherichia	Escherichia coli	0.090168	0	0.0573753	0	0	0
+GO:0034979	NAD-dependent protein deacetylase activity	molecular_function	Clostridium	Clostridium thermocellum	6.95135	45.9196	41.1006	72.7585	83.0025	129.835
+GO:0034979	NAD-dependent protein deacetylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	39.0074	73.6862	90.1666	38.8953	49.7602	41.129
+GO:0035312	5'-3' exodeoxyribonuclease activity	molecular_function	Escherichia	Escherichia coli	0	0	0.116555	0	0	0.0883498
+GO:0035344	hypoxanthine transport	biological_process	Escherichia	Escherichia coli	0.0803249	0	0	0	0	0.0530681
+GO:0035350	FAD transmembrane transport	biological_process	Escherichia	Escherichia coli	0.0959524	0	0	0	0	0.0780984
+GO:0035368	selenocysteine insertion sequence binding	molecular_function	Escherichia	Escherichia coli	0.0286545	0	0	0	0	0
+GO:0035429	gluconate transmembrane transport	biological_process	Escherichia	Escherichia coli	0.285791	0	0	0	0	0.164637
+GO:0035435	phosphate ion transmembrane transport	biological_process	Clostridium	Clostridium thermocellum	0.234388	1.02869	0.931852	0.376733	0.179353	0.534271
+GO:0035435	phosphate ion transmembrane transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	64.3583	11.8514	9.56327	18.2278	19.6262	11.0557
+GO:0035435	phosphate ion transmembrane transport	biological_process	Escherichia	Escherichia coli	0.247148	0	0.446147	0	0	0
+GO:0035435	phosphate ion transmembrane transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.265573	0.128418	0.10622	0.0618316	0
+GO:0035438	cyclic-di-GMP binding	molecular_function	Clostridium	Clostridium thermocellum	182.668	464.075	616.926	1359.23	1402.17	1913.17
+GO:0035438	cyclic-di-GMP binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	17.7769	64.669	52.0921	28.2876	34.1113	34.4956
+GO:0035438	cyclic-di-GMP binding	molecular_function	Escherichia	Escherichia coli	0.0393726	0	0	0	0	0.24639
+GO:0035442	dipeptide transmembrane transport	biological_process	Escherichia	Escherichia coli	0.217035	0	0	0	0	0.0780984
+GO:0035444	nickel cation transmembrane transport	biological_process	Escherichia	Escherichia coli	0.0848698	0	0.0220119	0	0	0
+GO:0035527	3-hydroxypropionate dehydrogenase (NADP+) activity	molecular_function	Escherichia	Escherichia coli	0	0	0.151106	0	0	0
+GO:0035556	intracellular signal transduction	biological_process	Escherichia	Escherichia coli	0	0	0.442223	0	0	0
+GO:0035725	sodium ion transmembrane transport	biological_process	Escherichia	Escherichia coli	0.38189	0	0.0880025	0	0	0.212208
+GO:0035998	7,8-dihydroneopterin 3'-triphosphate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.75064	26.1507	22.8737	59.1885	55.363	59.7911
+GO:0035998	7,8-dihydroneopterin 3'-triphosphate biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	21.0869	27.9668	16.4539	22.0763	24.8876	25.081
+GO:0035999	tetrahydrofolate interconversion	biological_process	Clostridium	Clostridium thermocellum	9.03581	91.7583	67.1625	285.092	292.207	268.813
+GO:0035999	tetrahydrofolate interconversion	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	149.569	51.323	89.7913	36.9756	52.1917	47.0604
+GO:0035999	tetrahydrofolate interconversion	biological_process	Escherichia	Escherichia coli	0.130318	0	0.365136	0	0	0
+GO:0036009	protein-glutamine N-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.69703	8.97286	6.41728	11.9222	13.9485	13.8792
+GO:0036009	protein-glutamine N-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0620482	0	0	0	0	0
+GO:0036094	small molecule binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.912593	1.12829	1.69573	1.86282	1.3843	2.54177
+GO:0036104	Kdo2-lipid A biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0942025	0	0	0	0	0
+GO:0036108	4-amino-4-deoxy-alpha-L-arabinopyranosyl undecaprenyl phosphate biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0872827
+GO:0036131	prostaglandin D2 11-ketoreductase activity	molecular_function	Escherichia	Escherichia coli	0.143394	0	0	0	0	0
+GO:0036355	2-iminoacetate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	0.235895	3.02095	6.27362	2.49507	2.07163	1.83132
+GO:0036355	2-iminoacetate synthase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0458281	0	0	0
+GO:0036356	cyclic 2,3-diphosphoglycerate synthetase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.156226	0.374836	0.253588	0.199235	0.174296	0.363424
+GO:0036361	racemase activity, acting on amino acids and derivatives	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	53.023	40.5321	36.5296	34.0965	36.1008	39.929
+GO:0036361	racemase activity, acting on amino acids and derivatives	molecular_function	Escherichia	Escherichia coli	0.0447681	0	0	0	0	0
+GO:0036374	glutathione hydrolase activity	molecular_function	Escherichia	Escherichia coli	0.0455458	0	0	0	0	0
+GO:0036380	UDP-N-acetylglucosamine-undecaprenyl-phosphate N-acetylglucosaminephosphotransferase activity	molecular_function	Escherichia	Escherichia coli	0.0765578	0	0.0472715	0	0	0
+GO:0036381	pyridoxal 5'-phosphate synthase (glutamine hydrolysing) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.996102	1.67288	1.284	2.39159	0.79411	2.81018
+GO:0036439	glycerol-3-phosphate dehydrogenase [NADP+] activity	molecular_function	Clostridium	Clostridium thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0036439	glycerol-3-phosphate dehydrogenase [NADP+] activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0040008	regulation of growth	biological_process	Escherichia	Escherichia coli	0.0489484	0	0.0452868	0	0	0
+GO:0042026	protein refolding	biological_process	Clostridium	Clostridium thermocellum	4.49499	69.5112	74.5146	100.37	105.77	104.092
+GO:0042026	protein refolding	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	50.2588	66.8372	80.2765	34.749	48.1546	40.7722
+GO:0042026	protein refolding	biological_process	Escherichia	Escherichia coli	0.0325674	0	0	0	0	0.0432048
+GO:0042126	nitrate metabolic process	biological_process	Escherichia	Escherichia coli	0.033734	0	0	0	0	0
+GO:0042128	nitrate assimilation	biological_process	Escherichia	Escherichia coli	0.887876	0	0.482954	0	0	0
+GO:0042132	fructose 1,6-bisphosphate 1-phosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0870328	0	0	0	0	0
+GO:0042132	fructose 1,6-bisphosphate 1-phosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0701415	0.06735	0.260354	0.0717752	0.156587	0
+GO:0042158	lipoprotein biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.97208	5.6224	2.38586	18.0107	13.9535	12.5643
+GO:0042158	lipoprotein biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	45.9846	64.7185	78.0134	26.6446	31.0394	36.6187
+GO:0042158	lipoprotein biosynthetic process	biological_process	Escherichia	Escherichia coli	0.101931	0	0	0	0	0
+GO:0042168	heme metabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.0861531	0	0	0
+GO:0042173	regulation of sporulation resulting in formation of a cellular spore	biological_process	Clostridium	Clostridium thermocellum	4.93358	18.9337	16.2534	63.1571	73.0955	145.364
+GO:0042182	ketone catabolic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0350877
+GO:0042242	cobyrinic acid a,c-diamide synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.14247	0.234488	0.151106	0.208287	0.127222	0.0271
+GO:0042244	spore wall assembly	biological_process	Clostridium	Clostridium thermocellum	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0042245	RNA repair	biological_process	Escherichia	Escherichia coli	0.112552	0	0.33505	0	0	0
+GO:0042245	RNA repair	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0042254	ribosome biogenesis	biological_process	Clostridium	Clostridium thermocellum	15.3837	60.1888	32.9736	405.225	311.67	206.171
+GO:0042254	ribosome biogenesis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	73.1743	80.7309	66.0647	89.0777	108.378	94.9032
+GO:0042254	ribosome biogenesis	biological_process	Escherichia	Escherichia coli	0.0475144	0	0	0	0	0.189668
+GO:0042254	ribosome biogenesis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.93103	8.44153	2.0946	4.04985	1.97499	4.878
+GO:0042256	mature ribosome assembly	biological_process	Clostridium	Clostridium thermocellum	1.39243	22.0746	15.9619	51.3402	47.5091	73.1241
+GO:0042256	mature ribosome assembly	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	4.65391	2.99453	3.27865	1.59564	2.6893	3.31622
+GO:0042256	mature ribosome assembly	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.260895	0.430999	0.334377	0.436058
+GO:0042274	ribosomal small subunit biogenesis	biological_process	Clostridium	Clostridium thermocellum	6.82691	38.931	27.5294	102.83	100.473	77.8864
+GO:0042274	ribosomal small subunit biogenesis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	28.1351	46.0887	41.1475	31.0127	35.2509	32.5146
+GO:0042277	peptide binding	molecular_function	Escherichia	Escherichia coli	0.066666	0	0	0	0	0
+GO:0042278	purine nucleoside metabolic process	biological_process	Escherichia	Escherichia coli	0.0852829	0	0	0	0	0
+GO:0042279	nitrite reductase (cytochrome, ammonia-forming) activity	molecular_function	Escherichia	Escherichia coli	0.188502	0	0.139875	0	0	0
+GO:0042286	glutamate-1-semialdehyde 2,1-aminomutase activity	molecular_function	Clostridium	Clostridium thermocellum	0.235652	6.17217	6.24254	13.548	10.6005	11.2315
+GO:0042286	glutamate-1-semialdehyde 2,1-aminomutase activity	molecular_function	Escherichia	Escherichia coli	0.124024	0	0.0634195	0	0	0
+GO:0042286	glutamate-1-semialdehyde 2,1-aminomutase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.109174	0.0838725	0.121562	0.0893584	0.155979	0.232452
+GO:0042301	phosphate ion binding	molecular_function	Escherichia	Escherichia coli	0.109077	0	0.202663	0	0	0
+GO:0042355	L-fucose catabolic process	biological_process	Escherichia	Escherichia coli	0.0539064	0	0.0554808	0	0	0
+GO:0042398	cellular modified amino acid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0496775	0	0	0	0	0
+GO:0042450	arginine biosynthetic process via ornithine	biological_process	Clostridium	Clostridium thermocellum	1.62409	2.70049	1.06591	12.8661	7.55014	6.66527
+GO:0042450	arginine biosynthetic process via ornithine	biological_process	Escherichia	Escherichia coli	0.0416328	0	0.079748	0	0	0
+GO:0042450	arginine biosynthetic process via ornithine	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.193217	0.185668	0.179343	0.197842	0.120864	0.0257418
+GO:0042493	response to drug	biological_process	Escherichia	Escherichia coli	0.678982	0	0.178802	0	0	0
+GO:0042542	response to hydrogen peroxide	biological_process	Escherichia	Escherichia coli	0.198613	0	0.071674	0	0	0
+GO:0042545	cell wall modification	biological_process	Clostridium	Clostridium thermocellum	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0042558	pteridine-containing compound metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.21198	0.0857394	0.124268	0.0228308	0.0398466	0.0594065
+GO:0042558	pteridine-containing compound metabolic process	biological_process	Escherichia	Escherichia coli	0.0137561	0	0.0127651	0	0	0.0549114
+GO:0042558	pteridine-containing compound metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	7.51892	2.33312	7.68946	5.3912	4.69493	6.11001
+GO:0042577	lipid phosphatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.244476	0	0	0.175277
+GO:0042586	peptide deformylase activity	molecular_function	Clostridium	Clostridium thermocellum	3.26197	24.2374	17.2553	68.291	73.0949	91.074700000000007
+GO:0042586	peptide deformylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	6.56953	11.5923	8.82682	10.5893	13.7341	15.6364
+GO:0042586	peptide deformylase activity	molecular_function	Escherichia	Escherichia coli	0.197835	0	0.250611	0	0	0.513671
+GO:0042602	riboflavin reductase (NADPH) activity	molecular_function	Escherichia	Escherichia coli	0.086012	0	0.23753	0	0	0
+GO:0042623	ATPase activity, coupled	molecular_function	Escherichia	Escherichia coli	0.0375984	0	0.0348672	0	0	0
+GO:0042626	ATPase activity, coupled to transmembrane movement of substances	molecular_function	Clostridium	Clostridium thermocellum	15.7479	83.9402	64.7572	181.149	178.438	211.38
+GO:0042626	ATPase activity, coupled to transmembrane movement of substances	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	73.818	66.7374	77.9893	51.3728	54.2119	47.4494
+GO:0042626	ATPase activity, coupled to transmembrane movement of substances	molecular_function	Escherichia	Escherichia coli	0.275608	0	0.112991	0	0	0
+GO:0042626	ATPase activity, coupled to transmembrane movement of substances	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.368182	0	0.136672	0.0751824	0	0.293993
+GO:0042732	D-xylose metabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.0769063	0	0	0
+GO:0042742	defense response to bacterium	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0042744	hydrogen peroxide catabolic process	biological_process	Escherichia	Escherichia coli	0.0460319	0	0	0	0	0
+GO:0042773	ATP synthesis coupled electron transport	biological_process	Clostridium	Clostridium thermocellum	6.02553	37.0278	21.7994	232.123	203.359	171.832
+GO:0042773	ATP synthesis coupled electron transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	95.862	59.029	46.6078	82.6894	92.291	53.6019
+GO:0042773	ATP synthesis coupled electron transport	biological_process	Escherichia	Escherichia coli	0.169156	0	0.0653591	0	0	0.106557
+GO:0042773	ATP synthesis coupled electron transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.438265	0	0	0	0
+GO:0042777	plasma membrane ATP synthesis coupled proton transport	biological_process	Clostridium	Clostridium thermocellum	39.0864	407.387	328.627	946.847	865.463	694.314
+GO:0042777	plasma membrane ATP synthesis coupled proton transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	167.471	117.226	92.5601	112.581	148.865	126.627
+GO:0042777	plasma membrane ATP synthesis coupled proton transport	biological_process	Escherichia	Escherichia coli	0.280274	0	0.376683	0	0	0
+GO:0042777	plasma membrane ATP synthesis coupled proton transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.76062	0.488906	1.63768	1.46582	1.1552	1.68208
+GO:0042781	3'-tRNA processing endoribonuclease activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0942025	0.241209	0.524361	0.321024	0	0.208812
+GO:0042802	identical protein binding	molecular_function	Clostridium	Clostridium thermocellum	19.4642	29.2946	29.3989	79.9306	72.7924	81.907
+GO:0042802	identical protein binding	molecular_function	Escherichia	Escherichia coli	1.71166	0	1.18499	0	0	0.583846
+GO:0042802	identical protein binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.112917	0.216846	0.208346	0.461987	0.478897	0.651629
+GO:0042803	protein homodimerization activity	molecular_function	Escherichia	Escherichia coli	0.0323973	0	0	0	0	0.112378
+GO:0042803	protein homodimerization activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0476602	0.184127	1.33312	0.689474	0.256333	0.636106
+GO:0042819	vitamin B6 biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.996102	1.67288	1.284	2.39159	0.79411	2.81018
+GO:0042823	pyridoxal phosphate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.806992	4.3834	5.1142	9.48325	7.42947	10.5914
+GO:0042823	pyridoxal phosphate biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	4.07375	7.12706	5.74208	2.3601	3.26514	4.11351
+GO:0042823	pyridoxal phosphate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.055875	0	0	0	0	0
+GO:0042823	pyridoxal phosphate biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.996102	1.67288	1.284	2.39159	0.79411	2.81018
+GO:0042834	peptidoglycan binding	molecular_function	Escherichia	Escherichia coli	0.0633607	0	0	0	0	0
+GO:0042838	D-glucarate catabolic process	biological_process	Escherichia	Escherichia coli	0.217886	0	0	0	0	0.129873
+GO:0042840	D-glucuronate catabolic process	biological_process	Escherichia	Escherichia coli	1.49497	0	0	0	0	0
+GO:0042843	D-xylose catabolic process	biological_process	Escherichia	Escherichia coli	0.0744919	0	0	0	0	0.0247716
+GO:0042867	pyruvate catabolic process	biological_process	Escherichia	Escherichia coli	0.046445	0	0	0	0	0
+GO:0042882	L-arabinose transport	biological_process	Clostridium	Clostridium thermocellum	0.899031	2.69643	3.67495	3.0391	3.53656	4.19044
+GO:0042882	L-arabinose transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.518649	1.61411	2.1228	0.219578	0.28739	0.499668
+GO:0042882	L-arabinose transport	biological_process	Escherichia	Escherichia coli	0.26331	0	0.262158	0	0	0.109467
+GO:0042884	microcin transport	biological_process	Escherichia	Escherichia coli	0.0769709	0	0.214075	0	0	0
+GO:0042888	molybdenum ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.106914	0	0	0	0	0
+GO:0042906	xanthine transport	biological_process	Escherichia	Escherichia coli	0.0374282	0	0.0694638	0	0	0
+GO:0042907	xanthine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0374282	0	0.0694638	0	0	0
+GO:0042912	colicin transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0	0	0.117682	0	0	0
+GO:0042914	colicin transport	biological_process	Escherichia	Escherichia coli	0.0426293	0	0	0	0	0
+GO:0042925	benzoate transporter activity	molecular_function	Escherichia	Escherichia coli	0.0475144	0	0	0	0	0
+GO:0042931	enterobactin transporter activity	molecular_function	Escherichia	Escherichia coli	0.0882966	0	0.0819582	0	0	0.0587598
+GO:0042936	dipeptide transporter activity	molecular_function	Escherichia	Escherichia coli	0.115323	0	0.253047	0	0	0
+GO:0042937	tripeptide transporter activity	molecular_function	Escherichia	Escherichia coli	0.0781618	0	0.218585	0	0	0
+GO:0042938	dipeptide transport	biological_process	Escherichia	Escherichia coli	0.0402232	0	0	0	0	0
+GO:0042939	tripeptide transport	biological_process	Escherichia	Escherichia coli	0.0347305	0	0	0	0	0
+GO:0042942	D-serine transport	biological_process	Escherichia	Escherichia coli	0.098796	0	0	0	0	0
+GO:0042945	D-serine transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.098796	0	0	0	0	0
+GO:0042953	lipoprotein transport	biological_process	Escherichia	Escherichia coli	0.600091	0	0	0	0	0
+GO:0042954	lipoprotein transporter activity	molecular_function	Escherichia	Escherichia coli	0.600091	0	0	0	0	0
+GO:0042958	maltodextrin transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0408065	0	0	0	0	0
+GO:0042972	licheninase activity	molecular_function	Clostridium	Clostridium thermocellum	1.13682	8.18688	5.5922	7.09522	7.08042	10.4741
+GO:0043022	ribosome binding	molecular_function	Clostridium	Clostridium thermocellum	27.5289	152.981	146.049	415.092	385.992	382.287
+GO:0043022	ribosome binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	118.63	120.893	91.2068	117.719	108.775	96.5542
+GO:0043022	ribosome binding	molecular_function	Escherichia	Escherichia coli	0.108202	0	0.681061	0	0	0
+GO:0043022	ribosome binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.299645	1.15242	0.260895	1.35169	0.69126	1.63324
+GO:0043023	ribosomal large subunit binding	molecular_function	Clostridium	Clostridium thermocellum	2.44149	14.764	9.49006	44.2985	44.8502	38.8289
+GO:0043023	ribosomal large subunit binding	molecular_function	Escherichia	Escherichia coli	1.15634	0	0	0	0	0
+GO:0043024	ribosomal small subunit binding	molecular_function	Escherichia	Escherichia coli	0.0375984	0	0.0348672	0	0	0
+GO:0043039	tRNA aminoacylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	27.0738	37.966	41.1948	36.6099	54.6363	39.6919
+GO:0043086	negative regulation of catalytic activity	biological_process	Escherichia	Escherichia coli	0.180142	0	0.072937	0	0	0
+GO:0043093	FtsZ-dependent cytokinesis	biological_process	Clostridium	Clostridium thermocellum	84.3489	514.78	368.702	1529.03	1554.37	1943.26
+GO:0043093	FtsZ-dependent cytokinesis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	156.589	152.124	188.689	119.405	144.955	121.273
+GO:0043093	FtsZ-dependent cytokinesis	biological_process	Escherichia	Escherichia coli	0.32689	0	0.0662161	0	0	0.0949793
+GO:0043093	FtsZ-dependent cytokinesis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	7.95292	10.0726	7.46988	3.24533	2.46094	4.63953
+GO:0043094	cellular metabolic compound salvage	biological_process	Clostridium	Clostridium thermocellum	0.81263	4.4486	5.05268	10.4408	12.9069	10.716
+GO:0043094	cellular metabolic compound salvage	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	14.6687	10.4423	9.26466	12.7706	15.3251	11.6857
+GO:0043094	cellular metabolic compound salvage	biological_process	Escherichia	Escherichia coli	0.180458	0	0	0	0	0.060215
+GO:0043103	hypoxanthine salvage	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.634761	0.307761	0.0564054	0.0984227	0
+GO:0043115	precorrin-2 dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0182523	12.9279	7.92212	23.4066	22.693	32.3801
+GO:0043115	precorrin-2 dehydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.38579	2.13658	1.4185	1.57299	1.49333	1.6443
+GO:0043136	glycerol-3-phosphatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.180065	0	0	0.193645
+GO:0043137	DNA replication, removal of RNA primer	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.232128	0	0.32251	0.475343	0.103718	0.0772576
+GO:0043140	ATP-dependent 3'-5' DNA helicase activity	molecular_function	Escherichia	Escherichia coli	0.136953	0	0.0470459	0	0	0.0384186
+GO:0043141	ATP-dependent 5'-3' DNA helicase activity	molecular_function	Clostridium	Clostridium thermocellum	1.90991	12.3852	7.99226	25.3602	28.2005	32.8534
+GO:0043142	single-stranded DNA-dependent ATPase activity	molecular_function	Escherichia	Escherichia coli	0.0289947	0	0	0	0	0
+GO:0043150	DNA synthesis involved in double-strand break repair via homologous recombination	biological_process	Escherichia	Escherichia coli	0.0735927	0	0	0	0	0
+GO:0043164	Gram-negative-bacterium-type cell wall biogenesis	biological_process	Escherichia	Escherichia coli	0.0143151	0	0	0	0	0
+GO:0043165	Gram-negative-bacterium-type cell outer membrane assembly	biological_process	Escherichia	Escherichia coli	0.350149	0	0.694818	0	0	0
+GO:0043169	cation binding	molecular_function	Clostridium	Clostridium thermocellum	1.36577	4.09104	3.84514	25.4212	28.2393	28.5431
+GO:0043169	cation binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	71.8698	13.8513	20.8748	10.7321	12.5328	16.2434
+GO:0043169	cation binding	molecular_function	Escherichia	Escherichia coli	0.144876	0	0.498696	0	0	0
+GO:0043171	peptide catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	3.49947	3.40423	4.12114	2.4798	3.00514	1.70061
+GO:0043213	bacteriocin transport	biological_process	Escherichia	Escherichia coli	0.0230889	0	0.654358	0	0	0
+GO:0043215	daunorubicin transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.391685	0.32851	0.1772	0	0.225143
+GO:0043266	regulation of potassium ion transport	biological_process	Escherichia	Escherichia coli	0.208748	0	0.176185	0	0	0.0427844
+GO:0043295	glutathione binding	molecular_function	Escherichia	Escherichia coli	0.0403933	0	0.0750119	0	0	0
+GO:0043335	protein unfolding	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0547174
+GO:0043335	protein unfolding	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.828574	2.49783	0.874477	1.07929	0.741198	1.43213
+GO:0043365	[formate-C-acetyltransferase]-activating enzyme activity	molecular_function	Clostridium	Clostridium thermocellum	19.3677	128.33	125.145	326.89	276.162	251.047
+GO:0043365	[formate-C-acetyltransferase]-activating enzyme activity	molecular_function	Escherichia	Escherichia coli	0.1973	0	0.120299	0	0	0
+GO:0043419	urea catabolic process	biological_process	Clostridium	Clostridium thermocellum	0.0309634	0.628694	1.87584	1.02724	1.13578	2.2221
+GO:0043433	negative regulation of sequence-specific DNA binding transcription factor activity	biological_process	Escherichia	Escherichia coli	0.0888556	0	0.0854314	0	0	0.0304632
+GO:0043462	regulation of ATPase activity	biological_process	Escherichia	Escherichia coli	0	0	0.835325	0	0	0
+GO:0043470	regulation of carbohydrate catabolic process	biological_process	Escherichia	Escherichia coli	0.068659	0	0	0	0	0
+GO:0043488	regulation of mRNA stability	biological_process	Escherichia	Escherichia coli	0.16534	0	0	0	0	0
+GO:0043492	ATPase activity, coupled to movement of substances	molecular_function	Escherichia	Escherichia coli	0.0432126	0	0.214075	0	0	0
+GO:0043531	ADP binding	molecular_function	Escherichia	Escherichia coli	0.0324945	0	0	0	0	0.0418465
+GO:0043546	molybdopterin cofactor binding	molecular_function	Escherichia	Escherichia coli	0.128252	0	0	0	0	0.0230576
+GO:0043565	sequence-specific DNA binding	molecular_function	Clostridium	Clostridium thermocellum	16.3948	223.15	153.314	270.899	253.281	279.903
+GO:0043565	sequence-specific DNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	24.3213	16.6139	14.0454	23.2988	30.4672	32.9608
+GO:0043565	sequence-specific DNA binding	molecular_function	Escherichia	Escherichia coli	4.04643	0	3.42208	0	0	0.861831
+GO:0043565	sequence-specific DNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.65093	8.86467	3.05429	4.25921	1.93126	5.45939
+GO:0043571	maintenance of CRISPR repeat elements	biological_process	Clostridium	Clostridium thermocellum	8.10355	3.93972	1.40096	17.8139	13.038	20.0466
+GO:0043571	maintenance of CRISPR repeat elements	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	5.5248	2.45653	1.18021	1.52713	3.02595	2.5506
+GO:0043571	maintenance of CRISPR repeat elements	biological_process	Escherichia	Escherichia coli	0.0633364	0	0.374338	0	0	0
+GO:0043571	maintenance of CRISPR repeat elements	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.442625	0.479618	0.358009	0.029098	0.745387	0.151152
+GO:0043621	protein self-association	molecular_function	Escherichia	Escherichia coli	0.0255679	0	0	0	0	0
+GO:0043687	post-translational protein modification	biological_process	Escherichia	Escherichia coli	0.0500177	0	0	0	0	0
+GO:0043708	cell adhesion involved in biofilm formation	biological_process	Escherichia	Escherichia coli	0.0270747	0	0.0635097	0	0	0.0755436
+GO:0043709	cell adhesion involved in single-species biofilm formation	biological_process	Escherichia	Escherichia coli	0.237767	0	0.0414076	0	0	0.251952
+GO:0043711	pilus organization	biological_process	Escherichia	Escherichia coli	0.912131	0	0.704742	0	0	0.104067
+GO:0043714	(R)-citramalate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0362373	0.139181	0.0672536	0.222513	0	0.192837
+GO:0043726	5-amino-6-(5-phosphoribitylamino)uracil phosphatase activity	molecular_function	Escherichia	Escherichia coli	0.114885	0	0.131891	0	0	0
+GO:0043737	deoxyribonuclease V activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.41664	5.77819	4.71772	5.81506	8.1438	8.24891
+GO:0043740	GTP cyclohydrolase IIa activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.526596	0.388931	0.751788	0.828871	0.469695	2.42383
+GO:0043752	adenosylcobinamide kinase activity	molecular_function	Clostridium	Clostridium thermocellum	0.176107	3.3816	2.72149	10.0231	7.27764	13.1028
+GO:0043755	alpha-ribazole phosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	0.550997	2.53531	1.5333	6.70068	5.21243	4.3977
+GO:0043761	archaetidylserine synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.22575	1.77486	1.71368	1.3061	1.02104	1.75351
+GO:0043765	T/G mismatch-specific endonuclease activity	molecular_function	Escherichia	Escherichia coli	0.150029	0	0	0	0	0
+GO:0043766	Sep-tRNA:Cys-tRNA synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.320984	0.664072	0.412452	0.379046	0.154329	0.262915
+GO:0043768	S-ribosylhomocysteine lyase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.492967	0	0	0
+GO:0043772	acyl-phosphate glycerol-3-phosphate acyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.9589	11.5427	11.783	46.3819	56.3684	42.4494
+GO:0043772	acyl-phosphate glycerol-3-phosphate acyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	299.256	99.4498	85.1809	76.2499	85.699	83.538
+GO:0043772	acyl-phosphate glycerol-3-phosphate acyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.103876	0	0	0	0	0
+GO:0043773	coenzyme F420-0 gamma-glutamyl ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0043781	cobalt-factor II C20-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.177006	0.170032	0	0.226492	0.513556	0.471145
+GO:0043801	hexulose-6-phosphate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0453757	0.172926	0.0842136	0.742945	0.162121	0.332153
+GO:0043805	indolepyruvate ferredoxin oxidoreductase activity	molecular_function	Clostridium	Clostridium thermocellum	2.93977	15.4651	10.6259	35.8904	33.2201	36.3226
+GO:0043805	indolepyruvate ferredoxin oxidoreductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	134.735	51.7516	89.4588	11.298400000000001	20.3181	42.559
+GO:0043805	indolepyruvate ferredoxin oxidoreductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.193801	0.211665	1.02649	1.18665	0.174708	0.591543
+GO:0043807	3-methyl-2-oxobutanoate dehydrogenase (ferredoxin) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	108.699	61.6366	47.053	58.4475	66.6334	93.9611
+GO:0043807	3-methyl-2-oxobutanoate dehydrogenase (ferredoxin) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0541494	0.156077	0.652057	0.663609	0.313477	0
+GO:0043814	phospholactate guanylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.465325	0	0.172802	0.238231	0	0
+GO:0043815	phosphoribosylglycinamide formyltransferase 2 activity	molecular_function	Escherichia	Escherichia coli	0	0	0.26297	0	0	0.124181
+GO:0043817	phosphosulfolactate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.232565	0.595509	0.863065	1.54662	0.415307	0.670579
+GO:0043821	propionyl-CoA:succinate CoA-transferase activity	molecular_function	Escherichia	Escherichia coli	0.0623156	0	0	0	0	0.0829169
+GO:0043825	succinylornithine transaminase activity	molecular_function	Escherichia	Escherichia coli	0.0680757	0	0	0	0	0
+GO:0043838	phosphatidylethanolamine:Kdo2-lipid A phosphoethanolamine transferase activity	molecular_function	Escherichia	Escherichia coli	0.0630447	0	0	0	0	0
+GO:0043884	CO-methylating acetyl-CoA synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.039421200000000003	0	0	0	0.0704043	0.0524537
+GO:0043887	melibiose:sodium symporter activity	molecular_function	Escherichia	Escherichia coli	0.142252	0	0.0880025	0	0	0.212208
+GO:0043917	ribose 1,5-bisphosphate isomerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.222333	0.573012	0.41146	0.532295	0.266599	0.446632
+GO:0043934	sporulation	biological_process	Clostridium	Clostridium thermocellum	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0043937	regulation of sporulation	biological_process	Clostridium	Clostridium thermocellum	0.816179	4.93041	4.15096	24.8279	21.9791	19.7016
+GO:0043952	protein transport by the Sec complex	biological_process	Clostridium	Clostridium thermocellum	13.7304	31.2207	19.5836	185.679	124.807	93.6323
+GO:0043952	protein transport by the Sec complex	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	81.4106	70.5303	67.6728	60.1239	70.9404	61.7074
+GO:0043952	protein transport by the Sec complex	biological_process	Escherichia	Escherichia coli	0.111458	0	0.283087	0	0	0.0273587
+GO:0043953	protein transport by the Tat complex	biological_process	Escherichia	Escherichia coli	0.621406	0	0	0	0	0
+GO:0043957	acryloyl-CoA reductase (NADP+) activity	molecular_function	Escherichia	Escherichia coli	0.117777	0	0.21845	0	0	0
+GO:0044010	single-species biofilm formation	biological_process	Escherichia	Escherichia coli	0.214726	0	0.526166	0	0	1.27302
+GO:0044036	cell wall macromolecule metabolic process	biological_process	Escherichia	Escherichia coli	0.0143151	0	0	0	0	0
+GO:0044038	cell wall macromolecule biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0765578	0	0.0472715	0	0	0
+GO:0044092	negative regulation of molecular function	biological_process	Escherichia	Escherichia coli	0.168767	0	0	0	0	0
+GO:0044179	hemolysis in other organism	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0424286
+GO:0044183	protein binding involved in protein folding	molecular_function	Escherichia	Escherichia coli	0.702582	0	0.704742	0	0	0
+GO:0044205	'de novo' UMP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	4.99385	32.0568	27.8071	93.7942	102.431	103.234
+GO:0044205	'de novo' UMP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	11.9763	7.93176	8.68739	2.85556	3.98222	3.30685
+GO:0044205	'de novo' UMP biosynthetic process	biological_process	Escherichia	Escherichia coli	0.234145	0	0.0147047	0	0	0
+GO:0044205	'de novo' UMP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.28852	4.17673	2.82659	2.96541	2.36777	3.1826
+GO:0044206	UMP salvage	biological_process	Clostridium	Clostridium thermocellum	10.1241	63.2315	62.446	131.224	128.121	141.808
+GO:0044206	UMP salvage	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	24.2382	38.2105	32.2957	22.7568	21.5793	23.6577
+GO:0044206	UMP salvage	biological_process	Escherichia	Escherichia coli	0.0792312	0	0	0	0	0.105683
+GO:0044206	UMP salvage	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0975079	0	0.179027	0.149818	0.130738	0
+GO:0044208	'de novo' AMP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	3.47798	25.0905	23.5623	91.833	104.184	82.8417
+GO:0044208	'de novo' AMP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	33.6181	21.2865	17.5166	22.9178	27.6806	22.5992
+GO:0044208	'de novo' AMP biosynthetic process	biological_process	Escherichia	Escherichia coli	0.103268	0	0	0	0	0
+GO:0044208	'de novo' AMP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.288538	0.457168	1.33862	1.72706	0.84025	1.21901
+GO:0044209	AMP salvage	biological_process	Clostridium	Clostridium thermocellum	9.88801	36.4396	19.4887	142.417	93.9552	92.2094
+GO:0044209	AMP salvage	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	82.9271	58.608	43.511	37.0193	45.5653	50.1944
+GO:0044209	AMP salvage	biological_process	Escherichia	Escherichia coli	0.147307	0	0.224404	0	0	0
+GO:0044210	'de novo' CTP biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	14.3125	84.6314	61.1861	206.548	245.317	356.629
+GO:0044210	'de novo' CTP biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	113.73	71.2217	63.299	59.6361	65.3162	43.5671
+GO:0044210	'de novo' CTP biosynthetic process	biological_process	Escherichia	Escherichia coli	0.247707	0	0	0	0	0
+GO:0044210	'de novo' CTP biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.226489	0.514297	0.186334	0.818675	0.379063	0.523955
+GO:0044211	CTP salvage	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	10.1265	24.3598	14.7753	15.3747	16.4329	16.4033
+GO:0044212	transcription regulatory region DNA binding	molecular_function	Escherichia	Escherichia coli	0.423012	0	0.411956	0	0	0.379206
+GO:0044237	cellular metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	9.47532	8.33493	8.53972	5.25356	5.34	5.49489
+GO:0044238	primary metabolic process	biological_process	Clostridium	Clostridium thermocellum	57.9763	215.103	127.475	832.845	569.085	772.994
+GO:0044238	primary metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	42.0218	42.5692	90.504	38.8777	52.7804	48.8106
+GO:0044260	cellular macromolecule metabolic process	biological_process	Clostridium	Clostridium thermocellum	0	0	0.267977	0	0.0645879	0.240537
+GO:0044262	cellular carbohydrate metabolic process	biological_process	Escherichia	Escherichia coli	0.0890257	0	0.0933701	0	0	0
+GO:0044281	small molecule metabolic process	biological_process	Escherichia	Escherichia coli	0.0604685	0	0	0	0	0
+GO:0044283	small molecule biosynthetic process	biological_process	Escherichia	Escherichia coli	0.143856	0	0.138477	0	0	0.0419435
+GO:0044318	L-aspartate:fumarate oxidoreductase activity	molecular_function	Clostridium	Clostridium thermocellum	2.029	11.9143	6.784	25.377	25.8602	20.0365
+GO:0044318	L-aspartate:fumarate oxidoreductase activity	molecular_function	Escherichia	Escherichia coli	0.0330049	0	0	0	0	0
+GO:0044349	DNA excision	biological_process	Escherichia	Escherichia coli	1.42047	0	0	0	0	0
+GO:0044571	[2Fe-2S] cluster assembly	biological_process	Clostridium	Clostridium thermocellum	3.91947	55.9324	51.6661	114.788	99.4343	130.863
+GO:0044610	FMN transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.0959524	0	0	0	0	0.0780984
+GO:0044667	(R)-carnitine:4-(trimethylammonio)butanoate antiporter activity	molecular_function	Escherichia	Escherichia coli	0.0349249	0	0	0	0	0
+GO:0044689	7,8-didemethyl-8-hydroxy-5-deazariboflavin synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.120913	0.263659	0.169871	0.81472	0.656687	1.09606
+GO:0044718	siderophore transmembrane transport	biological_process	Escherichia	Escherichia coli	0	0	0.117682	0	0	0
+GO:0044780	bacterial-type flagellum assembly	biological_process	Clostridium	Clostridium thermocellum	33.414	88.8166	65.5319	967.809	899.021	747.531
+GO:0044780	bacterial-type flagellum assembly	biological_process	Escherichia	Escherichia coli	0.190665	0	0.386697	0	0	0.0924892
+GO:0044781	bacterial-type flagellum organization	biological_process	Clostridium	Clostridium thermocellum	15.7928	45.6453	37.7114	405.282	394.889	280.533
+GO:0044781	bacterial-type flagellum organization	biological_process	Escherichia	Escherichia coli	0.0825852	0	0	0	0	0
+GO:0044822	poly(A) RNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.45856	0.187441	1.44701	1.9968	1.30741	2.72633
+GO:0045127	N-acetylglucosamine kinase activity	molecular_function	Escherichia	Escherichia coli	0.0637981	0	0	0	0	0.0424286
+GO:0045148	tripeptide aminopeptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.49947	3.40423	4.12114	2.4798	3.00514	1.70061
+GO:0045150	acetoin catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	115.779	6.00386	9.3934	2.61932	4.8924	1.93923
+GO:0045226	extracellular polysaccharide biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	3.49648	43.6705	36.7416	84.3769	98.3134	155.723
+GO:0045226	extracellular polysaccharide biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	3.26015	1.99964	4.92832	0.722029	1.58891	1.92271
+GO:0045226	extracellular polysaccharide biosynthetic process	biological_process	Escherichia	Escherichia coli	0.599459	0	0.25873	0	0	0.134045
+GO:0045226	extracellular polysaccharide biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.210813	0.0640362	0.72522	0.15989	0.20162	0.387873
+GO:0045227	capsule polysaccharide biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	3.00262	16.584	8.70638	40.1594	35.961	49.9037
+GO:0045227	capsule polysaccharide biosynthetic process	biological_process	Escherichia	Escherichia coli	0.349419	0	0	0	0	0
+GO:0045228	slime layer polysaccharide biosynthetic process	biological_process	Escherichia	Escherichia coli	0.232954	0	0.37745	0	0	0
+GO:0045330	aspartyl esterase activity	molecular_function	Clostridium	Clostridium thermocellum	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0045333	cellular respiration	biological_process	Escherichia	Escherichia coli	0.0717456	0	0.122734	0	0	0.0111569
+GO:0045337	farnesyl diphosphate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.129589	0	0	0	0	0
+GO:0045437	uridine nucleosidase activity	molecular_function	Escherichia	Escherichia coli	0.153577	0	0	0	0	0
+GO:0045454	cell redox homeostasis	biological_process	Clostridium	Clostridium thermocellum	75.2534	772.464	610.22	1880.1	1429.21	2212.82
+GO:0045454	cell redox homeostasis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	75.4945	173.534	241.865	130.534	149.926	105.491
+GO:0045454	cell redox homeostasis	biological_process	Escherichia	Escherichia coli	0.953399	0	0.750344	0	0	0.0517099
+GO:0045454	cell redox homeostasis	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	2.08901	6.07896	3.93481	3.80195	1.70492	2.5984
+GO:0045471	response to ethanol	biological_process	Escherichia	Escherichia coli	0.269994	0	0.200453	0	0	0
+GO:0045490	pectin catabolic process	biological_process	Clostridium	Clostridium thermocellum	0.218955	0.150196	0.203159	0.495139	0.349135	0.332929
+GO:0045490	pectin catabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.0656748	0	0	0
+GO:0045493	xylan catabolic process	biological_process	Clostridium	Clostridium thermocellum	29.2106	51.6523	53.1545	97.1435	79.9208	78.4948
+GO:0045493	xylan catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.227778	0.058342	0	0	0.0135643	0
+GO:0045550	geranylgeranyl reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.266154	1.40968	0.781738	1.31692	1.02676	1.37405
+GO:0045717	negative regulation of fatty acid biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.48606	19.529	5.98408	62.2942	58.1151	35.9727
+GO:0045717	negative regulation of fatty acid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.132044	0	0	0	0	0
+GO:0045727	positive regulation of translation	biological_process	Clostridium	Clostridium thermocellum	1.05275	13.504	8.41166	25.5348	28.3919	30.655
+GO:0045727	positive regulation of translation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	3.84932	3.72544	2.99596	5.72677	5.91025	4.45378
+GO:0045727	positive regulation of translation	biological_process	Escherichia	Escherichia coli	0.0817831	0	0.0622017	0	0	0
+GO:0045828	positive regulation of isoprenoid metabolic process	biological_process	Escherichia	Escherichia coli	0.0932304	0	0	0	0	0
+GO:0045862	positive regulation of proteolysis	biological_process	Escherichia	Escherichia coli	0.0281198	0	0	0	0	0
+GO:0045892	negative regulation of transcription, DNA-templated	biological_process	Clostridium	Clostridium thermocellum	61.3857	237.87	183.623	1112.24	1159.02	1531.92
+GO:0045892	negative regulation of transcription, DNA-templated	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	27.5553	51.8725	59.3377	36.2145	42.1951	41.0816
+GO:0045892	negative regulation of transcription, DNA-templated	biological_process	Escherichia	Escherichia coli	1.98819	0	2.27895	0	0	0.404204
+GO:0045893	positive regulation of transcription, DNA-templated	biological_process	Escherichia	Escherichia coli	2.81635	0	0.931942	0	0	1.34226
+GO:0045901	positive regulation of translational elongation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0045905	positive regulation of translational termination	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.299645	1.15242	0	0.920692	0.356883	1.19719
+GO:0045910	negative regulation of DNA recombination	biological_process	Clostridium	Clostridium thermocellum	1.79646	9.59572	7.45549	24.5317	25.6271	27.6692
+GO:0045910	negative regulation of DNA recombination	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	19.9673	19.013	15.8316	20.5905	25.004	19.1869
+GO:0045936	negative regulation of phosphate metabolic process	biological_process	Clostridium	Clostridium thermocellum	0.873002	8.92465	7.92108	11.9012	13.2486	11.9292
+GO:0045936	negative regulation of phosphate metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	134.535	172.094	104.632	117.972	146.035	117.723
+GO:0045936	negative regulation of phosphate metabolic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.112378
+GO:0045936	negative regulation of phosphate metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.111434	0.184127	1.56966	0.754758	0.256333	0.805659
+GO:0045947	negative regulation of translational initiation	biological_process	Escherichia	Escherichia coli	0.168767	0	0	0	0	0
+GO:0045982	negative regulation of purine nucleobase metabolic process	biological_process	Clostridium	Clostridium thermocellum	1.63228	13.8764	9.70138	49.8668	49.5821	67.5221
+GO:0046026	precorrin-4 C11-methyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0830956	0.0797652	0	0.0849563	0.111293	0.0551701
+GO:0046034	ATP metabolic process	biological_process	Clostridium	Clostridium thermocellum	0.844128	1.36483	0.989498	14.7573	12.6659	10.6787
+GO:0046034	ATP metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0151414	0.116311	0.168608	0.123953	0.0946464	0.362616
+GO:0046039	GTP metabolic process	biological_process	Clostridium	Clostridium thermocellum	1.23528	7.17098	4.74217	16.84	15.7692	21.3615
+GO:0046039	GTP metabolic process	biological_process	Escherichia	Escherichia coli	0.0861822	0	0.159947	0	0	0
+GO:0046080	dUTP metabolic process	biological_process	Clostridium	Clostridium thermocellum	4.346	16.0451	11.3653	45.9244	54.2822	67.5313
+GO:0046080	dUTP metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	6.62402	13.6576	7.89036	6.861	7.59871	11.9597
+GO:0046080	dUTP metabolic process	biological_process	Escherichia	Escherichia coli	0.0786479	0	0	0	0	0
+GO:0046080	dUTP metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.159119	0.308093	0	0	0.143261	0
+GO:0046104	thymidine metabolic process	biological_process	Escherichia	Escherichia coli	0.0414384	0	0	0	0	0
+GO:0046113	nucleobase catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	2.07992	3.38192	3.26796	1.73579	2.60042	1.87404
+GO:0046113	nucleobase catabolic process	biological_process	Escherichia	Escherichia coli	0.0620482	0	0	0	0	0
+GO:0046133	pyrimidine ribonucleoside catabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.0567438	0	0	0.040844
+GO:0046140	corrin biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.581693	1.30481	0.516017	0.416077	0.164313	0.0683321
+GO:0046167	glycerol-3-phosphate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0046167	glycerol-3-phosphate biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0046167	glycerol-3-phosphate biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0046168	glycerol-3-phosphate catabolic process	biological_process	Clostridium	Clostridium thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0046168	glycerol-3-phosphate catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0046176	aldonic acid catabolic process	biological_process	Escherichia	Escherichia coli	0.0899007	0	0	0	0	0
+GO:0046177	D-gluconate catabolic process	biological_process	Escherichia	Escherichia coli	0.100206	0	0	0	0	0
+GO:0046183	L-idonate catabolic process	biological_process	Escherichia	Escherichia coli	0.431421	0	0	0	0	0.128612
+GO:0046214	enterobactin catabolic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0307219
+GO:0046256	2,4,6-trinitrotoluene catabolic process	biological_process	Escherichia	Escherichia coli	0.165389	0	0	0	0	0
+GO:0046279	3,4-dihydroxybenzoate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.38574	7.35655	3.7173	17.0606	15.9985	19.0732
+GO:0046294	formaldehyde catabolic process	biological_process	Escherichia	Escherichia coli	0.0710651	0	0	0	0	0
+GO:0046296	glycolate catabolic process	biological_process	Escherichia	Escherichia coli	0.0297725	0	0.0829055	0	0	0.0197914
+GO:0046316	gluconokinase activity	molecular_function	Escherichia	Escherichia coli	0.247318	0	0	0	0	0
+GO:0046336	ethanolamine catabolic process	biological_process	Escherichia	Escherichia coli	0.0953205	0	0.27339	0	0	0.221715
+GO:0046348	amino sugar catabolic process	biological_process	Escherichia	Escherichia coli	0.071381	0	0	0	0	0.0951734
+GO:0046356	acetyl-CoA catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0396156	0	0.0734782	0.0405383	0	0
+GO:0046365	monosaccharide catabolic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0350877
+GO:0046373	L-arabinose metabolic process	biological_process	Clostridium	Clostridium thermocellum	4.20574	10.9966	12.1554	20.5277	18.1504	28.5563
+GO:0046386	deoxyribose phosphate catabolic process	biological_process	Clostridium	Clostridium thermocellum	2.09353	22.1003	15.1099	60.3665	37.74	60.8098
+GO:0046386	deoxyribose phosphate catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	19.2405	14.345	7.7744	13.2134	16.1646	16.8584
+GO:0046386	deoxyribose phosphate catabolic process	biological_process	Escherichia	Escherichia coli	0.0771654	0	0	0	0	0
+GO:0046386	deoxyribose phosphate catabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.370175	0.347438	0.257738	0.142033	0.0826881	0.18514
+GO:0046392	galactarate catabolic process	biological_process	Escherichia	Escherichia coli	0.266859	0	0	0	0	0.129873
+GO:0046416	D-amino acid metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	13.8998	8.65483	7.6177	10.4077	13.1879	9.88361
+GO:0046416	D-amino acid metabolic process	biological_process	Escherichia	Escherichia coli	0.0580624	0	0.107759	0	0	0
+GO:0046417	chorismate metabolic process	biological_process	Escherichia	Escherichia coli	0.0721101	0	0	0	0	0
+GO:0046417	chorismate metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.16534	0	0.306859	0	0.420168	0.432759
+GO:0046429	4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	4.0625	26.2796	22.4198	63.5567	64.0331	72.5068
+GO:0046429	4-hydroxy-3-methylbut-2-en-1-yl diphosphate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	14.1685	18.7323	11.0275	18.782	17.4483	13.3658
+GO:0046444	FMN metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0794256	0.457588	0.588683	1.70599	0.70834	0.422734
+GO:0046459	short-chain fatty acid metabolic process	biological_process	Escherichia	Escherichia coli	0.0336125	0	0.211098	0	0	0.24694
+GO:0046467	membrane lipid biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.266154	1.40968	0.781738	1.31692	1.02676	1.37405
+GO:0046474	glycerophospholipid biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0.244476	0	0	0.175277
+GO:0046474	glycerophospholipid biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.162837	0	0.37763	0.291528	0.327171	0.378915
+GO:0046487	glyoxylate metabolic process	biological_process	Escherichia	Escherichia coli	0.0661313	0	0	0	0	0
+GO:0046523	S-methyl-5-thioribose-1-phosphate isomerase activity	molecular_function	Clostridium	Clostridium thermocellum	1.90797	8.33124	5.07952	33.3417	25.5352	24.3338
+GO:0046523	S-methyl-5-thioribose-1-phosphate isomerase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	22.4369	12.727	27.7473	8.96712	12.2831	20.0084
+GO:0046523	S-methyl-5-thioribose-1-phosphate isomerase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.525672	1.42523	1.09036	0.253054	0.414178	0.369989
+GO:0046537	2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity	molecular_function	Clostridium	Clostridium thermocellum	13.9913	125.801	107.824	489.74	487.58	612.883
+GO:0046537	2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity	molecular_function	Escherichia	Escherichia coli	0.052278	0	0	0	0	0
+GO:0046537	2,3-bisphosphoglycerate-independent phosphoglycerate mutase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0908972	0.262726	0.0834919	0.673582	0.16236	0.150829
+GO:0046538	2,3-bisphosphoglycerate-dependent phosphoglycerate mutase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	55.8674	437.949	223.846	234.611	312.144	253.308
+GO:0046553	D-malate dehydrogenase (decarboxylating) activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0963923	0	0	0
+GO:0046555	acetylxylan esterase activity	molecular_function	Clostridium	Clostridium thermocellum	7.87794	11.7939	11.5945	20.9763	16.3192	17.9495
+GO:0046556	alpha-L-arabinofuranosidase activity	molecular_function	Clostridium	Clostridium thermocellum	4.20574	10.9966	12.1554	20.5277	18.1504	28.5563
+GO:0046618	drug export	biological_process	Escherichia	Escherichia coli	0.265619	0	0	0	0	0
+GO:0046654	tetrahydrofolate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	4.67126	33.8886	28.8079	80.9409	73.8015	74.2593
+GO:0046654	tetrahydrofolate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.397031	0	0.514032	0	0	0
+GO:0046656	folic acid biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.92063	7.73797	5.93419	21.7524	18.4385	14.4682
+GO:0046656	folic acid biosynthetic process	biological_process	Escherichia	Escherichia coli	0.331605	0	0.148851	0	0	0
+GO:0046657	folic acid catabolic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0557199
+GO:0046677	response to antibiotic	biological_process	Clostridium	Clostridium thermocellum	133937	95941.1	83198.5	37694.8	49718	17106.2
+GO:0046677	response to antibiotic	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	9.94741	5.0141	2.59939	7.62938	7.53182	5.54085
+GO:0046677	response to antibiotic	biological_process	Escherichia	Escherichia coli	77929.1	0	34225.6	0	0	7845.75
+GO:0046685	response to arsenic-containing substance	biological_process	Escherichia	Escherichia coli	0	0	0.0395583	0	0	0.185755
+GO:0046685	response to arsenic-containing substance	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.295351	0.0951744	0.209879	0	0.449996
+GO:0046686	response to cadmium ion	biological_process	Escherichia	Escherichia coli	0.0721344	0	0.0220119	0	0	0
+GO:0046688	response to copper ion	biological_process	Escherichia	Escherichia coli	0.316682	0	0	0	0	0
+GO:0046718	viral entry into host cell	biological_process	Escherichia	Escherichia coli	15.5896	0	16.7385	0	0	15.7476
+GO:0046777	protein autophosphorylation	biological_process	Escherichia	Escherichia coli	0.542758	0	0.142265	0	0	0
+GO:0046790	virion binding	molecular_function	Escherichia	Escherichia coli	0.0348277	0	0	0	0	0
+GO:0046797	viral procapsid maturation	biological_process	Escherichia	Escherichia coli	15.7062	0	20.3094	0	0	17.5375
+GO:0046820	4-amino-4-deoxychorismate synthase activity	molecular_function	Escherichia	Escherichia coli	0.0401017	0	0.148851	0	0	0
+GO:0046834	lipid phosphorylation	biological_process	Escherichia	Escherichia coli	0	0	0.300724	0	0	0
+GO:0046835	carbohydrate phosphorylation	biological_process	Escherichia	Escherichia coli	0.460051	0	1.23943	0	0	0.0247716
+GO:0046839	phospholipid dephosphorylation	biological_process	Escherichia	Escherichia coli	0	0	0.244476	0	0	0.175277
+GO:0046854	phosphatidylinositol phosphorylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	37.3761	42.5571	34.4422	32.5891	40.4493	39.8263
+GO:0046854	phosphatidylinositol phosphorylation	biological_process	Escherichia	Escherichia coli	0	0	0.27587	0	0	0
+GO:0046854	phosphatidylinositol phosphorylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0701415	0.06735	0.260354	0.0717752	0.156587	0
+GO:0046855	inositol phosphate dephosphorylation	biological_process	Escherichia	Escherichia coli	0	0	0.27587	0	0	0
+GO:0046857	oxidoreductase activity, acting on other nitrogenous compounds as donors, with NAD or NADP as acceptor	molecular_function	Escherichia	Escherichia coli	0.234874	0	0.129049	0	0	0
+GO:0046870	cadmium ion binding	molecular_function	Escherichia	Escherichia coli	0.0484137	0	0	0	0	0
+GO:0046872	metal ion binding	molecular_function	Clostridium	Clostridium thermocellum	637.316	3232.35	2454.26	9667.48	8203.48	9482.64
+GO:0046872	metal ion binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2580.65	2572.22	2601.62	1853.15	2273.33	1995.7
+GO:0046872	metal ion binding	molecular_function	Escherichia	Escherichia coli	23.5591	0	27.1815	0	0	17.6502
+GO:0046872	metal ion binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	29.4427	39.9169	36.3039	44.4933	25.18	38.1282
+GO:0046873	metal ion transmembrane transporter activity	molecular_function	Clostridium	Clostridium thermocellum	10.2384	85.9525	69.6178	190.811	184.224	229.896
+GO:0046873	metal ion transmembrane transporter activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	32.9464	21.2467	22.6546	14.1468	16.0176	13.2948
+GO:0046873	metal ion transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.532599	0	0.289132	0	0	0
+GO:0046873	metal ion transmembrane transporter activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.148189	0	0	0	0
+GO:0046892	peptidyl-S-carbamoyl-L-cysteine dehydration	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0375455
+GO:0046912	transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer	molecular_function	Clostridium	Clostridium thermocellum	6.07001	49.1346	31.9077	100.8	94.2191	107.021
+GO:0046912	transferase activity, transferring acyl groups, acyl groups converted into alkyl on transfer	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0350707	0.06735	0.128598	0.427244	0.297894	0.5019
+GO:0046914	transition metal ion binding	molecular_function	Clostridium	Clostridium thermocellum	8.52696	48.5364	33.3028	91.0216	90.0693	179.452
+GO:0046914	transition metal ion binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.6478	11.8481	7.42383	5.30415	6.56615	7.80654
+GO:0046914	transition metal ion binding	molecular_function	Escherichia	Escherichia coli	0.120767	0	0	0	0	0.0384186
+GO:0046914	transition metal ion binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.80653	3.52302	2.83773	1.62066	1.52589	2.20179
+GO:0046917	triphosphoribosyl-dephospho-CoA synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0632878	0	0.0587285	0.0645628	0.113029	0.0842105
+GO:0046933	proton-transporting ATP synthase activity, rotational mechanism	molecular_function	Clostridium	Clostridium thermocellum	39.0864	407.387	328.627	946.847	865.463	694.314
+GO:0046933	proton-transporting ATP synthase activity, rotational mechanism	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	183.204	126.744	100.241	127.327	168.807	136.313
+GO:0046933	proton-transporting ATP synthase activity, rotational mechanism	molecular_function	Escherichia	Escherichia coli	0.280274	0	0.376683	0	0	0
+GO:0046933	proton-transporting ATP synthase activity, rotational mechanism	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.76062	0.488906	1.63768	1.46582	1.1552	1.68208
+GO:0046944	protein carbamoylation	biological_process	Clostridium	Clostridium thermocellum	0.241607	3.27014	1.08914	9.48984	7.39755	8.80261
+GO:0046944	protein carbamoylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	5.79985	8.39756	4.91912	6.8849	7.22312	7.9444
+GO:0046944	protein carbamoylation	biological_process	Escherichia	Escherichia coli	0	0	0.0214706	0	0	0
+GO:0046944	protein carbamoylation	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0714782	0.343191	0.442223	0.231615	0.0850971	0.110825
+GO:0046952	ketone body catabolic process	biological_process	Escherichia	Escherichia coli	0.0336125	0	0.0312136	0	0	0.24694
+GO:0046961	proton-transporting ATPase activity, rotational mechanism	molecular_function	Clostridium	Clostridium thermocellum	15.4849	150.642	114.174	394.142	360.224	266.265
+GO:0046961	proton-transporting ATPase activity, rotational mechanism	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	51.5972	34.4361	30.137	39.0334	51.421	33.217
+GO:0046961	proton-transporting ATPase activity, rotational mechanism	molecular_function	Escherichia	Escherichia coli	0.0680757	0	0.252415	0	0	0
+GO:0046961	proton-transporting ATPase activity, rotational mechanism	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0633607	0.162611	0.622377	0.595192	0.44823	0.779594
+GO:0046982	protein heterodimerization activity	molecular_function	Escherichia	Escherichia coli	0.0735441	0	0.0675693	0	0	0.0557199
+GO:0046982	protein heterodimerization activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.996102	1.02038	0.8632	0.713151	0.591752	1.67855
+GO:0046983	protein dimerization activity	molecular_function	Clostridium	Clostridium thermocellum	4.03843	22.7861	16.3044	71.33	61.2833	62.8522
+GO:0046983	protein dimerization activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.242554	0.556256	0.889407	0.37529	0.286609	0.599692
+GO:0047001	2-dehydro-3-deoxy-D-gluconate 5-dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	1.43953	0	0	0	0	0
+GO:0047017	prostaglandin-F synthase activity	molecular_function	Escherichia	Escherichia coli	0.143394	0	0	0	0	0
+GO:0047068	N5,N10-methenyltetrahydromethanopterin hydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.932547	1.73215	2.1757	2.31429	2.1895	5.72751
+GO:0047111	formate dehydrogenase (cytochrome-c-553) activity	molecular_function	Escherichia	Escherichia coli	0.0717456	0	0	0	0	0.0111569
+GO:0047134	protein-disulfide reductase activity	molecular_function	Escherichia	Escherichia coli	0.0314008	0	0	0	0	0
+GO:0047138	aquacobalamin reductase activity	molecular_function	Escherichia	Escherichia coli	0.086012	0	0.23753	0	0	0
+GO:0047151	methylenetetrahydrofolate-tRNA-(uracil-5-)-methyltransferase (FADH2-oxidizing) activity	molecular_function	Clostridium	Clostridium thermocellum	1.54783	8.23481	3.57378	33.2139	32.0653	25.7839
+GO:0047151	methylenetetrahydrofolate-tRNA-(uracil-5-)-methyltransferase (FADH2-oxidizing) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	15.3952	25.0556	21.3114	16.3395	17.3561	16.2648
+GO:0047154	methylmalonyl-CoA carboxytransferase activity	molecular_function	Clostridium	Clostridium thermocellum	9.46407	45.2124	18.9764	191.309	126.004	123.774
+GO:0047241	lipopolysaccharide N-acetylmannosaminouronosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0822449	0	0	0	0	0
+GO:0047244	N-acetylglucosaminyldiphosphoundecaprenol N-acetyl-beta-D-mannosaminyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.405076	2.40616	2.02437	5.00743	5.81415	7.05007
+GO:0047270	lipopolysaccharide glucosyltransferase II activity	molecular_function	Escherichia	Escherichia coli	0.279254	0	0.0518272	0	0	0.148694
+GO:0047294	phosphoglycerol geranylgeranyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.162837	0	0.37763	0.291528	0.327171	0.378915
+GO:0047295	geranylgeranylglycerol-phosphate geranylgeranyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0.10719	0.187014	0.092942
+GO:0047298	(S)-3-amino-2-methylpropionate transaminase activity	molecular_function	Escherichia	Escherichia coli	0.0217764	0	0.079748	0	0	0
+GO:0047310	glutamine-scyllo-inositol transaminase activity	molecular_function	Clostridium	Clostridium thermocellum	0.21441	2.05887	0.309565	6.04406	8.5926	8.3998
+GO:0047324	phosphoenolpyruvate-glycerone phosphotransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0350877
+GO:0047334	diphosphate-fructose-6-phosphate 1-phosphotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	7.50242	63.6197	37.5005	278.781	233.258	164.662
+GO:0047355	CDP-glycerol glycerophosphotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0454972	0	0	0.0465569	0.0406062	0
+GO:0047355	CDP-glycerol glycerophosphotransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	10.8887	25.5153	10.5777	19.2544	22.5056	21.648
+GO:0047360	undecaprenyl-phosphate galactose phosphotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.31325	18.5234	21.8266	35.8816	36.2974	57.8469
+GO:0047372	acylglycerol lipase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	130.308	180.976	306.722	127.162	177.056	100.76
+GO:0047429	nucleoside-triphosphate diphosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	4.42378	27.4467	20.7349	59.5457	61.5965	71.5612
+GO:0047429	nucleoside-triphosphate diphosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	39.9694	79.6803	76.3232	58.9659	71.4159	58.7156
+GO:0047429	nucleoside-triphosphate diphosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.235117	0.564237	1.08797	0.960733	0.471539	1.87452
+GO:0047440	2-dehydro-3-deoxy-D-pentonate aldolase activity	molecular_function	Escherichia	Escherichia coli	0.0899007	0	0	0	0	0
+GO:0047451	3-hydroxyoctanoyl-[acyl-carrier-protein] dehydratase activity	molecular_function	Clostridium	Clostridium thermocellum	2.00445	17.7779	12.3916	52.541	46.1825	72.3142
+GO:0047451	3-hydroxyoctanoyl-[acyl-carrier-protein] dehydratase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.294815	0	0	0
+GO:0047475	phenylacetate-CoA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	7.14724	53.8933	41.7253	103.042	95.011	84.8779
+GO:0047475	phenylacetate-CoA ligase activity	molecular_function	Escherichia	Escherichia coli	0.0514031	0	0	0	0	0
+GO:0047475	phenylacetate-CoA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.294541	0.161957	0.702937	0.517149	0.187709	0.47619
+GO:0047480	UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.66061	18.9106	21.8839	51.6569	46.4233	52.6138
+GO:0047480	UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	93.6144	85.4518	89.3883	66.6686	70.5838	51.1285
+GO:0047480	UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity	molecular_function	Escherichia	Escherichia coli	0.0401989	0	0	0	0	0
+GO:0047480	UDP-N-acetylmuramoyl-tripeptide-D-alanyl-D-alanine ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0623642	0.159577	0.0385659	0.127484	0.111271	0.0552672
+GO:0047484	regulation of response to osmotic stress	biological_process	Escherichia	Escherichia coli	0.0815887	0	0	0	0	0
+GO:0047527	2,3-dihydroxybenzoate-serine ligase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.127425	0	0	0
+GO:0047553	2-oxoglutarate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	10.2128	109.242	75.1143	275.178	259.948	203.582
+GO:0047553	2-oxoglutarate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	61.2888	50.6646	77.3708	26.7822	35.8421	40.8824
+GO:0047553	2-oxoglutarate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0984557	0.225854	0.251197	0.632696	0.527142	0.219355
+GO:0047617	acyl-CoA hydrolase activity	molecular_function	Escherichia	Escherichia coli	0.0976051	0	0	0	0	0
+GO:0047631	ADP-ribose diphosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	3.0439600000000002	23.2511	19.2002	64.0822	62.3987	82.9162
+GO:0047631	ADP-ribose diphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.101275	0	0	0	0	0
+GO:0047693	ATP diphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0150928	0	0	0	0	0
+GO:0047760	butyrate-CoA ligase activity	molecular_function	Clostridium	Clostridium thermocellum	2.00474	6.15989	3.39344	23.8122	21.0374	16.1112
+GO:0047760	butyrate-CoA ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.215553	0.207418	0	0	0	0
+GO:0047761	butyrate kinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	99.7304	47.3327	54.2261	18.4366	26.1416	51.9546
+GO:0047850	diaminopimelate dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	2.37006	16.0535	10.7892	47.5035	45.7581	47.6459
+GO:0047952	glycerol-3-phosphate dehydrogenase [NAD(P)+] activity	molecular_function	Clostridium	Clostridium thermocellum	1.81461	8.36484	5.49274	33.4607	32.5297	24.5134
+GO:0047952	glycerol-3-phosphate dehydrogenase [NAD(P)+] activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.221021	0.396106	0	0
+GO:0048001	erythrose-4-phosphate dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.055875	0	0	0	0	0
+GO:0048029	monosaccharide binding	molecular_function	Clostridium	Clostridium thermocellum	8.9723	20.5811	17.6418	48.8933	48.7887	64.0767
+GO:0048029	monosaccharide binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.691985	1.13095	2.00534	0.404388	0.791896	0.524763
+GO:0048029	monosaccharide binding	molecular_function	Escherichia	Escherichia coli	0.265789	0	0	0	0	0
+GO:0048034	heme O biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0657425	0	0.122238	0	0	0
+GO:0048037	cofactor binding	molecular_function	Clostridium	Clostridium thermocellum	23.4304	122.456	112.408	309.517	238.34	368.942
+GO:0048037	cofactor binding	molecular_function	Escherichia	Escherichia coli	0.14772	0	0	0	0	0.114674
+GO:0048037	cofactor binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.132895	0	0	0.0679452	0.118585	0
+GO:0048038	quinone binding	molecular_function	Clostridium	Clostridium thermocellum	0.783927	6.16806	3.72998	19.1628	18.519	16.1259
+GO:0048038	quinone binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	114.64	130.538	140.443	157.122	149.942	80.4752
+GO:0048038	quinone binding	molecular_function	Escherichia	Escherichia coli	0.460367	0	0.579391	0	0	0.228183
+GO:0048038	quinone binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.123683	0	0.181147	0.940688	0.628191	0.251338
+GO:0048040	UDP-glucuronate decarboxylase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.0923797	0	0	0.0630458	0.0274976	0.0819791
+GO:0048388	endosomal lumen acidification	biological_process	Clostridium	Clostridium thermocellum	0.844128	1.36483	0.989498	14.7573	12.6659	10.6787
+GO:0048388	endosomal lumen acidification	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0151414	0.116311	0.168608	0.123953	0.0946464	0.362616
+GO:0048472	threonine-phosphate decarboxylase activity	molecular_function	Clostridium	Clostridium thermocellum	1.31388	10.2492	9.35046	27.9337	25.8596	34.5376
+GO:0048472	threonine-phosphate decarboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.228701	0.0627293	0.181869	0.0668509	0.0583808	0.434602
+GO:0048473	D-methionine transport	biological_process	Escherichia	Escherichia coli	0.291284	0	0.135454	0	0	0
+GO:0048511	rhythmic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.62028	2.65867	0	0	0.824819	0
+GO:0048870	cell motility	biological_process	Escherichia	Escherichia coli	0	0	0.142987	0	0	0
+GO:0050081	maltose-6'-phosphate glucosidase activity	molecular_function	Escherichia	Escherichia coli	0.0207314	0	0.115382	0	0	0
+GO:0050089	mannose isomerase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0826348	0	0	0
+GO:0050136	NADH dehydrogenase (quinone) activity	molecular_function	Clostridium	Clostridium thermocellum	0.331191	4.92771	2.86822	9.38924	10.3754	12.6874
+GO:0050163	oxaloacetate tautomerase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.06784	0	0	0.042752
+GO:0050182	phosphate butyryltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	84.1331	96.2858	106.577	80.2442	97.0631	110.934
+GO:0050225	pseudouridine kinase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.112378
+GO:0050242	pyruvate, phosphate dikinase activity	molecular_function	Clostridium	Clostridium thermocellum	2.59281	11.6392	13.25	49.2864	44.0848	41.199
+GO:0050242	pyruvate, phosphate dikinase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	53.4174	54.7495	42.6241	62.2203	69.7192	37.1381
+GO:0050263	ribosylpyrimidine nucleosidase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0567438	0	0	0.040844
+GO:0050270	S-adenosylhomocysteine deaminase activity	molecular_function	Clostridium	Clostridium thermocellum	2.16138	9.32091	3.97432	40.4601	33.0883	28.9094
+GO:0050270	S-adenosylhomocysteine deaminase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0428724	0	0.0795225	0	0	0.0570135
+GO:0050297	stizolobate synthase activity	molecular_function	Escherichia	Escherichia coli	0.109417	0	0	0	0	0
+GO:0050308	sugar-phosphatase activity	molecular_function	Escherichia	Escherichia coli	0.549369	0	0.318541	0	0	0.235589
+GO:0050355	triphosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	0.295999	3.34197	2.52293	10.5247	8.16498	9.25041
+GO:0050355	triphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0421918	0	0	0	0	0
+GO:0050380	undecaprenyl-diphosphatase activity	molecular_function	Clostridium	Clostridium thermocellum	1.23491	9.13104	5.3175	27.0817	19.7135	23.0007
+GO:0050380	undecaprenyl-diphosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	9.94741	5.0141	2.59939	7.62938	7.53182	5.54085
+GO:0050380	undecaprenyl-diphosphatase activity	molecular_function	Escherichia	Escherichia coli	0.0700686	0	0	0	0	0
+GO:0050380	undecaprenyl-diphosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.281003	0.744397	0.263782	0.502426	0.109621	0
+GO:0050418	hydroxylamine reductase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0657425	0	0	0.672563	0.58702	0.524666
+GO:0050418	hydroxylamine reductase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0600366	0	0	0
+GO:0050418	hydroxylamine reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.642915	1.0699	0.954586	0.394565	0.344447	0.142582
+GO:0050454	coenzyme F420 hydrogenase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	14.4802	5.58436	16.7493	14.0663	9.30224	8.95946
+GO:0050462	N-acetylneuraminate synthase activity	molecular_function	Clostridium	Clostridium thermocellum	2.01823	7.02629	4.44239	48.2055	36.2254	39.8759
+GO:0050480	imidazolonepropionase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.62478	1.16768	3.34324	0.222239	0.523626	0.722321
+GO:0050485	oxidoreductase activity, acting on X-H and Y-H to form an X-Y bond, with a disulfide as acceptor	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	42.2174	67.3724	100.564	54.2061	62.3147	39.6642
+GO:0050492	glycerol-1-phosphate dehydrogenase [NAD(P)+] activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	26.9496	29.1195	18.9011	34.006100000000004	35.9212	26.0876
+GO:0050492	glycerol-1-phosphate dehydrogenase [NAD(P)+] activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.652467	0.832564	0.908126	0.445101	0.145627	0.433826
+GO:0050511	undecaprenyldiphospho-muramoylpentapeptide beta-N-acetylglucosaminyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.54379	8.55392	5.82296	31.9707	23.7419	22.9967
+GO:0050511	undecaprenyldiphospho-muramoylpentapeptide beta-N-acetylglucosaminyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0536877	0	0	0	0	0
+GO:0050515	4-(cytidine 5'-diphospho)-2-C-methyl-D-erythritol kinase activity	molecular_function	Clostridium	Clostridium thermocellum	0.848941	11.2061	6.29861	25.2185	22.7673	27.9916
+GO:0050518	2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.344656	4.62774	3.83869	11.3675	8.69026	9.27282
+GO:0050518	2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	21.76	21.9113	19.3042	21.3913	29.527	21.6888
+GO:0050518	2-C-methyl-D-erythritol 4-phosphate cytidylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.173288	0	0	0	0	0
+GO:0050524	coenzyme-B sulfoethylthiotransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	13.3118	5.09979	12.4445	8.37245	5.00675	6.70278
+GO:0050532	2-phosphosulfolactate phosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	53.5065	48.6657	49.1516	34.1438	35.34	36.2278
+GO:0050532	2-phosphosulfolactate phosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.183082	0.614785	0.339786	0.655626	0.572045	0.426324
+GO:0050545	sulfopyruvate decarboxylase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.497091	0.362934	0.552778	0.060509	0.212775	0
+GO:0050560	aspartate-tRNA(Asn) ligase activity	molecular_function	Clostridium	Clostridium thermocellum	3.08479	10.53	7.33533	31.6193	26.3966	21.6467
+GO:0050560	aspartate-tRNA(Asn) ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0417544	0.0801853	0.154985	0.213386	0.0372856	0.138863
+GO:0050567	glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity	molecular_function	Clostridium	Clostridium thermocellum	3.12545	15.906	14.9013	46.4618	52.7237	54.1587
+GO:0050567	glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	32.7495	26.3112	22.9783	19.8318	22.7685	18.6935
+GO:0050567	glutaminyl-tRNA synthase (glutamine-hydrolyzing) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.846073	0.616558	0.66604	0.462137	0.606228	0.603799
+GO:0050568	protein-glutamine glutaminase activity	molecular_function	Clostridium	Clostridium thermocellum	2.16916	4.866	4.02655	38.4534	35.0295	26.73
+GO:0050568	protein-glutamine glutaminase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.14981	0	0	0	0	0
+GO:0050569	glycolaldehyde dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.0389594	0	0	0	0	0
+GO:0050570	4-hydroxythreonine-4-phosphate dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	0.806992	4.3834	5.1142	9.48325	7.42947	10.5914
+GO:0050570	4-hydroxythreonine-4-phosphate dehydrogenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	4.07375	7.12706	5.74208	2.3601	3.26514	4.11351
+GO:0050572	L-idonate 5-dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.110219	0	0	0	0	0.0733446
+GO:0050583	hydrogen dehydrogenase (NADP+) activity	molecular_function	Clostridium	Clostridium thermocellum	0.799117	5.95667	2.0352	64.6092	63.8474	70.9831
+GO:0050605	superoxide reductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	100.946	67.9705	80.2931	72.2024	85.5126	89.8118
+GO:0050605	superoxide reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.432564	2.69489	1.20285	0.665201	0.848041	0.717374
+GO:0050660	flavin adenine dinucleotide binding	molecular_function	Clostridium	Clostridium thermocellum	39.1212	295.226	284.114	849.572	733.461	667.203
+GO:0050660	flavin adenine dinucleotide binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	131.205	138.242	96.7743	100.84	119.205	97.7285
+GO:0050660	flavin adenine dinucleotide binding	molecular_function	Escherichia	Escherichia coli	1.62823	0	1.70994	0	0	0.642768
+GO:0050660	flavin adenine dinucleotide binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	15.6636	8.30235	19.3987	15.7627	10.4154	10.2382
+GO:0050661	NADP binding	molecular_function	Clostridium	Clostridium thermocellum	41.3139	386.441	261.994	1141.59	1195.07	1007.27
+GO:0050661	NADP binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	72.6739	273.121	209.922	182.837	266.242	187.484
+GO:0050661	NADP binding	molecular_function	Escherichia	Escherichia coli	0.938355	0	0.495403	0	0	0.0260975
+GO:0050661	NADP binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	2.35737	5.8061	5.53067	3.35175	1.88064	4.10507
+GO:0050662	coenzyme binding	molecular_function	Clostridium	Clostridium thermocellum	2.82547	21.2995	13.4876	47.656	36.4372	51.4067
+GO:0050662	coenzyme binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	92.0826	136.758	127.533	110.318	134.967	120.803
+GO:0050662	coenzyme binding	molecular_function	Escherichia	Escherichia coli	0.143613	0	0.274968	0	0	0.0489934
+GO:0050662	coenzyme binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.117777	0.494647	0.323593	0.566069	0.380669	0.389457
+GO:0050782	galactose uniporter activity	molecular_function	Escherichia	Escherichia coli	0.172097	0	0.109022	0	0	0
+GO:0050797	thymidylate synthase (FAD) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	32.4181	24.5272	22.7811	26.6489	29.5605	19.1002
+GO:0050821	protein stabilization	biological_process	Escherichia	Escherichia coli	1.17768	0	0	0	0	0
+GO:0050897	cobalt ion binding	molecular_function	Escherichia	Escherichia coli	0.141523	0	0.180065	0	0	0.288431
+GO:0050897	cobalt ion binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	2.06098	1.41622	6.55711	7.25927	8.9755	7.6095
+GO:0050911	detection of chemical stimulus involved in sensory perception of smell	biological_process	Escherichia	Escherichia coli	0.361523	0	0.379841	0	0	0.0899345
+GO:0050919	negative chemotaxis	biological_process	Escherichia	Escherichia coli	0.0341229	0	0	0	0	0
+GO:0050983	deoxyhypusine biosynthetic process from spermidine	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.125603	0	0	0.28919	0	0.0417172
+GO:0050992	dimethylallyl diphosphate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	10.7237	46.6363	29.7841	186.272	153.421	117.459
+GO:0050992	dimethylallyl diphosphate biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	1.63248	1.26724	0.451695	2.02813	2.76315	2.82221
+GO:0050992	dimethylallyl diphosphate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.121836	0	0	0	0	0
+GO:0051060	pullulanase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	71.8698	13.8513	20.8748	10.7321	12.5328	16.2434
+GO:0051073	adenosylcobinamide-GDP ribazoletransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.529245	6.25324	3.85109	14.4517	14.1	18.0306
+GO:0051073	adenosylcobinamide-GDP ribazoletransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.151602	0	0	0
+GO:0051073	adenosylcobinamide-GDP ribazoletransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0.225532	0.165809	0.0723358	0.215506
+GO:0051090	regulation of sequence-specific DNA binding transcription factor activity	biological_process	Escherichia	Escherichia coli	0.201602	0	0.187552	0	0	0
+GO:0051103	DNA ligation involved in DNA repair	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0051108	carnitine-CoA ligase activity	molecular_function	Escherichia	Escherichia coli	0.069704	0	0.0642766	0	0	0
+GO:0051109	crotonobetaine-CoA ligase activity	molecular_function	Escherichia	Escherichia coli	0.069704	0	0.0642766	0	0	0
+GO:0051116	cobaltochelatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0293107	0.0187628	0.145017	0.0799574	0.0784994	0.12997
+GO:0051156	glucose 6-phosphate metabolic process	biological_process	Escherichia	Escherichia coli	0	0	0.404198	0	0	0
+GO:0051186	cofactor metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	3.1352	1.82909	1.6582	6.13782	3.74195	5.20659
+GO:0051188	cofactor biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	1.61352	22.1508	20.8666	38.4793	38.9153	60.6715
+GO:0051188	cofactor biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	1.46276	2.28943	2.91662	0.637297	0.99204	1.80244
+GO:0051205	protein insertion into membrane	biological_process	Clostridium	Clostridium thermocellum	4.2142	27.8186	18.5678	87.6912	80.7945	71.4186
+GO:0051205	protein insertion into membrane	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	11.9072	4.96719	2.44729	10.8778	13.9986	7.32919
+GO:0051205	protein insertion into membrane	biological_process	Escherichia	Escherichia coli	0.300082	0	0	0	0	0
+GO:0051213	dioxygenase activity	molecular_function	Clostridium	Clostridium thermocellum	0.372484	1.76534	1.72627	21.9498	17.421	12.2609
+GO:0051213	dioxygenase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	89.9172	7.84009	9.02813	38.6527	46.3505	23.1125
+GO:0051252	regulation of RNA metabolic process	biological_process	Escherichia	Escherichia coli	0.0135617	0	0	0	0	0.0352171
+GO:0051258	protein polymerization	biological_process	Clostridium	Clostridium thermocellum	12.0632	81.9794	60.0784	204.496	182.774	233.796
+GO:0051258	protein polymerization	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	43.0316	45.2198	45.1907	42.857	46.1551	35.4182
+GO:0051258	protein polymerization	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	7.95292	10.0726	7.46988	3.24533	2.46094	4.63953
+GO:0051259	protein oligomerization	biological_process	Clostridium	Clostridium thermocellum	1.82297	13.1449	13.7533	31.2698	33.892	34.5316
+GO:0051259	protein oligomerization	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	58.4295	48.081	48.318600000000004	16.422	24.8708	34.0323
+GO:0051259	protein oligomerization	biological_process	Escherichia	Escherichia coli	0.151439	0	0	0	0	0
+GO:0051260	protein homooligomerization	biological_process	Escherichia	Escherichia coli	0.0977023	0	0.0675693	0	0	0
+GO:0051262	protein tetramerization	biological_process	Escherichia	Escherichia coli	0	0	0.284125	0	0	0
+GO:0051271	negative regulation of cellular component movement	biological_process	Escherichia	Escherichia coli	0.103414	0	0	0	0	0
+GO:0051276	chromosome organization	biological_process	Escherichia	Escherichia coli	0.0836546	0	0	0	0	0
+GO:0051287	NAD binding	molecular_function	Clostridium	Clostridium thermocellum	70.0845	685.082	524.908	2108.29	1994.74	1701.91
+GO:0051287	NAD binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	237.47	362.961	314.02	286.644	366.902	246.262
+GO:0051287	NAD binding	molecular_function	Escherichia	Escherichia coli	2.65395	0	0.577046	0	0	0.0636106
+GO:0051287	NAD binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.7356	2.90945	3.58429	3.38559	1.68597	4.20761
+GO:0051289	protein homotetramerization	biological_process	Clostridium	Clostridium thermocellum	1.23664	9.73149	5.3981	27.9807	25.9851	38.4535
+GO:0051289	protein homotetramerization	biological_process	Escherichia	Escherichia coli	0.508951	0	0.531623	0	0	0.282998
+GO:0051301	cell division	biological_process	Clostridium	Clostridium thermocellum	93.0019	642.626	533.72	1554.86	1439.93	1619.37
+GO:0051301	cell division	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	377.684	382.711	328.354	314.927	346.973	273.02
+GO:0051301	cell division	biological_process	Escherichia	Escherichia coli	1.81651	0	0.65968	0	0	0.727916
+GO:0051301	cell division	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0051302	regulation of cell division	biological_process	Clostridium	Clostridium thermocellum	2.1843	6.72123	11.0618	36.7201	30.3302	29.292
+GO:0051304	chromosome separation	biological_process	Clostridium	Clostridium thermocellum	0.598098	2.71552	4.03521	9.00478	12.1324	10.1976
+GO:0051345	positive regulation of hydrolase activity	biological_process	Escherichia	Escherichia coli	0.10949	0	0	0	0	0
+GO:0051391	tRNA acetylation	biological_process	Escherichia	Escherichia coli	0	0	0.096708	0	0	0
+GO:0051392	tRNA N-acetyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.096708	0	0	0
+GO:0051409	response to nitrosative stress	biological_process	Escherichia	Escherichia coli	0.0466881	0	0	0	0	0
+GO:0051454	intracellular pH elevation	biological_process	Escherichia	Escherichia coli	0.0229187	0	0	0	0	0
+GO:0051536	iron-sulfur cluster binding	molecular_function	Clostridium	Clostridium thermocellum	29.0619	366.197	283.429	750.452	678.288	667.201
+GO:0051536	iron-sulfur cluster binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	846.461	519.291	520.828	308.785	377.676	285.903
+GO:0051536	iron-sulfur cluster binding	molecular_function	Escherichia	Escherichia coli	0.249554	0	0.110375	0	0	0.0593419
+GO:0051536	iron-sulfur cluster binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	16.4062	13.9493	19.097	16.9624	11.5156	14.0864
+GO:0051537	2 iron, 2 sulfur cluster binding	molecular_function	Clostridium	Clostridium thermocellum	8.40638	157.22	119.713	352.273	335.739	391.002
+GO:0051537	2 iron, 2 sulfur cluster binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	19.8887	51.5596	28.3769	26.604	56.1896	72.3144
+GO:0051537	2 iron, 2 sulfur cluster binding	molecular_function	Escherichia	Escherichia coli	0.790076	0	1.50975	0	0	0.0369957
+GO:0051537	2 iron, 2 sulfur cluster binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	1.03183	3.62458	3.52966	6.10746	2.67274	5.49318
+GO:0051538	3 iron, 4 sulfur cluster binding	molecular_function	Clostridium	Clostridium thermocellum	10.7237	46.6363	29.7841	186.272	153.421	117.459
+GO:0051538	3 iron, 4 sulfur cluster binding	molecular_function	Escherichia	Escherichia coli	0.205151	0	0.0465498	0	0	0
+GO:0051539	4 iron, 4 sulfur cluster binding	molecular_function	Clostridium	Clostridium thermocellum	288.147	1830.98	1478.41	4777.71	4082.78	4764.19
+GO:0051539	4 iron, 4 sulfur cluster binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	603.401	378.442	469.489	275.824	362.126	318.589
+GO:0051539	4 iron, 4 sulfur cluster binding	molecular_function	Escherichia	Escherichia coli	3.06032	0	1.89352	0	0	0.607421
+GO:0051539	4 iron, 4 sulfur cluster binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	10.8238	20.2126	20.4974	26.843	14.6219	21.6572
+GO:0051575	5'-deoxyribose-5-phosphate lyase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0705914	0	0	0
+GO:0051595	response to methylglyoxal	biological_process	Escherichia	Escherichia coli	0.298308	0	0.266082	0	0	0.0856334
+GO:0051603	proteolysis involved in cellular protein catabolic process	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0846632
+GO:0051604	protein maturation	biological_process	Escherichia	Escherichia coli	0.111629	0	0.117006	0	0	0.0375455
+GO:0051606	detection of stimulus	biological_process	Clostridium	Clostridium thermocellum	4.93358	18.9337	16.2534	63.1571	73.0955	145.364
+GO:0051607	defense response to virus	biological_process	Clostridium	Clostridium thermocellum	8.10355	3.93972	1.40096	17.8139	13.038	20.0466
+GO:0051607	defense response to virus	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	5.5248	2.45653	1.18021	1.52713	3.02595	2.5506
+GO:0051607	defense response to virus	biological_process	Escherichia	Escherichia coli	0.699349	0	0.795856	0	0	0.0697873
+GO:0051607	defense response to virus	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.814623	0.797092	1.12509	0.367456	1.15134	0.865938
+GO:0051692	cellular oligosaccharide catabolic process	biological_process	Escherichia	Escherichia coli	0.104191	0	0.0487149	0	0	0
+GO:0051726	regulation of cell cycle	biological_process	Clostridium	Clostridium thermocellum	2.1843	6.72123	11.0618	36.7201	30.3302	29.292
+GO:0051745	4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity	molecular_function	Clostridium	Clostridium thermocellum	10.7237	46.6363	29.7841	186.272	153.421	117.459
+GO:0051745	4-hydroxy-3-methylbut-2-en-1-yl diphosphate reductase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.63248	1.26724	0.451695	2.02813	2.76315	2.82221
+GO:0051775	response to redox state	biological_process	Clostridium	Clostridium thermocellum	2.40763	14.705	10.6371	34.7976	28.0143	40.7787
+GO:0051775	response to redox state	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	18.0234	42.4295	43.0026	32.0197	37.1684	34.5454
+GO:0051903	S-(hydroxymethyl)glutathione dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0939565	0	0	0.0336971
+GO:0051908	double-stranded DNA 5'-3' exodeoxyribonuclease activity	molecular_function	Escherichia	Escherichia coli	0.0198321	0	0	0	0	0
+GO:0051912	CoB--CoM heterodisulfide reductase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	4.45484	3.66033	3.96183	9.47997	5.81855	8.38619
+GO:0051920	peroxiredoxin activity	molecular_function	Clostridium	Clostridium thermocellum	16.6655	197.62	147.526	503.683	345.685	656.368
+GO:0051920	peroxiredoxin activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	245.438	538.765	456.814	334.051	461.701	429.056
+GO:0051920	peroxiredoxin activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.657255	2.56686	1.64981	0.267901	0.466917	0.631417
+GO:0051978	lysophospholipid transporter activity	molecular_function	Escherichia	Escherichia coli	0.0231618	0	0.0432119	0	0	0.0610558
+GO:0051989	coproporphyrinogen dehydrogenase activity	molecular_function	Clostridium	Clostridium thermocellum	0.562736	5.12201	2.95248	9.71208	10.8358	8.56095
+GO:0051989	coproporphyrinogen dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0368519	0	0	0
+GO:0051991	UDP-N-acetyl-D-glucosamine:N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine-diphosphoundecaprenol 4-beta-N-acetylglucosaminlytransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.54379	8.55392	5.82296	31.9707	23.7419	22.9967
+GO:0051991	UDP-N-acetyl-D-glucosamine:N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine-diphosphoundecaprenol 4-beta-N-acetylglucosaminlytransferase activity	molecular_function	Escherichia	Escherichia coli	0.0536877	0	0	0	0	0
+GO:0051992	UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine:undecaprenyl-phosphate transferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.48304	21.2983	23.8072	68.5512	55.4425	61.7905
+GO:0051992	UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine:undecaprenyl-phosphate transferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	102.047	48.8863	42.9468	45.5351	37.9895	28.5499
+GO:0051992	UDP-N-acetylmuramoyl-L-alanyl-D-glutamyl-meso-2,6-diaminopimelyl-D-alanyl-D-alanine:undecaprenyl-phosphate transferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0536634	0	0	0.0549132	0	0.142776
+GO:0052131	positive aerotaxis	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0235751
+GO:0052381	tRNA dimethylallyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.42358	5.89156	6.37795	27.6865	30.4344	39.958
+GO:0052381	tRNA dimethylallyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	3.11746	2.41849	1.54029	1.40437	1.32917	1.29456
+GO:0052381	tRNA dimethylallyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0606386	0	0	0	0	0
+GO:0052547	regulation of peptidase activity	biological_process	Clostridium	Clostridium thermocellum	1.07971	2.46217	0.685887	10.4612	7.32033	7.00399
+GO:0052591	sn-glycerol-3-phosphate:ubiquinone-8 oxidoreductase activity	molecular_function	Escherichia	Escherichia coli	0.0716727	0	0.0664868	0	0	0
+GO:0052618	coenzyme F420-0:L-glutamate ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0052619	coenzyme F420-1:gamma-L-glutamate ligase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.159629	0.229914	0.147994	0.366486	0.14248	0.265502
+GO:0052621	diguanylate cyclase activity	molecular_function	Escherichia	Escherichia coli	0.131169	0	0.0671634	0	0	0.122855
+GO:0052645	F420-0 metabolic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.420703	0.818608	0.96072	0.724417	0.181523	0.440326
+GO:0052653	3',5'-cyclic diguanylic acid metabolic process	biological_process	Escherichia	Escherichia coli	0.0269046	0	0.049932699999999997	0	0	0
+GO:0052654	L-leucine transaminase activity	molecular_function	Clostridium	Clostridium thermocellum	2.90122	27.9123	17.6762	74.296	70.4999	72.3582
+GO:0052654	L-leucine transaminase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.115427	0	0	0.0414585
+GO:0052654	L-leucine transaminase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.442746	0.534826	0.58977	0.205071	0.306767
+GO:0052655	L-valine transaminase activity	molecular_function	Clostridium	Clostridium thermocellum	2.90122	27.9123	17.6762	74.296	70.4999	72.3582
+GO:0052655	L-valine transaminase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.115427	0	0	0.0414585
+GO:0052655	L-valine transaminase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.442746	0.534826	0.58977	0.205071	0.306767
+GO:0052656	L-isoleucine transaminase activity	molecular_function	Clostridium	Clostridium thermocellum	2.90122	27.9123	17.6762	74.296	70.4999	72.3582
+GO:0052656	L-isoleucine transaminase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.115427	0	0	0.0414585
+GO:0052656	L-isoleucine transaminase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.442746	0.534826	0.58977	0.205071	0.306767
+GO:0052657	guanine phosphoribosyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	8.76042	9.12357	11.0711	12.0851	15.1185	13.2017
+GO:0052657	guanine phosphoribosyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.125603	0	0.23311	0	0	0.309904
+GO:0052657	guanine phosphoribosyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.634761	0.307761	0.0564054	0.0984227	0
+GO:0052665	tRNA (uracil-2'-O-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0862065	0	0	0	0	0
+GO:0052666	tRNA (cytosine-2'-O-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0862065	0	0	0	0	0
+GO:0052689	carboxylic ester hydrolase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0806165	0.619079	0.298965	0.988637	0.827684	0.858533
+GO:0052689	carboxylic ester hydrolase activity	molecular_function	Escherichia	Escherichia coli	0.52261	0	0.222735	0	0	0.0798124
+GO:0052692	raffinose alpha-galactosidase activity	molecular_function	Escherichia	Escherichia coli	0.0402961	0	0	0	0	0
+GO:0052693	epoxyqueuosine reductase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.182185	0	0	0
+GO:0052717	tRNA-specific adenosine-34 deaminase activity	molecular_function	Clostridium	Clostridium thermocellum	4.98695	33.4582	24.2697	95.8039	74.3148	108.515
+GO:0052717	tRNA-specific adenosine-34 deaminase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2.08128	3.25926	2.86254	0.867992	1.23995	2.77157
+GO:0052717	tRNA-specific adenosine-34 deaminase activity	molecular_function	Escherichia	Escherichia coli	0.068659	0	0	0	0	0
+GO:0052733	quinate 3-dehydrogenase (NADP+) activity	molecular_function	Escherichia	Escherichia coli	0.0327619	0	0	0	0	0
+GO:0052734	shikimate 3-dehydrogenase (NAD+) activity	molecular_function	Escherichia	Escherichia coli	0.0327619	0	0	0	0	0
+GO:0052737	pyruvate dehydrogenase (quinone) activity	molecular_function	Escherichia	Escherichia coli	0.046445	0	0	0	0	0
+GO:0052832	inositol monophosphate 3-phosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	37.3761	42.5571	34.4422	32.5891	40.4493	39.8263
+GO:0052832	inositol monophosphate 3-phosphatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.27587	0	0	0
+GO:0052832	inositol monophosphate 3-phosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0701415	0.06735	0.260354	0.0717752	0.156587	0
+GO:0052833	inositol monophosphate 4-phosphatase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	37.3761	42.5571	34.4422	32.5891	40.4493	39.8263
+GO:0052833	inositol monophosphate 4-phosphatase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.27587	0	0	0
+GO:0052833	inositol monophosphate 4-phosphatase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0701415	0.06735	0.260354	0.0717752	0.156587	0
+GO:0052855	ADP-dependent NAD(P)H-hydrate dehydratase activity	molecular_function	Clostridium	Clostridium thermocellum	2.71029	21.5149	19.8022	58.2358	63.1596	61.3673
+GO:0052855	ADP-dependent NAD(P)H-hydrate dehydratase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	41.9319	35.3397	35.2756	29.3285	37.2414	29.4029
+GO:0052855	ADP-dependent NAD(P)H-hydrate dehydratase activity	molecular_function	Escherichia	Escherichia coli	0.0351437	0	0	0	0	0
+GO:0052855	ADP-dependent NAD(P)H-hydrate dehydratase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0861822	0.0661832	0.191928	0.0705068	0.0615712	0.16053
+GO:0052856	NADHX epimerase activity	molecular_function	Escherichia	Escherichia coli	0.0351437	0	0	0	0	0
+GO:0052857	NADPHX epimerase activity	molecular_function	Escherichia	Escherichia coli	0.0351437	0	0	0	0	0
+GO:0052865	1-deoxy-D-xylulose 5-phosphate biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.50876	20.0741	11.6512	48.092	46.587	44.3945
+GO:0052865	1-deoxy-D-xylulose 5-phosphate biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	58.509	41.4332	32.2915	34.7667	42.3967	30.6407
+GO:0052875	riboflavin reductase (NADH) activity	molecular_function	Escherichia	Escherichia coli	0.086012	0	0.23753	0	0	0
+GO:0052890	oxidoreductase activity, acting on the CH-CH group of donors, with a flavin as acceptor	molecular_function	Escherichia	Escherichia coli	0.065864	0	0.0611642	0	0	0
+GO:0052906	tRNA (guanine(37)-N(1))-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.67734	8.31579	3.26426	21.8374	22.1119	21.0588
+GO:0052906	tRNA (guanine(37)-N(1))-methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	39.937	22.5368	17.8595	24.4585	29.2359	18.1588
+GO:0052906	tRNA (guanine(37)-N(1))-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0830956	0	0.43699	0	0	0
+GO:0052908	16S rRNA (adenine(1518)-N(6)/adenine(1519)-N(6))-dimethyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.480005	3.09628	2.75081	11.3416	10.0213	10.6301
+GO:0052908	16S rRNA (adenine(1518)-N(6)/adenine(1519)-N(6))-dimethyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	11.0203	9.38784	6.66771	7.82058	9.52142	8.62006
+GO:0052911	23S rRNA (guanine(745)-N(1))-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.151123	0	0	0	0	0
+GO:0052913	16S rRNA (guanine(966)-N(2))-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.826678	3.28045	1.94336	12.8537	9.63987	16.2693
+GO:0052914	16S rRNA (guanine(1207)-N(2))-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0551216	0	0	0	0	0
+GO:0052915	23S rRNA (guanine(2445)-N(2))-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0247901	0	0	0	0	0
+GO:0052916	23S rRNA (guanine(1835)-N(2))-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.04924	0	0.0913855	0	0	0
+GO:0052927	CTP:tRNA cytidylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0223111	0	0	0	0	0
+GO:0052927	CTP:tRNA cytidylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0052928	CTP:3'-cytidine-tRNA cytidylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0223111	0	0	0	0	0
+GO:0052928	CTP:3'-cytidine-tRNA cytidylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0052929	ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0223111	0	0	0	0	0
+GO:0052929	ATP:3'-cytidine-cytidine-tRNA adenylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.15365	0.0742451	0.0614043	0.0178615	0
+GO:0055062	phosphate ion homeostasis	biological_process	Escherichia	Escherichia coli	0.0724747	0	0	0	0	0
+GO:0055070	copper ion homeostasis	biological_process	Escherichia	Escherichia coli	0.0418759	0	0	0	0	0
+GO:0055072	iron ion homeostasis	biological_process	Clostridium	Clostridium thermocellum	0	0	0	0.0248701	0.0976414	0.048476
+GO:0055072	iron ion homeostasis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	6.08462	5.46879	4.18758	3.62868	3.38264	2.09136
+GO:0055072	iron ion homeostasis	biological_process	Escherichia	Escherichia coli	0.488852	0	0.713447	0	0	0.115806
+GO:0055085	transmembrane transport	biological_process	Clostridium	Clostridium thermocellum	10.823	32.2052	22.3919	176.205	153.093	89.4269
+GO:0055085	transmembrane transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	327.662	173.635	163.847	180.746	200.23	135.771
+GO:0055085	transmembrane transport	biological_process	Escherichia	Escherichia coli	4.98622	0	3.56746	0	0	1.42055
+GO:0055085	transmembrane transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.37418	1.60982	2.05965	3.62462	2.23375	1.89839
+GO:0055088	lipid homeostasis	biological_process	Escherichia	Escherichia coli	0.065864	0	0.0611642	0	0	0
+GO:0055114	oxidation-reduction process	biological_process	Clostridium	Clostridium thermocellum	194.097	2022.24	1047.27	6376.18	4231.67	7954.78
+GO:0055114	oxidation-reduction process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	25.4756	25.6189	24.403	11.5876	15.8201	15.0285
+GO:0055114	oxidation-reduction process	biological_process	Escherichia	Escherichia coli	1.07891	0	2.3085	0	0	0.127642
+GO:0055114	oxidation-reduction process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	1.96396	14.9282	6.80542	3.85818	1.87576	6.44889
+GO:0055129	L-proline biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	13.6731	70.1336	52.7249	157.35	138.219	140.283
+GO:0060698	endoribonuclease inhibitor activity	molecular_function	Escherichia	Escherichia coli	0.260807	0	0	0	0	0
+GO:0061077	chaperone-mediated protein folding	biological_process	Escherichia	Escherichia coli	1.00381	0	0.704742	0	0	0.13909
+GO:0061489	guanine import into cell	biological_process	Escherichia	Escherichia coli	0.0803249	0	0	0	0	0.0530681
+GO:0061593	sulfoquinovose isomerase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0826348	0	0	0
+GO:0061594	6-deoxy-6-sulfofructose kinase activity	molecular_function	Escherichia	Escherichia coli	0.065062	0	0	0	0	0
+GO:0061595	6-deoxy-6-sulfofructose-1-phosphate aldolase activity	molecular_function	Escherichia	Escherichia coli	0.066666	0	0	0	0	0
+GO:0061596	3-sulfolactaldehyde reductase activity	molecular_function	Escherichia	Escherichia coli	0.0303315	0	0	0	0	0
+GO:0061597	cyclic pyranopterin monophosphate synthase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	95.0111	26.1848	26.6875	16.0023	22.5185	15.4066
+GO:0061597	cyclic pyranopterin monophosphate synthase activity	molecular_function	Escherichia	Escherichia coli	0.057868	0	0	0	0	0
+GO:0061597	cyclic pyranopterin monophosphate synthase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.303388	0.349632	0.225036	0.589571	0.216899	0.685681
+GO:0061599	molybdopterin molybdotransferase activity	molecular_function	Escherichia	Escherichia coli	0.0447681	0	0	0	0	0
+GO:0061602	molybdenum cofactor cytidylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.169958	0	0.210286	0	0	0
+GO:0061603	molybdenum cofactor guanylyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0743471
+GO:0061603	molybdenum cofactor guanylyltransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.372502	0	0.303291	0	0.065745
+GO:0061634	alpha-D-xyloside xylohydrolase	molecular_function	Escherichia	Escherichia coli	0.0112042	0	0.109744	0	0	0
+GO:0061710	L-threonylcarbamoyladenylate synthase	molecular_function	Clostridium	Clostridium thermocellum	2.60104	14.9827	12.0892	30.5973	35.1039	40.2446
+GO:0061710	L-threonylcarbamoyladenylate synthase	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	2.76653	6.19433	3.21126	2.47634	1.9306	2.07118
+GO:0061710	L-threonylcarbamoyladenylate synthase	molecular_function	Escherichia	Escherichia coli	0.11491	0	0	0	0	0
+GO:0061711	N(6)-L-threonylcarbamoyladenine synthase	molecular_function	Clostridium	Clostridium thermocellum	1.08943	15.2844	12.2832	27.7742	29.4735	31.8847
+GO:0061711	N(6)-L-threonylcarbamoyladenine synthase	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	14.8289	7.57256	9.17675	5.33897	6.41807	10.4873
+GO:0061711	N(6)-L-threonylcarbamoyladenine synthase	molecular_function	Escherichia	Escherichia coli	0.0562639	0	0	0	0	0
+GO:0061711	N(6)-L-threonylcarbamoyladenine synthase	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.116927	0.192435	0.0620212	0.136711	0.178984	0.0888996
+GO:0061712	tRNA (N(6)-L-threonylcarbamoyladenosine(37)-C(2))-methylthiotransferase	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.124479	0.240552	0.0442191	0	0.229186
+GO:0065002	intracellular protein transmembrane transport	biological_process	Clostridium	Clostridium thermocellum	15.2639	39.6753	26.2876	208.83	146.464	110.982
+GO:0065002	intracellular protein transmembrane transport	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	103.649	85.5668	97.0939	74.2249	89.538	73.691
+GO:0065002	intracellular protein transmembrane transport	biological_process	Escherichia	Escherichia coli	0.130464	0	0.283087	0	0	0.0273587
+GO:0065002	intracellular protein transmembrane transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.479884	0.348138	0.905871	0.768238	0.663957	0.866585
+GO:0070006	metalloaminopeptidase activity	molecular_function	Clostridium	Clostridium thermocellum	8.05568	14.5777	9.44085	114.135	72.6202	68.1519
+GO:0070006	metalloaminopeptidase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	36.2657	12.3271	7.96299	13.5957	15.1914	12.7792
+GO:0070006	metalloaminopeptidase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.139965	0	0	0
+GO:0070006	metalloaminopeptidase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0648189	0.248864	0.420978	0.862173	0.28917	0.172463
+GO:0070008	serine-type exopeptidase activity	molecular_function	Escherichia	Escherichia coli	0.0127353	0	0	0	0	0
+GO:0070011	peptidase activity, acting on L-amino acid peptides	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0547174
+GO:0070038	rRNA (pseudouridine-N3-)-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	2.94551	26.2976	22.5284	68.8634	60.7609	81.1661
+GO:0070038	rRNA (pseudouridine-N3-)-methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	10.344	48.6971	24.3665	16.1115	22.4702	17.825
+GO:0070039	rRNA (guanosine-2'-O-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.0835087	0	0	0	0	0
+GO:0070040	rRNA (adenine-C2-)-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	1.7819	11.4019	8.76191	33.2804	31.5624	33.2572
+GO:0070041	rRNA (uridine-C5-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0773123	0	0	0
+GO:0070043	rRNA (guanine-N7-)-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.0839462	3.13698	3.18419	13.7784	10.109	6.86629
+GO:0070043	rRNA (guanine-N7-)-methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	10.8064	4.82642	7.18093	6.27677	8.21336	3.74494
+GO:0070043	rRNA (guanine-N7-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0.127353	0	0	0	0	0
+GO:0070084	protein initiator methionine removal	biological_process	Clostridium	Clostridium thermocellum	8.05568	14.5777	9.44085	114.135	72.6202	68.1519
+GO:0070084	protein initiator methionine removal	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	36.2657	12.3271	7.96299	13.5957	15.1914	12.7792
+GO:0070084	protein initiator methionine removal	biological_process	Escherichia	Escherichia coli	0	0	0.139965	0	0	0
+GO:0070084	protein initiator methionine removal	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0648189	0.248864	0.420978	0.862173	0.28917	0.172463
+GO:0070125	mitochondrial translational elongation	biological_process	Escherichia	Escherichia coli	0.0469554	0	0	0	0	0
+GO:0070180	large ribosomal subunit rRNA binding	molecular_function	Clostridium	Clostridium thermocellum	42.5327	96.4747	46.0233	629.277	477.498	339.832
+GO:0070180	large ribosomal subunit rRNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	72.3708	84.5407	72.6907	93.2416	126.52	113.958
+GO:0070180	large ribosomal subunit rRNA binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	2.82992	3.35387	5.81164	8.00151	3.70547	7.43319
+GO:0070181	small ribosomal subunit rRNA binding	molecular_function	Clostridium	Clostridium thermocellum	4.53786	13.9793	13.3934	45.292	45.279	39.6576
+GO:0070181	small ribosomal subunit rRNA binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	16.9989	10.1952	10.9968	12.2321	13.6259	11.1628
+GO:0070301	cellular response to hydrogen peroxide	biological_process	Escherichia	Escherichia coli	0.0263456	0	0.0546689	0	0	0.070046
+GO:0070402	NADPH binding	molecular_function	Clostridium	Clostridium thermocellum	1.5856	8.00737	3.75655	20.4672	19.2295	15.9648
+GO:0070402	NADPH binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	4.67053	4.78465	2.16822	5.04796	4.35649	2.48715
+GO:0070402	NADPH binding	molecular_function	Escherichia	Escherichia coli	0.0464207	0	0	0	0	0.24639
+GO:0070402	NADPH binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0	0	0.440599	0	0.071857
+GO:0070403	NAD+ binding	molecular_function	Clostridium	Clostridium thermocellum	6.95135	45.9196	41.1006	72.7585	83.0025	129.835
+GO:0070403	NAD+ binding	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	39.0074	73.6862	90.1666	38.8953	49.7602	41.129
+GO:0070403	NAD+ binding	molecular_function	Escherichia	Escherichia coli	0.0402961	0	0	0	0	0
+GO:0070417	cellular response to cold	biological_process	Escherichia	Escherichia coli	0.0285816	0	0	0	0	0.0380952
+GO:0070453	regulation of heme biosynthetic process	biological_process	Escherichia	Escherichia coli	0	0	0.0573753	0	0	0
+GO:0070475	rRNA base methylation	biological_process	Clostridium	Clostridium thermocellum	35.1663	237.713	263.565	597.064	572.21	797.742
+GO:0070475	rRNA base methylation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	125.45	139.18	167.218	58.9941	68.6063	50.3356
+GO:0070475	rRNA base methylation	biological_process	Escherichia	Escherichia coli	0.151123	0	0	0	0	0
+GO:0070481	nuclear-transcribed mRNA catabolic process, non-stop decay	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0070491	repressing transcription factor binding	molecular_function	Escherichia	Escherichia coli	0.0457645	0	0	0	0	0.0304632
+GO:0070574	cadmium ion transmembrane transport	biological_process	Escherichia	Escherichia coli	0.0237208	0	0.0220119	0	0	0
+GO:0070581	rolling circle DNA replication	biological_process	Escherichia	Escherichia coli	0.0241582	0	0	0	0	0
+GO:0070588	calcium ion transmembrane transport	biological_process	Escherichia	Escherichia coli	0.0880536	0	0	0	0	0
+GO:0070590	spore wall biogenesis	biological_process	Clostridium	Clostridium thermocellum	0.109733	0.31598	0.33938	1.38467	1.63286	1.58095
+GO:0070626	(S)-2-(5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido)succinate AMP-lyase (fumarate-forming) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	4.73713	3.81776	2.90485	3.76601	3.22935	2.67336
+GO:0070626	(S)-2-(5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido)succinate AMP-lyase (fumarate-forming) activity	molecular_function	Escherichia	Escherichia coli	0.03981	0	0	0	0	0
+GO:0070626	(S)-2-(5-amino-1-(5-phospho-D-ribosyl)imidazole-4-carboxamido)succinate AMP-lyase (fumarate-forming) activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.121496	0.350005	0.563694	0.559503	0.14465	0.107786
+GO:0070677	rRNA (cytosine-2'-O-)-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	3.29626	6.52502	3.96548	21.0496	18.4026	15.9098
+GO:0070677	rRNA (cytosine-2'-O-)-methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	1.04605	1.09856	0.176907	1.79801	1.31821	0.824318
+GO:0070677	rRNA (cytosine-2'-O-)-methyltransferase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.126794	0	0	0
+GO:0070689	L-threonine catabolic process to propionate	biological_process	Escherichia	Escherichia coli	0.387941	0	0.127967	0	0	0
+GO:0070814	hydrogen sulfide biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	0.170566	28.8948	17.7178	62.1958	54.7957	58.7528
+GO:0070814	hydrogen sulfide biosynthetic process	biological_process	Escherichia	Escherichia coli	0.405683	0	0	0	0	0
+GO:0070929	trans-translation	biological_process	Clostridium	Clostridium thermocellum	4.47212	48.2579	43.9077	95.8748	84.4923	122.216
+GO:0070929	trans-translation	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	75.2413	70.2379	87.0147	49.5934	62.1343	41.7394
+GO:0070966	nuclear-transcribed mRNA catabolic process, no-go decay	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0070967	coenzyme F420 binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.339924	0.246461	0	0.276647	0.0588891
+GO:0070981	L-asparagine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.00423	11.0108	9.29827	27.4214	27.3095	32.9501
+GO:0070981	L-asparagine biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	9.43158	29.0199	18.8658	23.913	24.1686	9.43613
+GO:0071025	RNA surveillance	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.250124	0.192875	0.0532718	0.0465311	0.138637
+GO:0071111	cyclic-guanylate-specific phosphodiesterase activity	molecular_function	Escherichia	Escherichia coli	0.543366	0	0.395628	0	0	0.189344
+GO:0071249	cellular response to nitrate	biological_process	Escherichia	Escherichia coli	0.0463478	0	0	0	0	0
+GO:0071250	cellular response to nitrite	biological_process	Escherichia	Escherichia coli	0.0463478	0	0	0	0	0
+GO:0071266	'de novo' L-methionine biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.11693	7.52813	8.59258	20.3668	24.8744	25.0777
+GO:0071266	'de novo' L-methionine biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.244572	0.104409	0.756839	0.862297	0.194176	0.506492
+GO:0071271	1-butanol biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0471013	0	0	0	0	0.0626728
+GO:0071310	cellular response to organic substance	biological_process	Escherichia	Escherichia coli	0.158827	0	0.0597659	0	0	0
+GO:0071424	rRNA (cytosine-N4-)-methyltransferase activity	molecular_function	Clostridium	Clostridium thermocellum	33.3844	226.311	254.804	563.783	540.647	764.485
+GO:0071424	rRNA (cytosine-N4-)-methyltransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	125.45	139.18	167.218	58.9941	68.6063	50.3356
+GO:0071436	sodium ion export	biological_process	Clostridium	Clostridium thermocellum	2.38104	17.75	13.8523	29.105	39.5093	53.9613
+GO:0071436	sodium ion export	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	57.6596	26.7981	29.3111	17.74	17.493	12.5063
+GO:0071436	sodium ion export	biological_process	Escherichia	Escherichia coli	0.111993	0	0	0	0	0
+GO:0071454	cellular response to anoxia	biological_process	Escherichia	Escherichia coli	0.0263456	0	0.0546689	0	0	0.070046
+GO:0071468	cellular response to acidic pH	biological_process	Escherichia	Escherichia coli	0	0	0.246461	0	0	0
+GO:0071470	cellular response to osmotic stress	biological_process	Escherichia	Escherichia coli	0.132797	0	0	0	0	0.0773546
+GO:0071474	cellular hyperosmotic response	biological_process	Escherichia	Escherichia coli	0.0972162	0	0.180425	0	0	0
+GO:0071555	cell wall organization	biological_process	Clostridium	Clostridium thermocellum	83.1564	304.364	272.41	761.72	699.107	771.248
+GO:0071555	cell wall organization	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	260.398	247.371	193.464	222.784	238.3	185.998
+GO:0071555	cell wall organization	biological_process	Escherichia	Escherichia coli	2.93117	0	1.80782	0	0	0.640666
+GO:0071577	zinc II ion transmembrane transport	biological_process	Escherichia	Escherichia coli	0.0237208	0	0.0220119	0	0	0
+GO:0071705	nitrogen compound transport	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0946559
+GO:0071713	para-aminobenzoyl-glutamate hydrolase activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0557199
+GO:0071805	potassium ion transmembrane transport	biological_process	Escherichia	Escherichia coli	0.207289	0	0	0	0	0
+GO:0071897	DNA biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	18.8045	14.4913	14.601	13.952	18.8738	12.0016
+GO:0071897	DNA biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0145824	0	0	0	0	0.0194033
+GO:0071897	DNA biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.110778	0.060769	0.117502	0.145714	0.0847716	0.126316
+GO:0071916	dipeptide transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.217035	0	0	0	0	0.0780984
+GO:0071949	FAD binding	molecular_function	Escherichia	Escherichia coli	0.250016	0	0.646329	0	0	0.0304632
+GO:0071949	FAD binding	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0465666	0.894313	0.691345	1.16711	0.852447	1.11433
+GO:0071963	establishment or maintenance of cell polarity regulating cell shape	biological_process	Escherichia	Escherichia coli	0.0255679	0	0	0	0	0
+GO:0071972	peptidoglycan L,D-transpeptidase activity	molecular_function	Escherichia	Escherichia coli	0.0143151	0	0	0	0	0
+GO:0071973	bacterial-type flagellum-dependent cell motility	biological_process	Clostridium	Clostridium thermocellum	56.1354	142.275	107.883	1459.48	1423.45	1202.2
+GO:0071973	bacterial-type flagellum-dependent cell motility	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	0.0268317	0	0	0	0	0
+GO:0071973	bacterial-type flagellum-dependent cell motility	biological_process	Escherichia	Escherichia coli	0.291211	0	0.439426	0	0	0.108982
+GO:0071978	bacterial-type flagellum-dependent swarming motility	biological_process	Escherichia	Escherichia coli	0.687416	0	0	0	0	0
+GO:0072344	rescue of stalled ribosome	biological_process	Escherichia	Escherichia coli	0.188405	0	0	0	0	0
+GO:0072348	sulfur compound transport	biological_process	Escherichia	Escherichia coli	0.300422	0	0	0	0	0
+GO:0072531	pyrimidine-containing compound transmembrane transport	biological_process	Escherichia	Escherichia coli	0.0219952	0	0	0	0	0.0584364
+GO:0072592	oxygen metabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	5102.29	13939.3	11938.1	4792.25	5139.37	6668.11
+GO:0075713	establishment of integrated proviral latency	biological_process	Escherichia	Escherichia coli	0.380626	0	0.0852059	0	0	0.155097
+GO:0080100	L-glutamine:2-oxoglutarate aminotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	0.21441	2.05887	0.309565	6.04406	8.5926	8.3998
+GO:0080130	L-phenylalanine:2-oxoglutarate aminotransferase activity	molecular_function	Clostridium	Clostridium thermocellum	4.86485	17.4735	15.7327	60.4082	63.6561	96.8323
+GO:0080130	L-phenylalanine:2-oxoglutarate aminotransferase activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	50.0765	13.7323	32.6144	4.60319	5.75173	6.46044
+GO:0080130	L-phenylalanine:2-oxoglutarate aminotransferase activity	molecular_function	Escherichia	Escherichia coli	0.142932	0	0	0	0	0
+GO:0080130	L-phenylalanine:2-oxoglutarate aminotransferase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.12485	0.0956809	0.138792	0.765801	0.267575	0.0995068
+GO:0080146	L-cysteine desulfhydrase activity	molecular_function	Escherichia	Escherichia coli	0	0	0.0854314	0	0	0
+GO:0080167	response to karrikin	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	15.1719	14.9984	15.1648	10.3004	13.3047	12.0245
+GO:0080176	xyloglucan 1,6-alpha-xylosidase activity	molecular_function	Escherichia	Escherichia coli	0.0112042	0	0.109744	0	0	0
+GO:0089714	UDP-N-acetyl-D-mannosamine dehydrogenase activity	molecular_function	Escherichia	Escherichia coli	0.130999	0	0.0405055	0	0	0
+GO:0090071	negative regulation of ribosome biogenesis	biological_process	Clostridium	Clostridium thermocellum	1.39243	22.0746	15.9619	51.3402	47.5091	73.1241
+GO:0090071	negative regulation of ribosome biogenesis	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	4.65391	2.99453	3.27865	1.59564	2.6893	3.31622
+GO:0090305	nucleic acid phosphodiester bond hydrolysis	biological_process	Escherichia	Escherichia coli	0.206973	0	0.232208	0	0	0.0883498
+GO:0090313	regulation of protein targeting to membrane	biological_process	Escherichia	Escherichia coli	0.0142665	0	0	0	0	0
+GO:0090501	RNA phosphodiester bond hydrolysis	biological_process	Escherichia	Escherichia coli	0.0369908	0	0	0	0	0
+GO:0090502	RNA phosphodiester bond hydrolysis, endonucleolytic	biological_process	Escherichia	Escherichia coli	1.1593	0	0	0	0	0
+GO:0090503	RNA phosphodiester bond hydrolysis, exonucleolytic	biological_process	Escherichia	Escherichia coli	0	0	0.187146	0	0	0.0883498
+GO:0090540	bacterial cellulose biosynthetic process	biological_process	Escherichia	Escherichia coli	1.24636	0	0	0	0	0
+GO:0090582	protein-phosphocysteine-D-fructose-phosphotransferase system transporter activity	molecular_function	Escherichia	Escherichia coli	0	0	0	0	0	0.0209879
+GO:0090589	protein-phosphocysteine-trehalose phosphotransferase system transporter activity	molecular_function	Escherichia	Escherichia coli	0.0383275	0	0	0	0	0.0431401
+GO:0090613	5'-deoxyadenosine deaminase activity	molecular_function	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0428724	0	0.0795225	0	0	0.0570135
+GO:0090614	5'-methylthioadenosine deaminase activity	molecular_function	Clostridium	Clostridium thermocellum	2.16138	9.32091	3.97432	40.4601	33.0883	28.9094
+GO:0097054	L-glutamate biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0766064	0	0	0	0	0
+GO:0097056	selenocysteinyl-tRNA(Sec) biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.40476	16.8858	13.3064	39.3101	43.4919	37.9766
+GO:0097056	selenocysteinyl-tRNA(Sec) biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	21.253	22.6975	16.1781	22.7479	24.3709	26.15
+GO:0097056	selenocysteinyl-tRNA(Sec) biosynthetic process	biological_process	Escherichia	Escherichia coli	0.118871	0	0	0	0	0
+GO:0097056	selenocysteinyl-tRNA(Sec) biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.139675	0.167605	0.22675	0.303739	0.15587	0.232323
+GO:0097098	DNA/RNA hybrid annealing activity	molecular_function	Escherichia	Escherichia coli	0.0579166	0	0.0179072	0	0	0.0256771
+GO:0097171	ADP-L-glycero-beta-D-manno-heptose biosynthetic process	biological_process	Escherichia	Escherichia coli	0.257234	0	0.282501	0	0	0
+GO:0097173	N-acetylmuramic acid catabolic process	biological_process	Escherichia	Escherichia coli	0.133721	0	0	0	0	0
+GO:0097175	1,6-anhydro-N-acetyl-beta-muramic acid catabolic process	biological_process	Escherichia	Escherichia coli	0.065062	0	0	0	0	0
+GO:0097264	self proteolysis	biological_process	Clostridium	Clostridium thermocellum	3.58145	16.78	9.44676	44.9418	44.3139	57.1423
+GO:0097264	self proteolysis	biological_process	Escherichia	Escherichia coli	0.292548	0	0.320255	0	0	0.0456625
+GO:0097588	archaeal or bacterial-type flagellum-dependent cell motility	biological_process	Clostridium	Clostridium thermocellum	13.7278	62.6596	40.8665	354.209	319.508	260.352
+GO:0098655	cation transmembrane transport	biological_process	Escherichia	Escherichia coli	0.610712	0	0	0	0	0.0281348
+GO:1900190	regulation of single-species biofilm formation	biological_process	Escherichia	Escherichia coli	0.0483165	0	0	0	0	0
+GO:1900191	negative regulation of single-species biofilm formation	biological_process	Escherichia	Escherichia coli	1.52821	0	0	0	0	0
+GO:1900751	4-(trimethylammonio)butanoate transport	biological_process	Escherichia	Escherichia coli	0.0349249	0	0	0	0	0
+GO:1900753	doxorubicin transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0	0.391685	0.32851	0.1772	0	0.225143
+GO:1901137	carbohydrate derivative biosynthetic process	biological_process	Clostridium	Clostridium thermocellum	2.87425	5.07356	2.99064	34.4445	23.9786	17.6544
+GO:1901137	carbohydrate derivative biosynthetic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	16.418	12.2322	8.50232	16.6672	18.6474	15.7124
+GO:1901137	carbohydrate derivative biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0289704	0	0	0	0	0
+GO:1901137	carbohydrate derivative biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.119795	0.431311	0.305731	0.612874	0.320878	0.91629
+GO:1901264	carbohydrate derivative transport	biological_process	Escherichia	Escherichia coli	0.0959524	0	0	0	0	0.0780984
+GO:1901285	5,6,7,8-tetrahydromethanopterin biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.170687	0.166391	0.479796	0.177249	0.232048	0.115288
+GO:1901530	response to hypochlorite	biological_process	Escherichia	Escherichia coli	0.174382	0	0	0	0	0
+GO:1901652	response to peptide	biological_process	Escherichia	Escherichia coli	0.0514031	0	0	0	0	0
+GO:1901682	sulfur compound transmembrane transporter activity	molecular_function	Escherichia	Escherichia coli	0.300422	0	0	0	0	0
+GO:1902021	regulation of bacterial-type flagellum-dependent cell motility	biological_process	Escherichia	Escherichia coli	0.0604685	0	0	0	0	0
+GO:1902201	negative regulation of bacterial-type flagellum-dependent cell motility	biological_process	Escherichia	Escherichia coli	0.519645	0	0	0	0	0.122855
+GO:1902209	negative regulation of bacterial-type flagellum assembly	biological_process	Escherichia	Escherichia coli	0.0632148	0	0	0	0	0
+GO:1902475	L-alpha-amino acid transmembrane transport	biological_process	Escherichia	Escherichia coli	0.707175	0	0.523098	0	0	0.179351
+GO:1902599	sulfathiazole transmembrane transport	biological_process	Escherichia	Escherichia coli	0.0266372	0	0.0494366	0	0	0
+GO:1902760	Mo(VI)-molybdopterin cytosine dinucleotide biosynthetic process	biological_process	Escherichia	Escherichia coli	0.169958	0	0.210286	0	0	0
+GO:1902765	L-arginine import into cell	biological_process	Escherichia	Escherichia coli	0.0835087	0	0.154985	0	0	0
+GO:1902777	6-sulfoquinovose(1-) catabolic process	biological_process	Escherichia	Escherichia coli	0.162084	0	0.0826348	0	0	0
+GO:1903401	L-lysine transmembrane transport	biological_process	Escherichia	Escherichia coli	0.129711	0	0	0	0	0
+GO:1903506	regulation of nucleic acid-templated transcription	biological_process	Escherichia	Escherichia coli	0.0604685	0	0	0	0	0
+GO:1903658	positive regulation of type IV pilus biogenesis	biological_process	Escherichia	Escherichia coli	0.201602	0	0.187552	0	0	0
+GO:1903716	guanine transmembrane transport	biological_process	Escherichia	Escherichia coli	0.0803249	0	0	0	0	0.0530681
+GO:1903785	L-valine transmembrane transport	biological_process	Escherichia	Escherichia coli	0.26941	0	0	0	0	0
+GO:1903791	uracil transmembrane transport	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.0548468
+GO:1903825	organic acid transmembrane transport	biological_process	Escherichia	Escherichia coli	0.0374282	0	0.0694638	0	0	0
+GO:1903874	ferrous iron transmembrane transport	biological_process	Escherichia	Escherichia coli	0.135349	0	0	0	0	0
+GO:1990663	dihydroorotate dehydrogenase (fumarate) activity	molecular_function	Coprothermobacter	Coprothermobacter proteolyticus	0.864033	0.484005	0.13365	0.257804	0.353627	0.431174
+GO:2000142	regulation of DNA-templated transcription, initiation	biological_process	Escherichia	Escherichia coli	0	0	0.0968433	0	0	0
+GO:2000143	negative regulation of DNA-templated transcription, initiation	biological_process	Escherichia	Escherichia coli	1.42047	0	0.406363	0	0	0
+GO:2000144	positive regulation of DNA-templated transcription, initiation	biological_process	Escherichia	Escherichia coli	0.090727	0	0	0	0	0
+GO:2000145	regulation of cell motility	biological_process	Escherichia	Escherichia coli	0.16534	0	0	0	0	0
+GO:2000147	positive regulation of cell motility	biological_process	Escherichia	Escherichia coli	1.05166	0	0	0	0	0
+GO:2000186	negative regulation of phosphate transmembrane transport	biological_process	Escherichia	Escherichia coli	0	0	0	0	0	0.112378
+GO:2000186	negative regulation of phosphate transmembrane transport	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.0476602	0.184127	1.33312	0.689474	0.256333	0.636106
+GO:2000678	negative regulation of transcription regulatory region DNA binding	biological_process	Escherichia	Escherichia coli	0.0430911	0	0	0	0	0
+GO:2000884	glucomannan catabolic process	biological_process	Clostridium	Clostridium thermocellum	7.87794	11.7939	11.5945	20.9763	16.3192	17.9495
+GO:2001059	D-tagatose 6-phosphate catabolic process	biological_process	Clostridium	Clostridium thermocellum	9.86686	28.7165	21.6438	133.033	107.045	143.081
+GO:2001059	D-tagatose 6-phosphate catabolic process	biological_process	Coprothermobacter	Coprothermobacter proteolyticus	125.074	105.814	111.725	74.0842	99.1241	73.0471
+GO:2001059	D-tagatose 6-phosphate catabolic process	biological_process	Escherichia	Escherichia coli	0.191467	0	0.0810561	0	0	0
+GO:2001070	starch binding	molecular_function	Clostridium	Clostridium thermocellum	11.5	46.4104	40.8239	383.819	405.859	540.485
+GO:2001118	tetrahydromethanopterin biosynthetic process	biological_process	Methanothermobacter	Methanothermobacter thermautotrophicus	0.265619	0.71938	1.42789	0.202194	0.11852	0.439097
+GO:2001295	malonyl-CoA biosynthetic process	biological_process	Escherichia	Escherichia coli	0.0405149	0	0.150294	0	0	0.0539089
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/t_output.tabular	Tue Jun 23 11:45:29 2020 +0000
@@ -0,0 +1,5 @@
+id	name	rank	T4A	T4B	T4C	T7A	T7B	T7C
+1	Clostridium	genus	68.36603	60.78776	68.49482	34.51004	38.22246	8.90992
+2	Coprothermobacter	genus	31.23635	38.9515	31.0739	64.59208	60.9348	90.44415
+4	Methanothermobacter	genus	0.3807	0.26075	0.43128	0.83333	0.77289	0.57389
+3	Escherichia	genus	0.01692	NA	NA	0.06455	0.06985	0.07204