changeset 2:05766022dfc4 draft

"planemo upload for repository https://github.com/asaim/galaxytools/tree/master/tools/compare_humann2_output commit dc55dc3b5275d1d6aac390698c0c6e0ab8fbf2f7"
author bebatut
date Mon, 14 Sep 2020 13:50:30 +0000
parents c1aca37cb1fc
children eaa95ea1195c
files compare_humann2_output.py compare_humann2_output.xml more_abundant_output_file similar_output_file specific_to_sample1.txt specific_to_sample2.txt test-data/more_abundant_pathways.tabular test-data/sample_1_specific_pathways.txt test-data/sample_2_specific_pathways.txt test-data/sample_similar_pathways.tabular
diffstat 10 files changed, 3819 insertions(+), 3787 deletions(-) [+]
line wrap: on
line diff
--- a/compare_humann2_output.py	Wed Apr 20 09:15:27 2016 -0400
+++ b/compare_humann2_output.py	Mon Sep 14 13:50:30 2020 +0000
@@ -1,17 +1,15 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 
-import sys
-import os
 import argparse
-import re
+
 
-def extract_abundances(filepath, nb_charact_to_extract):
+def extract_abundances(fp, nb_charact_to_extract):
     abundances = {}
     more_abund_charact = []
     abund_sum = 0
-    with open(filepath, 'r') as abundance_file:
-        for line in abundance_file.readlines()[1:]:
+    with open(fp, 'r') as abundance_f:
+        for line in abundance_f.readlines()[1:]:
             split_line = line[:-1].split('\t')
             charact_id = split_line[0]
             abund = float(split_line[1])
@@ -22,117 +20,134 @@
                 more_abund_charact.append(charact_id)
             else:
                 best_pos = None
-                for i in range(len(more_abund_charact)-1,-1,-1):
+                for i in range(len(more_abund_charact)-1, -1, -1):
                     if abundances[more_abund_charact[i]] < abund:
                         best_pos = i
                     else:
                         break
-                if best_pos != None:
+                if best_pos is not None:
                     tmp_more_abund_charact = more_abund_charact
                     more_abund_charact = tmp_more_abund_charact[:best_pos]
                     more_abund_charact += [charact_id]
                     more_abund_charact += tmp_more_abund_charact[best_pos:-1]
     return abundances, more_abund_charact
 
+
 def format_characteristic_name(all_name):
     if all_name.find(':') != -1:
         charact_id = all_name.split(':')[0]
-        charact_name = all_name.split(':')[1][1:]
+        char_name = all_name.split(':')[1][1:]
     else:
         charact_id = all_name
-        charact_name = ''
+        char_name = ''
 
-    charact_name = charact_name.replace('/',' ')
-    charact_name = charact_name.replace('-',' ')
-    charact_name = charact_name.replace("'",'')
-    if charact_name.find('(') != -1 and charact_name.find(')') != -1:
-        open_bracket = charact_name.find('(')
-        close_bracket = charact_name.find(')')+1
-        charact_name = charact_name[:open_bracket] + charact_name[close_bracket:]
-    return charact_id,charact_name
+    char_name = char_name.replace('/', ' ')
+    char_name = char_name.replace('-', ' ')
+    char_name = char_name.replace("'", '')
+    if char_name.find('(') != -1 and char_name.find(')') != -1:
+        open_bracket = char_name.find('(')
+        close_bracket = char_name.find(')')+1
+        char_name = char_name[:open_bracket] + char_name[close_bracket:]
+    return charact_id, char_name
 
-def write_more_abundant_charat(abundances,more_abund_charact, output_filepath):
-    with open(output_filepath,'w') as output_file:
-        output_file.write('id\tname\t')
-        output_file.write('\t'.join(abundances.keys()) + '\n')
+
+def write_more_abundant_charat(abundances, more_abund_charact, output_fp):
+    with open(output_fp, 'w') as output_f:
+        output_f.write('id\tname\t%s\n' % '\t'.join(abundances.keys()))
 
         for mac in more_abund_charact:
-            charact_id,charact_name = format_characteristic_name(mac)
-            output_file.write(charact_id + '\t' + charact_name)
+            charact_id, charact_name = format_characteristic_name(mac)
+            output_f.write('%s\t%s' % (charact_id, charact_name))
             for sample in abundances:
                 abund = abundances[sample].get(mac, 0)
-                output_file.write('\t' + str(abund))
-            output_file.write('\n')
+                output_f.write('\t%s' % (abund))
+            output_f.write('\n')
+
 
-def extract_similar_characteristics(abundances, sim_output_filepath,
-    specific_output_files):
-    sim_characteristics = set(abundances[abundances.keys()[0]].keys())
-    for sample in abundances.keys()[1:]:
-        sim_characteristics.intersection_update(abundances[sample].keys())
-    print 'Similar between all samples:', len(sim_characteristics)
+def extract_similar_characteristics(abund, sim_output_fp, output_files):
+    abund_keys = list(abund)
+    sim_characteristics = set(abund[abund_keys[0]].keys())
+    for sample in abund_keys[1:]:
+        sim_characteristics.intersection_update(abund[sample].keys())
+    print('Similar between all samples: %s' % len(sim_characteristics))
 
-    with open(sim_output_filepath, 'w') as sim_output_file:
-        sim_output_file.write('id\tname\t' + '\t'.join(abundances.keys()) + '\n')
+    with open(sim_output_fp, 'w') as sim_output_f:
+        sim_output_f.write('id\tname\t%s\n' % '\t'.join(abund_keys))
         for charact in list(sim_characteristics):
-            charact_id,charact_name = format_characteristic_name(charact)
-            sim_output_file.write(charact_id + '\t' + charact_name)
-            for sample in abundances.keys():
-                sim_output_file.write('\t' + str(abundances[sample][charact]))
-            sim_output_file.write('\n')
+            charact_id, charact_name = format_characteristic_name(charact)
+            sim_output_f.write('%s\t%s' % (charact_id, charact_name))
+            for sample in abund_keys:
+                sim_output_f.write('\t%s' % abund[sample][charact])
+            sim_output_f.write('\n')
 
-    print 'Specific to samples:'
-    diff_characteristics = {}
-    for i in range(len(abundances.keys())):
-        sample = abundances.keys()[i]
-        print ' ', sample, ""
-        print '    All:', len(abundances[sample].keys())
-        diff_characteristics[sample] = set(abundances[sample].keys())
-        diff_characteristics[sample].difference_update(sim_characteristics)
-        print '    Number of specific characteristics:', 
-        print len(diff_characteristics[sample])
-        print '    Percentage of specific characteristics:',
-        print 100*len(diff_characteristics[sample])/(1.*len(abundances[sample].keys()))
+    print('Specific to samples:')
+    diff_char = {}
+    for i in range(len(abund_keys)):
+        sample = abund_keys[i]
+        print(' %s' % sample )
+        print('    All: %s' % len(abund[sample].keys()))
+        diff_char[sample] = set(abund[sample].keys())
+        diff_char[sample].difference_update(sim_characteristics)
+        perc = 100*len(diff_char[sample])/(1.*len(abund[sample].keys()))
+        print('    Number of specific characteristics: %s' % len(diff_char[sample]))
+        print('    Percentage of specific characteristics: %s' % perc)
 
         relative_abundance = 0
-        with open(specific_output_files[i], 'w') as output_file:
-            output_file.write('id\tname\tabundances\n')
-            for charact in list(diff_characteristics[sample]):
-                charact_id,charact_name = format_characteristic_name(charact)
-                output_file.write(charact_id + '\t' + charact_name + '\t')
-                output_file.write(str(abundances[sample][charact]) + '\n')
-                relative_abundance += abundances[sample][charact]
-        print '    Relative abundance of specific characteristics(%):', relative_abundance
+        with open(output_files[i], 'w') as output_f:
+            output_f.write('id\tname\tabundances\n')
+            for charact in list(diff_char[sample]):
+                charact_id, charact_name = format_characteristic_name(charact)
+                output_f.write('%s\t%s' % (charact_id, charact_name))
+                output_f.write('%s\n' % abund[sample][charact])
+                relative_abundance += abund[sample][charact]
+        print('    Relative abundance of specific characteristics: %s' % relative_abundance)
 
     return sim_characteristics
 
+
 def compare_humann2_output(args):
-    abundances = {}
+    abund = {}
     more_abund_charact = []
 
     for i in range(len(args.sample_name)):
-        abundances[args.sample_name[i]], mac = extract_abundances(args.charact_input_file[i],
+        abund[args.sample_name[i]], mac = extract_abundances(
+            args.charact_input_fp[i],
             args.most_abundant_characteristics_to_extract)
         more_abund_charact += mac
 
-    write_more_abundant_charat(abundances, list(set(more_abund_charact)), 
-        args.more_abundant_output_file)
-    sim_characteristics = extract_similar_characteristics(abundances, 
-        args.similar_output_file, args.specific_output_file)
+    write_more_abundant_charat(
+        abund,
+        list(set(more_abund_charact)),
+        args.more_abundant_output_fp)
+    extract_similar_characteristics(
+        abund,
+        args.similar_output_fp,
+        args.specific_output_fp)
+
 
 if __name__ == '__main__':
     parser = argparse.ArgumentParser()
     parser.add_argument('--sample_name', required=True, action='append')
-    parser.add_argument('--charact_input_file', required=True, action='append')
-    parser.add_argument('--most_abundant_characteristics_to_extract', required=True,
-        type = int)
-    parser.add_argument('--more_abundant_output_file', required=True)
-    parser.add_argument('--similar_output_file', required=True)
-    parser.add_argument('--specific_output_file', required=True,action='append')
+    parser.add_argument('--charact_input_fp', required=True, action='append')
+    parser.add_argument(
+        '--most_abundant_characteristics_to_extract',
+        required=True,
+        type=int)
+    parser.add_argument('--more_abundant_output_fp', required=True)
+    parser.add_argument('--similar_output_fp', required=True)
+    parser.add_argument(
+        '--specific_output_fp',
+        required=True,
+        action='append')
     args = parser.parse_args()
 
-    if len(args.sample_name) != len(args.charact_input_file):
-        raise ValueError("Same number of values (in same order) are expected for --sample_name and --charact_input_file")
-    if len(args.sample_name) != len(args.specific_output_file):
-        raise ValueError("Same number of values (in same order) are expected for --sample_name and --specific_output_file")
+    if len(args.sample_name) != len(args.charact_input_fp):
+        string = "Same number of values (in same order) are expected for "
+        string += "--sample_name and --charact_input_fp"
+        raise ValueError(string)
+    if len(args.sample_name) != len(args.specific_output_fp):
+        string = "Same number of values (in same order) are expected for "
+        string += "--sample_name and --specific_output_fp"
+        raise ValueError(string)
 
-    compare_humann2_output(args)
\ No newline at end of file
+    compare_humann2_output(args)
--- a/compare_humann2_output.xml	Wed Apr 20 09:15:27 2016 -0400
+++ b/compare_humann2_output.xml	Mon Sep 14 13:50:30 2020 +0000
@@ -1,73 +1,93 @@
-<tool id="compare_humann2_output" name="Compare outputs of HUMAnN2 for several samples" version="0.1.0">
+<tool id="compare_humann2_output" name="Compare outputs of HUMAnN2 for several samples" version="0.2.0">
     <description>and extract similar and specific information</description>
-
-    <requirements>
-    </requirements>
-
-    <stdio>
-        <exit_code range="1:" />
-        <exit_code range=":-1" />
-    </stdio>
-
-    <version_command></version_command>
-
-    <command><![CDATA[
+    <command detect_errors="exit_code"><![CDATA[
         mkdir specifics 
         &&
 
         python $__tool_directory__/compare_humann2_output.py
-            #for $sample in $samples:
-                --sample_name "${sample.sample_name}"
-                --charact_input_file "${sample.input}"
-                --specific_output_file "specifics/specific_to_${sample.sample_name}.txt"
+            #for $sample in $samples
+                --sample_name '$sample.sample_name'
+                --charact_input_fp '$sample.charact_input_fp'
+                --specific_output_fp 'specifics/specific_to_${sample.sample_name}.txt'
             #end for
-
-            --most_abundant_characteristics_to_extract $charact_nb
-            --more_abundant_output_file $more_abundant_output_file
-            --similar_output_file $similar_output_file
+            --most_abundant_characteristics_to_extract $most_abundant_characteristics_to_extract
+            --more_abundant_output_fp '$more_abundant_output_file'
+            --similar_output_fp '$similar_output_file'
             > $log
-                
     ]]></command>
-
     <inputs>
         <repeat name="samples" title="Add sample and input file (HUMAnN2 output after normalization)" >
-            <param name="sample_name" type="text" label="Name of the sample" help="(--sample_name)"/>
-            <param name="input" format="txt,tabular" type="data" label="Input file corresponding to HUMAnN2 output" help="The HUMAnN2 output file contains relative abundance of gene families or pathways (after normalization, --charact_input_file)"/>
+            <param argument="sample_name" type="text" label="Name of the sample"/>
+            <param argument="charact_input_fp" format="txt,tabular" type="data" label="Input file corresponding to HUMAnN2 output" help="The HUMAnN2 output file contains relative abundance of gene families or pathways (after normalization"/>
         </repeat>
-
-        <param name="charact_nb" type="integer" value="10" label="Number of most abundant characteristics to extract for each sample" help="(--most_abundant_characteristics_to_extract)"/>
+        <param argument="most_abundant_characteristics_to_extract" type="integer" value="10" label="Number of most abundant characteristics to extract for each sample"/>
     </inputs>
-
     <outputs>
         <data name="more_abundant_output_file" format="tabular"
             label="${tool.name} on ${on_string}: More abundant characteristics for each sample" />
         <data name="similar_output_file" format="tabular"
             label="${tool.name} on ${on_string}: Similar characteristics and the relative abundances for all samples" />
         <data name="log" format="txt"
-            label="${tool.name} on ${on_string}: Log" />
+            label="${tool.name} on ${on_string}: Log" hidden="true"/>
         <collection name="specific_files" type="list">
             <discover_datasets pattern="__designation_and_ext__" directory="specifics"/>
         </collection>
-
     </outputs>
-
     <tests>
         <test>
-            <param name="samples_0|sample_name" value="sample1"/>
-            <param name="samples_0|input" value="sample_1_pathway_abundances.tabular"/>
-            <param name="samples_1|sample_name" value="sample2"/>
-            <param name="samples_1|input" value="sample_2_pathway_abundances.tabular"/>
-            <param name="charact_nb" value="10"/>
-            <output name="more_abundant_output_file" file="more_abundant_pathways.tabular"/>
-            <output name="similar_output_file" file="sample_similar_pathways.tabular"/>
-            <output name="log" file="sample_comparison_log.txt"/>
+            <repeat name="samples">
+                <param name="sample_name" value="sample1"/>
+                <param name="charact_input_fp" value="sample_1_pathway_abundances.tabular"/>
+            </repeat>
+            <repeat name="samples">
+                <param name="sample_name" value="sample2"/>
+                <param name="charact_input_fp" value="sample_2_pathway_abundances.tabular"/>
+            </repeat>
+            <param name="most_abundant_characteristics_to_extract" value="10"/>
+            <output name="more_abundant_output_file">
+                <assert_contents>
+                    <has_n_columns n="4"/>
+                    <has_n_lines n="16"/>
+                    <has_text text="aerobic respiration I |g__Rhodobacter.s__Rhodobacter_sphaeroides"/>
+                    <has_text text="phytol degradation|g__Staphylococcus.s__Staphylococcus_aureus"/>
+                </assert_contents>
+            </output>
+            <output name="similar_output_file">
+                <assert_contents>
+                    <has_n_columns n="4"/>
+                    <has_n_lines n="1921"/>
+                    <has_text text="superpathway of sulfur amino acid biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis"/>
+                    <has_text text="tetrapyrrole biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa"/>
+                </assert_contents>
+            </output>
+            <output name="log">
+                <assert_contents>
+                    <has_n_lines n="12"/>
+                    <has_line line="Similar between all samples: 1920"/>
+                    <has_line line="    Number of specific characteristics: 392"/>
+                    <has_line line="    Number of specific characteristics: 1335"/>
+                </assert_contents>
+            </output>
             <output_collection name="specific_files" type="list">
-                <element name="specific_to_sample1" file="sample_1_specific_pathways.txt" />
-                <element name="specific_to_sample2" file="sample_2_specific_pathways.txt" />
+                <element name="specific_to_sample1">
+                    <assert_contents>
+                        <has_n_columns n="3"/>
+                        <has_n_lines n="393"/>
+                        <has_text text="GLUCOSE1PMETAB-PWY"/>
+                        <has_text text="inosine 5 phosphate biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus"/>
+                    </assert_contents>
+                </element>
+                <element name="specific_to_sample2">
+                    <assert_contents>
+                        <has_n_columns n="3"/>
+                        <has_n_lines n="1336"/>
+                        <has_text text="PEPTIDOGLYCANSYN-PWY"/>
+                        <has_text text="nitrate reduction V |g__Deinococcus.s__Deinococcus_radiodurans"/>
+                    </assert_contents>
+                </element>
             </output_collection>
         </test>
     </tests>
-
     <help><![CDATA[
 **What it does**
 
@@ -80,7 +100,4 @@
   * Specific gene families and pathways for each samples and the relative abundances of these specific characteristics
 
     ]]></help>
-
-    <citations>
-    </citations>
 </tool>
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/more_abundant_output_file	Mon Sep 14 13:50:30 2020 +0000
@@ -0,0 +1,16 @@
+id	name	sample1	sample2
+PWY-3781	aerobic respiration I |g__Rhodobacter.s__Rhodobacter_sphaeroides	45855.05069573	7356.870952820001
+PWY-3781	aerobic respiration I |g__Staphylococcus.s__Staphylococcus_epidermidis	29048.52870919	8522.11671136
+PWY-3781	aerobic respiration I |g__Escherichia.s__Escherichia_coli	11428.460877009999	3504.5920137499998
+PWY66-389	phytol degradation|g__Staphylococcus.s__Staphylococcus_aureus	31048.84820709	3743.72936189
+PWY-3781	aerobic respiration I |g__Acinetobacter.s__Acinetobacter_baumannii	0	10661.254254039999
+PWY66-389	phytol degradation	97948.05701095	126799.82204952001
+PWY-3781	aerobic respiration I |g__Deinococcus.s__Deinococcus_radiodurans	243.95473535000002	51964.068130520005
+PWY-3781	aerobic respiration I |g__Neisseria.s__Neisseria_meningitidis	142.20887338999998	6845.43838944
+PWY-3781	aerobic respiration I |unclassified	3699.6275521400003	1118.9863796
+PWY-3781	aerobic respiration I |g__Pseudomonas.s__Pseudomonas_aeruginosa	7491.56572789	2317.68361723
+PWY-3781	aerobic respiration I 	146949.34957509	137931.17561632
+PWY-3781	aerobic respiration I |g__Staphylococcus.s__Staphylococcus_aureus	31496.03040367	2108.46546528
+PWY-3781	aerobic respiration I |g__Helicobacter.s__Helicobacter_pylori	475.85206385000004	7486.51278743
+PWY-3781	aerobic respiration I |g__Propionibacterium.s__Propionibacterium_acnes	307.60781448	14416.040401769998
+PWY-3781	aerobic respiration I |g__Actinomyces.s__Actinomyces_odontolyticus	0	2772.58262062
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/similar_output_file	Mon Sep 14 13:50:30 2020 +0000
@@ -0,0 +1,1921 @@
+id	name	sample1	sample2
+PWY-821	superpathway of sulfur amino acid biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis	10880.14677635	2695.08502543
+PWY-6318	L phenylalanine degradation IV |g__Streptococcus.s__Streptococcus_mutans	1598.93459295	477.28733176000003
+P105-PWY	TCA cycle IV |unclassified	417.22426747	298.08991033
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Escherichia.s__Escherichia_coli	3776.83864118	695.70708218
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis	12410.21918677	3402.87724422
+PWY-3841	folate transformations II|g__Rhodobacter.s__Rhodobacter_sphaeroides	4568.53278951	242.13420068999997
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	25871.992567709996	3493.0071529899997
+PWY-5345	superpathway of L methionine biosynthesis 	45016.41648231	40305.835161430005
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	452.55553718000004	238.97560409
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	187.59460807	21248.594380040002
+REDCITCYC	TCA cycle VIII 	48658.12042871	30732.22044426
+PWYG-321	mycolate biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	20343.72192787	3516.1051310700004
+PWY-7196	superpathway of pyrimidine ribonucleosides salvage	40398.22784233	41832.91851937
+PWY-6606	guanosine nucleotides degradation II|g__Rhodobacter.s__Rhodobacter_sphaeroides	2736.23201469	471.84886441
+PWY-5897	superpathway of menaquinol 11 biosynthesis|g__Escherichia.s__Escherichia_coli	3694.00663281	527.00700198
+PWY-4981	L proline biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	15181.20229661	2233.73828052
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	15599.502940190001	1720.86327384
+METSYN-PWY	L homoserine and L methionine biosynthesis	42751.19552667	32239.21002944
+PWY-6737	starch degradation V|unclassified	48.21577448	239.03206251000003
+PWY-7013	L 1,2 propanediol degradation	4148.3920522299995	10375.048369639999
+COA-PWY-1	coenzyme A biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	9071.2442565	580.96446474
+PWY-821	superpathway of sulfur amino acid biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	605.30096054	321.46343092
+PWY-6891	thiazole biosynthesis II |unclassified	32.229173779999996	74.15115623
+PWY66-400	glycolysis VI |g__Streptococcus.s__Streptococcus_mutans	6043.58140287	848.32486235
+PWY-7117	C4 photosynthetic carbon assimilation cycle, PEPCK type|unclassified	22.263231910000002	367.15187651
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	606.94449313	145.93585417
+PWY-7663	gondoate biosynthesis |unclassified	623.9800982	867.35110658
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5123.88198898	554.81214991
+PENTOSE-P-PWY	pentose phosphate pathway|g__Staphylococcus.s__Staphylococcus_epidermidis	9462.89698214	1831.25439958
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Escherichia.s__Escherichia_coli	5235.734033500001	1550.00566836
+NONOXIPENT-PWY	pentose phosphate pathway |g__Acinetobacter.s__Acinetobacter_baumannii	207.44599457	5015.152257039999
+3-HYDROXYPHENYLACETATE-DEGRADATION-PWY	4 hydroxyphenylacetate degradation	5939.43167638	13973.278780050001
+PWY66-391	fatty acid &beta; oxidation VI |unclassified	82.70659416000001	143.2949423
+PWY-6313	serotonin degradation|g__Propionibacterium.s__Propionibacterium_acnes	257.91056362	3253.85903121
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|unclassified	257.44739331	1093.60424306
+SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1206.06770903	368.86227068
+P221-PWY	octane oxidation|g__Acinetobacter.s__Acinetobacter_baumannii	161.60968485	8680.21691365
+PWY-6318	L phenylalanine degradation IV |g__Acinetobacter.s__Acinetobacter_baumannii	243.55293845	8252.63198449
+PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	13984.38946309	1524.36607337
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Streptococcus.s__Streptococcus_agalactiae	342.48523357	98.56441464
+PWY66-389	phytol degradation|g__Staphylococcus.s__Staphylococcus_aureus	31048.84820709	3743.72936189
+PWY0-1319	CDP diacylglycerol biosynthesis II|unclassified	15.807045489999998	251.37680805999997
+PWY-5676	acetyl CoA fermentation to butanoate II	54707.06131819	61781.96920438
+PWY-5898	superpathway of menaquinol 12 biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7642.0982759	298.12276962
+PWY-6185	4 methylcatechol degradation 	6795.09452711	11286.877656999999
+COA-PWY-1	coenzyme A biosynthesis II |unclassified	261.83253545	163.31755851
+PWY-5791	1,4 dihydroxy 2 naphthoate biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	8046.86968937	1435.9685915
+PWY-3941	&beta; alanine biosynthesis II|g__Rhodobacter.s__Rhodobacter_sphaeroides	1000.8412357999999	202.72805666
+VALDEG-PWY	L valine degradation I|unclassified	32.81479368	49.03150895
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	5033.502701580001	807.96547595
+PWY66-389	phytol degradation|g__Acinetobacter.s__Acinetobacter_baumannii	1722.78325323	29764.385674699995
+VALSYN-PWY	L valine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	19608.12664535	2773.60052861
+PWY-5179	toluene degradation V  (via toluene cis diol)|unclassified	16.0008379	16.12828725
+RIBOSYN2-PWY	flavin biosynthesis I |g__Escherichia.s__Escherichia_coli	1921.36277965	303.11239945
+PWY-6936	seleno amino acid biosynthesis|unclassified	366.56642145	158.40233189
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Escherichia.s__Escherichia_coli	3892.93474781	655.04524954
+GALACTUROCAT-PWY	D galacturonate degradation I|g__Escherichia.s__Escherichia_coli	3170.53547227	331.43061016
+PWY-5897	superpathway of menaquinol 11 biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	8558.3505207	1442.71932172
+GLUDEG-I-PWY	GABA shunt|unclassified	60.56506309	33.45452324
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis	15691.890919529998	24993.356979879998
+HCAMHPDEG-PWY	3 phenylpropanoate and 3 propanoate degradation to 2 oxopent 4 enoate	1692.49536281	301.73944072
+LEU-DEG2-PWY	L leucine degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	292.84136182	209.12320818999999
+PWY-5920	superpathway of heme biosynthesis from glycine|g__Staphylococcus.s__Staphylococcus_epidermidis	7944.32120453	653.29968825
+PWY-2941	L lysine biosynthesis II	39765.95635382	29914.146464769998
+ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast|g__Escherichia.s__Escherichia_coli	3017.9070079999997	570.80020627
+PWY-7371	1,4 dihydroxy 6 naphthoate biosynthesis II	124.24871748	22701.92726807
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Clostridium.s__Clostridium_beijerinckii	642.48934802	1322.66629949
+PWY-6519	8 amino 7 oxononanoate biosynthesis I|g__Escherichia.s__Escherichia_coli	4671.65611613	1401.1283492
+PWY-5189	tetrapyrrole biosynthesis II |g__Escherichia.s__Escherichia_coli	2445.2640645300003	959.90476359
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	8081.99915985	1153.07830842
+PWY-5508	adenosylcobalamin biosynthesis from cobyrinate a,c diamide II	4576.89285222	5118.239995399999
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Rhodobacter.s__Rhodobacter_sphaeroides	2775.12395814	413.26965268000004
+HSERMETANA-PWY	L methionine biosynthesis III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4930.004869230001	581.92355379
+PWY-3781	aerobic respiration I |g__Rhodobacter.s__Rhodobacter_sphaeroides	45855.05069573	7356.870952820001
+PWY-5180	toluene degradation I  (via o cresol)	7753.6003401299995	31762.985624869998
+METSYN-PWY	L homoserine and L methionine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	731.74580171	446.88994950999995
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|unclassified	362.96598102	771.50061205
+DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|unclassified	124.61033415	42.869825430000006
+PWY0-321	phenylacetate degradation I 	4376.16896882	9715.03077615
+HEMESYN2-PWY	heme biosynthesis II 	42456.41208896	27943.594308839998
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Staphylococcus.s__Staphylococcus_epidermidis	14469.28145977	921.6033735
+GLUCARDEG-PWY	D glucarate degradation I	16085.31528021	8144.45694399
+PWY-6948	sitosterol degradation to androstenedione	3416.84899096	490.76544595999997
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	232.7788015	4678.94204292
+URSIN-PWY	ureide biosynthesis|unclassified	17.00821784	115.71302966000002
+PWY-5347	superpathway of L methionine biosynthesis |unclassified	191.96919958	67.95879295
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation	65326.59385086999	53707.83536667
+PWY-5860	superpathway of demethylmenaquinol 6 biosynthesis I	14960.48104593	1727.9214210900002
+PWY-6595	superpathway of guanosine nucleotides degradation |g__Rhodobacter.s__Rhodobacter_sphaeroides	2330.97689537	406.06864279
+PWY0-1479	tRNA processing|unclassified	53.900151480000005	65.20708513
+VALSYN-PWY	L valine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6491.57160956	1143.69916468
+PWY66-400	glycolysis VI 	45871.98843616	50290.295431499995
+PWY-6700	queuosine biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7642.635739799999	1101.5366626700002
+PWY-5989	stearate biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	6689.02064509	1275.28632006
+PWY1F-823	leucopelargonidin and leucocyanidin biosynthesis|unclassified	67.89978505	90.81838409000001
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	142.65696194999998	3686.4976390899997
+PWY-6284	superpathway of unsaturated fatty acids biosynthesis 	13242.806731510002	18753.06741615
+PWY0-41	allantoin degradation IV |g__Escherichia.s__Escherichia_coli	2773.64878456	566.86538991
+PWY-6590	superpathway of Clostridium acetobutylicum acidogenic fermentation|g__Clostridium.s__Clostridium_beijerinckii	625.33238469	1730.95626184
+PWY-6897	thiamin salvage II|g__Staphylococcus.s__Staphylococcus_aureus	9795.5294665	1368.71820929
+HOMOSER-METSYN-PWY	L methionine biosynthesis I	38047.821871420005	25437.357899040002
+PWY-6737	starch degradation V|g__Rhodobacter.s__Rhodobacter_sphaeroides	1425.87954771	345.54593217999997
+PWY-6595	superpathway of guanosine nucleotides degradation |g__Pseudomonas.s__Pseudomonas_aeruginosa	475.49225087	329.52379183
+PWY0-1586	peptidoglycan maturation |unclassified	101.35462715000001	176.76884605
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|unclassified	400.63091939	128.54357906
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Escherichia.s__Escherichia_coli	5081.32089143	1085.44314175
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Propionibacterium.s__Propionibacterium_acnes	1052.91853145	4521.01575425
+PWY-6270	isoprene biosynthesis I|unclassified	117.12317228	567.53174759
+ANAEROFRUCAT-PWY	homolactic fermentation|g__Escherichia.s__Escherichia_coli	4702.73101999	1082.14748033
+COA-PWY	coenzyme A biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	6391.58124791	1454.98807117
+PWY66-400	glycolysis VI |g__Staphylococcus.s__Staphylococcus_aureus	9432.62218933	880.34978311
+PWY-6837	fatty acid beta oxidation V |unclassified	45.14241998	23.131342160000003
+PWY-5265	peptidoglycan biosynthesis II 	49608.91873626	30623.35098575
+PWY-6606	guanosine nucleotides degradation II|g__Pseudomonas.s__Pseudomonas_aeruginosa	1032.59943317	372.84160159000004
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4802.21599474	801.7154082599999
+GALACTARDEG-PWY	D galactarate degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	308.68763761	88.53014420999999
+PWY-6307	L tryptophan degradation X |g__Propionibacterium.s__Propionibacterium_acnes	209.13755224	2687.36440723
+CITRULBIO-PWY	L citrulline biosynthesis|g__Escherichia.s__Escherichia_coli	3193.75587109	404.18851436
+RIBOSYN2-PWY	flavin biosynthesis I |g__Helicobacter.s__Helicobacter_pylori	247.15147457	1731.90445131
+COLANSYN-PWY	colanic acid building blocks biosynthesis|unclassified	16.965247889999997	206.11126006
+PWY-6588	pyruvate fermentation to acetone|g__Escherichia.s__Escherichia_coli	4132.06885854	643.58703645
+HEME-BIOSYNTHESIS-II	heme biosynthesis I 	39940.82625855	27656.01286815
+PWY0-1586	peptidoglycan maturation |g__Clostridium.s__Clostridium_beijerinckii	1500.86681152	2880.2283244
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Streptococcus.s__Streptococcus_mutans	7069.4108697	1519.39416137
+PWY-7315	dTDP N acetylthomosamine biosynthesis	4747.95216611	522.80785368
+PWY-5837	1,4 dihydroxy 2 naphthoate biosynthesis I|g__Escherichia.s__Escherichia_coli	4043.6471103599997	280.87263768
+PWY-5103	L isoleucine biosynthesis III|g__Pseudomonas.s__Pseudomonas_aeruginosa	812.4109021300001	340.20331796
+PWY-5182	toluene degradation II  (via 4 methylcatechol)|unclassified	19.498767450000003	200.31522527
+PWY-4981	L proline biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	17480.9681051	2343.2915162
+PWY-1861	formaldehyde assimilation II |unclassified	454.68120185	154.81087467
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Staphylococcus.s__Staphylococcus_epidermidis	12753.275212280001	1625.19039837
+PWY-7007	methyl ketone biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	725.61644373	462.44392628
+PWY-5529	superpathway of bacteriochlorophyll a biosynthesis	25295.05655922	5664.51417177
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Escherichia.s__Escherichia_coli	6316.17334914	1039.9668904300001
+PWY-5345	superpathway of L methionine biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	916.0792468000001	393.17103270999996
+PWY-6992	1,5 anhydrofructose degradation	4968.137540379999	8644.10967713
+PWY-6151	S adenosyl L methionine cycle I	45554.17335966	42591.852733
+PWY-6595	superpathway of guanosine nucleotides degradation 	63659.568189490004	24658.38869829
+PWY-6581	spirilloxanthin and 2,2 diketo spirilloxanthin biosynthesis	682.07617638	337.05679473000004
+FAO-PWY	fatty acid &beta; oxidation I|g__Clostridium.s__Clostridium_beijerinckii	784.4416149699999	1944.88549916
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3567.90865616	449.84909432
+PWY-6895	superpathway of thiamin diphosphate biosynthesis II|g__Escherichia.s__Escherichia_coli	2043.69566526	631.16472332
+PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	305.86324873	5380.89233958
+PWY-5484	glycolysis II |g__Staphylococcus.s__Staphylococcus_aureus	9350.55702362	1348.76586688
+PWY-7315	dTDP N acetylthomosamine biosynthesis|g__Escherichia.s__Escherichia_coli	4005.7521044799996	412.13699563999995
+PWY-6609	adenine and adenosine salvage III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1157.72586361	147.27540501000001
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	14318.6521252	2221.10087853
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Streptococcus.s__Streptococcus_mutans	16522.309617670002	2166.74870807
+GLUCONEO-PWY	gluconeogenesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	5434.61898125	899.17935277
+PWY-6313	serotonin degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	134.48181929	308.43216171
+PWY-6936	seleno amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	22702.02661397	2742.52961297
+PWY-6317	galactose degradation I |g__Clostridium.s__Clostridium_beijerinckii	303.90460942000004	633.00218286
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III 	23921.93752105	36263.31192514
+PWY-5531	chlorophyllide a biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	4564.85282156	305.95144423
+PWY-2221	Entner Doudoroff pathway III 	2827.00386395	1143.00211263
+P122-PWY	heterolactic fermentation|g__Staphylococcus.s__Staphylococcus_epidermidis	8354.161448589999	1391.11014791
+LYSINE-DEG1-PWY	L lysine degradation XI 	781.34292537	282.9406151
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP	73960.34157271001	76651.06856087
+PWY-6168	flavin biosynthesis III |g__Staphylococcus.s__Staphylococcus_aureus	5523.58540355	1045.46827973
+PWY-5686	UMP biosynthesis|unclassified	350.32295637000004	500.87865905999996
+PANTO-PWY	phosphopantothenate biosynthesis I|unclassified	16.76573569	269.44801574
+PWY-5994	palmitate biosynthesis I 	42579.47493102	36635.031931510006
+PWY-5505	L glutamate and L glutamine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	119.46880300000001	2963.6429543199997
+GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|g__Escherichia.s__Escherichia_coli	3331.8168633	393.47882754
+PYRIDNUCSAL-PWY	NAD salvage pathway I	22096.28349154	22821.88438691
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6981.3146637	790.12246772
+TRPSYN-PWY	L tryptophan biosynthesis|unclassified	11.838077010000001	115.20160552
+PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	5243.79815282	837.42998224
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	13406.458778920001	2426.44185156
+PWY-7400	L arginine biosynthesis IV |g__Pseudomonas.s__Pseudomonas_aeruginosa	584.1588741099999	177.00899989
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	9594.48852685	1433.0839941200002
+PWY0-1061	superpathway of L alanine biosynthesis	33323.39659458	53212.22708731
+PWY-5484	glycolysis II |unclassified	234.31061285	304.3793023
+PWY-7664	oleate biosynthesis IV |g__Escherichia.s__Escherichia_coli	5636.40814978	1827.6118248100001
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	294.00772021	1466.0505965300001
+ARGSYN-PWY	L arginine biosynthesis I |g__Escherichia.s__Escherichia_coli	3525.3281186199997	678.68174429
+ARGSYN-PWY	L arginine biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	581.97508697	175.540021
+PWY-5104	L isoleucine biosynthesis IV|g__Clostridium.s__Clostridium_beijerinckii	1341.36748595	1559.52317358
+PWY-7111	pyruvate fermentation to isobutanol |g__Escherichia.s__Escherichia_coli	13458.06848081	3636.0304599499996
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4841.23598612	742.34004174
+PWY-6470	peptidoglycan biosynthesis V |g__Streptococcus.s__Streptococcus_mutans	7376.21971685	588.12815656
+PWY-6891	thiazole biosynthesis II 	14228.198278790001	4799.22357937
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Clostridium.s__Clostridium_beijerinckii	460.02446196	241.24432976999998
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	133.85727688	1745.5284179
+PWY-6748	nitrate reduction VII 	7948.14280782	3674.94706948
+PWY-7094	fatty acid salvage|g__Deinococcus.s__Deinococcus_radiodurans	284.12546916	40943.095755220005
+PWY-5347	superpathway of L methionine biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	9970.05767457	1663.33085073
+FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage	36059.46364989	34291.71428271
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	4675.34976192	409.64292672999994
+LACTOSECAT-PWY	lactose and galactose degradation I	75939.81840842	36816.96261588
+PWY-3841	folate transformations II|g__Staphylococcus.s__Staphylococcus_aureus	9084.870759579999	1387.77140357
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5317.02421823	1449.39529613
+PWY-5659	GDP mannose biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	356.30538845	4374.813129
+PWY-6305	putrescine biosynthesis IV|g__Rhodobacter.s__Rhodobacter_sphaeroides	2264.19577283	409.21191468
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3111.8408671	326.06434837
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1220.93388841	161.31902811
+OANTIGEN-PWY	O antigen building blocks biosynthesis |unclassified	76.33872359	173.51484641
+P161-PWY	acetylene degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	13280.27237352	1853.7586938099998
+P23-PWY	reductive TCA cycle I	6660.248686849999	15340.420979870001
+PWY-7007	methyl ketone biosynthesis	32874.75345919	31458.8558525
+PWY66-399	gluconeogenesis III	1727.6463382	28487.85870209
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Methanobrevibacter.s__Methanobrevibacter_smithii	2164.30826665	196.80261933
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	96.80558398	4120.80391509
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	913.88255745	340.20331796
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|unclassified	159.59161298	114.14586209999999
+PWY-5265	peptidoglycan biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	7984.99089468	948.44957018
+PWY-5347	superpathway of L methionine biosynthesis |g__Streptococcus.s__Streptococcus_mutans	6303.813437520001	1187.03506311
+PWY-3781	aerobic respiration I |g__Staphylococcus.s__Staphylococcus_epidermidis	29048.52870919	8522.11671136
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	6232.20074694	620.38502342
+PWY-5101	L isoleucine biosynthesis II|g__Rhodobacter.s__Rhodobacter_sphaeroides	2705.00538525	750.2130013000001
+PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Streptococcus.s__Streptococcus_mutans	6548.686595409999	1082.1806497900002
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis	52439.70880784	40030.42335661
+PWY-7400	L arginine biosynthesis IV 	59561.94262664	54069.71220104
+PWY-5104	L isoleucine biosynthesis IV|g__Staphylococcus.s__Staphylococcus_epidermidis	13563.47890962	2251.71014322
+PWY-6859	all trans farnesol biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	14277.362101080002	1366.5014125100001
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I	67483.29886314	81119.14955964
+PWY-7204	pyridoxal 5 phosphate salvage II |g__Rhodobacter.s__Rhodobacter_sphaeroides	2309.83026388	372.76420163
+PWY-7237	myo , chiro  and scillo inositol degradation|g__Clostridium.s__Clostridium_beijerinckii	1372.77109254	1969.48754452
+GLUTORN-PWY	L ornithine biosynthesis	41047.62995812	40433.46899267
+GLYCOCAT-PWY	glycogen degradation I |g__Escherichia.s__Escherichia_coli	4107.11727435	234.78337582
+PWY-7165	L ascorbate biosynthesis VI 	3612.2384906199995	5853.62894529
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Staphylococcus.s__Staphylococcus_aureus	6428.35621408	1216.53259179
+PWY66-400	glycolysis VI |g__Clostridium.s__Clostridium_beijerinckii	721.90935944	1596.12068086
+PWY-5692	allantoin degradation to glyoxylate II|g__Escherichia.s__Escherichia_coli	3441.39494745	497.16208443000005
+P261-PWY	coenzyme M biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2293.95084223	213.800819
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Rhodobacter.s__Rhodobacter_sphaeroides	2924.0462019799998	354.90745573
+PWY-5862	superpathway of demethylmenaquinol 9 biosynthesis	14960.48104593	9578.81483636
+PWY-3941	&beta; alanine biosynthesis II	2817.89954425	1529.92022489
+PWY-6151	S adenosyl L methionine cycle I|g__Staphylococcus.s__Staphylococcus_aureus	13201.13815746	1258.08598177
+COA-PWY	coenzyme A biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	104.19380047	1816.6979648000001
+PWY-5971	palmitate biosynthesis II |unclassified	328.78037799	707.87369542
+PWY66-391	fatty acid &beta; oxidation VI |g__Deinococcus.s__Deinococcus_radiodurans	189.68277981	30320.870318700003
+POLYAMSYN-PWY	superpathway of polyamine biosynthesis I	8922.9354576	8010.09959475
+GLUDEG-I-PWY	GABA shunt|g__Rhodobacter.s__Rhodobacter_sphaeroides	3350.5672600499997	524.0005178399999
+PWY66-422	D galactose degradation V |unclassified	52.800673090000004	58.57234985
+THISYN-PWY	superpathway of thiamin diphosphate biosynthesis I|g__Escherichia.s__Escherichia_coli	2194.52902644	764.32223239
+PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I	5078.6570669600005	15554.5537359
+LYSINE-AMINOAD-PWY	L lysine biosynthesis IV	30.65393268	33.422909020000006
+PWY-7400	L arginine biosynthesis IV |g__Staphylococcus.s__Staphylococcus_epidermidis	12833.45677752	2671.58333094
+ARGORNPROST-PWY	arginine, ornithine and proline interconversion	39713.89100352	14337.08703789
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	327.8514655	6716.21063402
+PWY-6385	peptidoglycan biosynthesis III |g__Escherichia.s__Escherichia_coli	5237.1059552	977.7378283799999
+PWY-5189	tetrapyrrole biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	9126.019489729999	782.32269891
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	13009.721532239999	2034.84123287
+PWY0-881	superpathway of fatty acid biosynthesis I |g__Escherichia.s__Escherichia_coli	2385.65882138	1346.1349139
+PWY-5097	L lysine biosynthesis VI|unclassified	165.25817734999998	283.80635899
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	887.7155841	458.88889012
+PWY6666-2	dopamine degradation	16.87667991	441.49880079999997
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	14414.34181967	2378.79066908
+ARGSYN-PWY	L arginine biosynthesis I 	59551.72315019999	53875.05205118
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	194.63379936	4777.3405113
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	7323.116014519999	1249.8060919900001
+PWY-6901	superpathway of glucose and xylose degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	9659.807888790001	2022.16924516
+P261-PWY	coenzyme M biosynthesis I	2295.11116707	459.01312982
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Staphylococcus.s__Staphylococcus_aureus	16670.377434089998	2305.47446453
+PWY-7209	superpathway of pyrimidine ribonucleosides degradation	21848.746253589998	8529.83044229
+P221-PWY	octane oxidation	13386.94555213	13355.958621619999
+GLUCONEO-PWY	gluconeogenesis I|g__Escherichia.s__Escherichia_coli	4901.5588859300005	982.69705479
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|unclassified	421.30790951000006	533.47920349
+PWY-5067	glycogen biosynthesis II 	5879.13541247	719.9710092500001
+P161-PWY	acetylene degradation|unclassified	22.993565020000002	196.63361648
+PWY-821	superpathway of sulfur amino acid biosynthesis 	40960.21477577	33776.37843411
+PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III	36049.077538929996	27041.677486110002
+PWY-7391	isoprene biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	11616.508700280001	1334.39196947
+THISYN-PWY	superpathway of thiamin diphosphate biosynthesis I	7788.86534804	20261.00357799
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Rhodobacter.s__Rhodobacter_sphaeroides	26214.66955623	3392.64817055
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Escherichia.s__Escherichia_coli	5239.824725519999	985.36108582
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I	32505.442728240003	27032.67603587
+ANAGLYCOLYSIS-PWY	glycolysis III 	48607.263708800005	55972.89598484
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Streptococcus.s__Streptococcus_mutans	13269.198777200001	2121.64967794
+PWY-6692	Fe oxidation|g__Rhodobacter.s__Rhodobacter_sphaeroides	24685.57108664	4546.12191382
+PWY-5654	2 amino 3 carboxymuconate semialdehyde degradation to 2 oxopentenoate	22.18668573	73.64822065
+SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Rhodobacter.s__Rhodobacter_sphaeroides	9879.58699527	1620.66734552
+PWY0-42	2 methylcitrate cycle I	6756.67210724	13931.71564725
+PWY-5022	4 aminobutanoate degradation V|g__Staphylococcus.s__Staphylococcus_epidermidis	7687.96878088	2414.24273897
+TYRFUMCAT-PWY	L tyrosine degradation I	4422.44827342	7790.3447172900005
+PWY-6859	all trans farnesol biosynthesis|g__Escherichia.s__Escherichia_coli	4290.95937849	1410.173387
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Staphylococcus.s__Staphylococcus_aureus	12033.52633838	626.64503969
+PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III|g__Staphylococcus.s__Staphylococcus_aureus	8705.89763885	600.02805515
+PWY-6897	thiamin salvage II|g__Clostridium.s__Clostridium_beijerinckii	313.86823056000003	701.50927756
+HSERMETANA-PWY	L methionine biosynthesis III|g__Rhodobacter.s__Rhodobacter_sphaeroides	23605.40603812	3344.4282146699998
+PWY66-389	phytol degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	3615.86640369	1333.50808028
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Escherichia.s__Escherichia_coli	3369.37968613	610.39579238
+PWY-3781	aerobic respiration I 	146949.34957509	137931.17561632
+PWY66-409	superpathway of purine nucleotide salvage|unclassified	247.96629255	228.19301312000002
+GLUDEG-I-PWY	GABA shunt	17668.5858579	24785.23078735
+COA-PWY-1	coenzyme A biosynthesis II |g__Neisseria.s__Neisseria_meningitidis	309.23484826	2086.8107749
+PPGPPMET-PWY	ppGpp biosynthesis|g__Escherichia.s__Escherichia_coli	6456.948898029999	1341.69597709
+GALACTUROCAT-PWY	D galacturonate degradation I	7232.08534986	7565.781310689999
+PWY-6700	queuosine biosynthesis|g__Escherichia.s__Escherichia_coli	2461.2843471200003	510.48017029999994
+PWY-7663	gondoate biosynthesis |g__Streptococcus.s__Streptococcus_mutans	8499.06647838	1546.84352858
+PWY0-862	 dodec 5 enoate biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	5150.07170437	1103.2784164500001
+GLYOXYLATE-BYPASS	glyoxylate cycle	18722.90556688	34704.15690793
+PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|g__Escherichia.s__Escherichia_coli	4161.75694533	841.95784367
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II	51541.75556564001	51310.15732135
+PWY-6519	8 amino 7 oxononanoate biosynthesis I	40200.49648082	37353.12647436
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Staphylococcus.s__Staphylococcus_aureus	9358.08780623	1291.22154875
+PWY-7663	gondoate biosynthesis |g__Staphylococcus.s__Staphylococcus_aureus	10700.15783694	1418.88240494
+PWY-7237	myo , chiro  and scillo inositol degradation	31960.39001422	20589.62242374
+PWY-5840	superpathway of menaquinol 7 biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	8768.97534193	1494.84818596
+PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	1241.32685818	207.53926484
+PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II 	25721.259803549998	37381.57586343
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	96.80558398	4120.80391509
+PWY-7400	L arginine biosynthesis IV |unclassified	187.8668014	606.71505694
+PWY-5896	superpathway of menaquinol 10 biosynthesis	17486.22793545	2528.42214446
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Streptococcus.s__Streptococcus_mutans	4625.26871879	570.86128661
+PWY-5345	superpathway of L methionine biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis	11301.1471778	2705.37442241
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|unclassified	156.59168697	234.11005854
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Escherichia.s__Escherichia_coli	2944.0674837	730.8441579400001
+PWY-7337	10 cis heptadecenoyl CoA degradation 	265.24638102	6718.68847562
+COA-PWY-1	coenzyme A biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	560.04987149	263.02518104
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	36921.27925716	5287.4034476
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|unclassified	93.65113763000001	248.24838282
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	941.50333639	284.24404827999996
+PWY-6608	guanosine nucleotides degradation III|g__Acinetobacter.s__Acinetobacter_baumannii	66.28003314	6565.1518788700005
+GLYCOLYSIS-TCA-GLYOX-BYPASS	superpathway of glycolysis, pyruvate dehydrogenase, TCA, and glyoxylate bypass	36626.28835009	48338.06640439
+PWY-6595	superpathway of guanosine nucleotides degradation |unclassified	45.524730219999995	80.5890392
+PWY-5676	acetyl CoA fermentation to butanoate II|g__Staphylococcus.s__Staphylococcus_aureus	10235.55723014	1725.0556133700002
+PWY-5845	superpathway of menaquinol 9 biosynthesis	17486.22793545	12613.26797417
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Streptococcus.s__Streptococcus_mutans	7145.766871700001	1241.378272
+PWY-6892	thiazole biosynthesis I |g__Escherichia.s__Escherichia_coli	3567.54141386	615.48749584
+PWY-5741	ethylmalonyl CoA pathway	14010.209852599999	4762.28614483
+PWY-3841	folate transformations II|g__Escherichia.s__Escherichia_coli	3007.20583149	217.72486044
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	13109.38009592	1763.21900128
+COA-PWY	coenzyme A biosynthesis I	31898.463619799997	34557.07846407
+PWY-5097	L lysine biosynthesis VI|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3117.37734486	284.11061317
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	369.68326227	1965.5842703800001
+PWY-7013	L 1,2 propanediol degradation|unclassified	19.32699742	79.24954491
+ANAEROFRUCAT-PWY	homolactic fermentation|g__Staphylococcus.s__Staphylococcus_epidermidis	10899.25201794	1876.09508789
+P221-PWY	octane oxidation|g__Escherichia.s__Escherichia_coli	8729.77305586	1477.74035331
+PWY-6309	L tryptophan degradation XI 	1236.92269851	22741.11571988
+PWY-5918	superpathay of heme biosynthesis from glutamate|unclassified	154.83033678	226.00202574
+PWY-7199	pyrimidine deoxyribonucleosides salvage	41887.00622656	33242.370596450004
+PWY-6883	pyruvate fermentation to butanol II	2043.0671269600002	4228.0458086
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli	9979.31727274	1719.8777986700002
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	10037.19755811	1417.12071746
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	11619.13815987	1148.0765334799999
+PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I	5215.0853726000005	15954.57531612
+GLUCARGALACTSUPER-PWY	superpathway of D glucarate and D galactarate degradation|g__Escherichia.s__Escherichia_coli	6349.73567749	692.7369213000001
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	358.71826037	3622.65836066
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|unclassified	575.34148597	654.60842608
+P125-PWY	superpathway of  butanediol biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	662.73597172	130.89915684
+CENTFERM-PWY	pyruvate fermentation to butanoate|g__Clostridium.s__Clostridium_beijerinckii	966.15686788	1729.73583202
+PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	9168.91672046	1312.86642906
+TCA	TCA cycle I |g__Pseudomonas.s__Pseudomonas_aeruginosa	1915.82989294	356.0026723
+PWY-6672	cis genanyl CoA degradation	690.8467061199999	7524.02541771
+PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Pseudomonas.s__Pseudomonas_aeruginosa	1995.83542583	198.89557888
+P185-PWY	formaldehyde assimilation III |g__Escherichia.s__Escherichia_coli	6016.06136396	441.04297589000004
+PWY-821	superpathway of sulfur amino acid biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	11109.89305358	1395.8971881100001
+PWY-5863	superpathway of phylloquinol biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	8662.38241175	1561.83539442
+NONOXIPENT-PWY	pentose phosphate pathway |g__Pseudomonas.s__Pseudomonas_aeruginosa	177.99247468	164.37782069
+PWY-5973	cis vaccenate biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4200.2885975300005	501.11118082999997
+PWY3O-355	stearate biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides	17742.8381448	2958.85704046
+ECASYN-PWY	enterobacterial common antigen biosynthesis|g__Escherichia.s__Escherichia_coli	3268.1344234199996	466.91474603999995
+P185-PWY	formaldehyde assimilation III |g__Clostridium.s__Clostridium_beijerinckii	591.46858186	631.8759715
+PWY-7664	oleate biosynthesis IV |g__Staphylococcus.s__Staphylococcus_epidermidis	3332.90595644	2394.41785225
+PWY-7389	superpathway of anaerobic energy metabolism 	1843.01379918	11881.38746545
+PWY-561	superpathway of glyoxylate cycle and fatty acid degradation	16208.945709259999	49450.7244379
+PWY-7111	pyruvate fermentation to isobutanol |g__Propionibacterium.s__Propionibacterium_acnes	110.81603138	3758.1270218900004
+ARGSYN-PWY	L arginine biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	7654.69614166	1320.84284529
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	9425.4210998	620.0331906399999
+PWY-6837	fatty acid beta oxidation V |g__Escherichia.s__Escherichia_coli	1915.67580364	431.09894219999995
+PWY-5690	TCA cycle II |unclassified	526.38977911	425.79343272
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Clostridium.s__Clostridium_beijerinckii	355.43782371	354.72394973
+PWY-5920	superpathway of heme biosynthesis from glycine|g__Staphylococcus.s__Staphylococcus_aureus	9179.86631905	616.18076927
+PWY0-1261	anhydromuropeptides recycling	20292.482632829997	30352.03932951
+COA-PWY-1	coenzyme A biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	8718.64851948	1207.0599637300002
+PWY-5188	tetrapyrrole biosynthesis I 	38592.07523101	27352.55210619
+LIPASYN-PWY	phospholipases	2742.1686288299998	4339.1849350699995
+GLUTORN-PWY	L ornithine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5348.9210481400005	549.69077495
+PWY0-1338	polymyxin resistance	2628.63745082	880.6264113499999
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Staphylococcus.s__Staphylococcus_aureus	11801.81635293	1457.7095241900001
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	11587.46369198	1975.20599239
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	156.48098182	4734.37210915
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|unclassified	281.17453992	46.48568564
+PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation	20931.65762973	57530.83361222
+PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Streptococcus.s__Streptococcus_mutans	7036.8316624399995	2001.5609021500002
+PWY-7279	aerobic respiration II  (yeast)	54384.53000882999	79290.42078977
+PWY-6307	L tryptophan degradation X |g__Escherichia.s__Escherichia_coli	3229.83784609	1060.9247271
+PWY0-845	superpathway of pyridoxal 5 phosphate biosynthesis and salvage|g__Escherichia.s__Escherichia_coli	3499.01474278	897.0908524800001
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mutans	7488.57719497	2524.58743801
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Escherichia.s__Escherichia_coli	6049.43426736	1792.31123454
+PWY-5101	L isoleucine biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	5340.38885219	1197.0522950299999
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	12884.65557913	2854.75315107
+PWY-5420	catechol degradation II 	39.0794444	502.13894583999996
+PWY-7007	methyl ketone biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	137.31343497	25294.625818020002
+HSERMETANA-PWY	L methionine biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii	78.6061899	4746.11198159
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|unclassified	179.82003432	132.15550233
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|unclassified	760.33769705	1912.3387995000003
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	221.10007335	251.37211089
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	7972.029285809999	1121.45249158
+PWY-6596	adenosine nucleotides degradation I	7817.66872493	696.2294504
+PWY-5509	adenosylcobalamin biosynthesis from cobyrinate a,c diamide I	4961.47866903	10264.71844441
+PWY-5676	acetyl CoA fermentation to butanoate II|g__Escherichia.s__Escherichia_coli	5795.8169752700005	1064.4472541
+SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis	42017.840114009996	39794.12936194
+PWY-6151	S adenosyl L methionine cycle I|g__Clostridium.s__Clostridium_beijerinckii	251.75284416000002	1086.14991579
+PWY-5198	factor 420 biosynthesis	2056.99650311	1029.88308336
+P42-PWY	incomplete reductive TCA cycle	60388.8040467	37825.48903081
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Escherichia.s__Escherichia_coli	6193.51954319	1151.1245967500001
+REDCITCYC	TCA cycle VIII |unclassified	86.63176878	165.4695379
+PWY-5994	palmitate biosynthesis I |g__Escherichia.s__Escherichia_coli	6000.2614617	634.54389648
+FUCCAT-PWY	fucose degradation|g__Escherichia.s__Escherichia_coli	3222.3830126800003	1416.75055098
+CRNFORCAT-PWY	creatinine degradation I	6806.57375556	2687.13709358
+PWY-5067	glycogen biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	5662.76888916	465.17553745000004
+ARGSYNBSUB-PWY	L arginine biosynthesis II 	55520.271325789996	50204.88996723
+CALVIN-PWY	Calvin Benson Bassham cycle	56776.621663690006	49672.73401422
+HEMESYN2-PWY	heme biosynthesis II |unclassified	172.13844264	289.74545631
+GLYCOLYSIS	glycolysis I |g__Staphylococcus.s__Staphylococcus_epidermidis	10365.86800988	2175.53967026
+PWY66-389	phytol degradation|g__Clostridium.s__Clostridium_beijerinckii	672.92789582	1843.0707036600002
+PWY-7268	NAD NADP NADH NADPH cytosolic interconversion 	3714.5991414299997	37098.7371251
+PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Rhodobacter.s__Rhodobacter_sphaeroides	11928.92474422	3378.73427795
+P221-PWY	octane oxidation|g__Rhodobacter.s__Rhodobacter_sphaeroides	7078.4074103699995	794.80432216
+ARGDEG-PWY	superpathway of L arginine, putrescine, and 4 aminobutanoate degradation	17810.12785877	14882.884791679999
+ORNARGDEG-PWY	superpathway of L arginine and L ornithine degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	2719.96996417	381.3209558
+PWY-6803	phosphatidylcholine acyl editing	3838.41748733	11397.07478341
+PWY3O-355	stearate biosynthesis III 	39765.48491225	23027.23112487
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Staphylococcus.s__Staphylococcus_epidermidis	6505.82828661	1144.17877842
+PWY3DJ-35471	L ascorbate biosynthesis IV	2379.71346702	4327.29161874
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Escherichia.s__Escherichia_coli	1068.1613541899999	1901.4370319200002
+PWY-6124	inosine 5 phosphate biosynthesis II|unclassified	88.39051393	336.92513447
+ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast	7500.35992034	11416.67686483
+PWY-6969	TCA cycle V (2 oxoglutarate	486.90488629	309.59725345
+PWY0-1586	peptidoglycan maturation |g__Pseudomonas.s__Pseudomonas_aeruginosa	3501.2174879100003	868.5907063
+PWY490-3	nitrate reduction VI 	10970.02766344	32919.44869615
+PWY-5101	L isoleucine biosynthesis II|unclassified	207.80186162	149.72140514
+PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |g__Escherichia.s__Escherichia_coli	2385.53748482	555.87701395
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	9170.67988684	1012.00033599
+SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	11874.22649959	3970.8218996299997
+PWY0-1061	superpathway of L alanine biosynthesis|unclassified	277.57938012	115.54784187
+PWY-5747	2 methylcitrate cycle II|unclassified	19.68257624	45.06146103
+PWY-6703	preQ0 biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5223.4450621900005	1193.48734099
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine 	28500.80254803	31953.476143670003
+GLUCONEO-PWY	gluconeogenesis I	48572.20659964	63949.94732292
+PWY-7090	UDP 2,3 diacetamido 2,3 dideoxy &alpha; D mannuronate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1010.50541348	317.00893349
+PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III|g__Staphylococcus.s__Staphylococcus_epidermidis	10126.301311250001	1607.58222493
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	369.12828699	629.50321671
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	9039.67328714	1589.30574604
+PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	13408.394676450001	3147.91511052
+NONOXIPENT-PWY	pentose phosphate pathway |g__Rhodobacter.s__Rhodobacter_sphaeroides	8778.43750382	439.98894176
+METHANOGENESIS-PWY	methanogenesis from H2 and CO2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4388.35628328	784.08014634
+PWY-5103	L isoleucine biosynthesis III|g__Staphylococcus.s__Staphylococcus_epidermidis	13449.889295910001	2414.37510496
+PWY-5347	superpathway of L methionine biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	839.5820890399999	507.29967618
+PWY-4041	&gamma; glutamyl cycle|unclassified	78.47804093	34.797574759999996
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2829.0327074	322.24697176
+PWY-7200	superpathway of pyrimidine deoxyribonucleoside salvage|g__Staphylococcus.s__Staphylococcus_epidermidis	6650.40666718	647.46327463
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Escherichia.s__Escherichia_coli	4995.71394269	1625.25993126
+PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Staphylococcus.s__Staphylococcus_epidermidis	7094.14056498	740.59099745
+POLYAMSYN-PWY	superpathway of polyamine biosynthesis I|unclassified	91.63013862	13.268387619999999
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	7905.954037889999	1183.1703060300001
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|unclassified	156.59168697	234.11005854
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|unclassified	316.23278204999997	406.96069748
+PWY-6897	thiamin salvage II|g__Propionibacterium.s__Propionibacterium_acnes	212.94837857000002	3057.32042924
+SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Escherichia.s__Escherichia_coli	3912.0668309899997	669.56751062
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4006.6905160300003	595.88258052
+PWY-6305	putrescine biosynthesis IV|g__Escherichia.s__Escherichia_coli	6740.35193129	648.4948647
+PWY-5182	toluene degradation II  (via 4 methylcatechol)	7753.6003401299995	31762.985624869998
+P125-PWY	superpathway of  butanediol biosynthesis|g__Streptococcus.s__Streptococcus_mutans	7101.09619294	1953.2100492099999
+PWY-6969	TCA cycle V (2 oxoglutarate	12042.651076049999	1871.3678439799999
+PENTOSE-P-PWY	pentose phosphate pathway	38478.57046868	35262.43024576
+PWY-7279	aerobic respiration II  (yeast)|g__Pseudomonas.s__Pseudomonas_aeruginosa	4729.73627872	560.08292772
+DAPLYSINESYN-PWY	L lysine biosynthesis I	41965.35325694	33560.01313461
+PWY-922	mevalonate pathway I|g__Streptococcus.s__Streptococcus_mutans	3671.4574012	197.93567101
+PWY-5188	tetrapyrrole biosynthesis I |g__Escherichia.s__Escherichia_coli	3934.45905699	738.40173753
+PWY-6151	S adenosyl L methionine cycle I|g__Staphylococcus.s__Staphylococcus_epidermidis	13361.094409809999	1958.9885833899998
+PWY-6834	spermidine biosynthesis III|unclassified	8.45731084	12.85090982
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III 	27935.50904944	32223.95331423
+PWY-4722	creatinine degradation II	7804.7591205399995	358.59562242
+PWY-4242	pantothenate and coenzyme A biosynthesis III	30126.589626269997	32516.444755430002
+PWY-7288	fatty acid &beta; oxidation 	12818.36399007	25828.6507825
+PWY-5136	fatty acid &beta; oxidation II |g__Deinococcus.s__Deinococcus_radiodurans	272.46866452999996	44619.57128338
+COA-PWY	coenzyme A biosynthesis I|unclassified	33.64328009	32.14646219
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	9344.06613587	1804.8328837100003
+PWY-6630	superpathway of L tyrosine biosynthesis|g__Escherichia.s__Escherichia_coli	2748.28667321	864.76813763
+PWY66-391	fatty acid &beta; oxidation VI |g__Rhodobacter.s__Rhodobacter_sphaeroides	7209.5488899599995	1927.58607731
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Escherichia.s__Escherichia_coli	5202.12964363	512.45321216
+PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Rhodobacter.s__Rhodobacter_sphaeroides	8627.502482079999	1810.57390088
+ARGSYN-PWY	L arginine biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	7609.567939030001	1081.5273122400001
+HISDEG-PWY	L histidine degradation I|unclassified	2.70795918	145.22782483
+PWY-7664	oleate biosynthesis IV 	52926.1850638	53480.34701502
+PWY-5973	cis vaccenate biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	5847.77266898	1148.4109865100002
+PWY-241	C4 photosynthetic carbon assimilation cycle, NADP ME type	11662.51505514	19323.41014893
+PWY-7288	fatty acid &beta; oxidation |g__Rhodobacter.s__Rhodobacter_sphaeroides	6138.39521287	1907.81596661
+PWY-6285	superpathway of fatty acids biosynthesis 	21733.15509372	28926.726125390003
+PWY-6676	superpathway of sulfide oxidation |g__Rhodobacter.s__Rhodobacter_sphaeroides	8761.42497609	1111.89798241
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	1633.00145995	789.42434908
+PWY-5659	GDP mannose biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4486.03321142	645.51592551
+PWY-5103	L isoleucine biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	5952.11637562	1066.94142577
+PWY-7117	C4 photosynthetic carbon assimilation cycle, PEPCK type	15396.90062873	42713.81268201
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Escherichia.s__Escherichia_coli	3402.09943889	857.9491840699999
+GLYOXYLATE-BYPASS	glyoxylate cycle|g__Rhodobacter.s__Rhodobacter_sphaeroides	4037.4158366099996	426.19827940999994
+FAO-PWY	fatty acid &beta; oxidation I|g__Staphylococcus.s__Staphylococcus_aureus	17230.39072088	1811.17843293
+DHGLUCONATE-PYR-CAT-PWY	glucose degradation 	93.51240467000001	405.19573172
+PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Escherichia.s__Escherichia_coli	4668.33455703	605.21830118
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli	9979.31727274	1719.8777986700002
+PWY-5103	L isoleucine biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii	328.98697347	6751.96113504
+TRPSYN-PWY	L tryptophan biosynthesis|g__Escherichia.s__Escherichia_coli	3679.62678086	584.13034364
+PWY-6936	seleno amino acid biosynthesis	80744.55892293001	49331.23574939
+METHGLYUT-PWY	superpathway of methylglyoxal degradation	43911.86923752	22064.37695454
+GLUCONEO-PWY	gluconeogenesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	10187.69501845	1663.3305078399999
+PWY0-862	 dodec 5 enoate biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4492.632820299999	573.21687021
+PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5745.44661332	946.91434658
+PWY-6748	nitrate reduction VII |g__Pseudomonas.s__Pseudomonas_aeruginosa	680.71386154	219.26157025
+PWY-1042	glycolysis IV |g__Escherichia.s__Escherichia_coli	9280.46633932	1707.90055461
+PWY-5667	CDP diacylglycerol biosynthesis I	38923.47948073	33978.87084189
+PWY-7400	L arginine biosynthesis IV |g__Escherichia.s__Escherichia_coli	3444.1818219300003	671.3005352
+PWY-5104	L isoleucine biosynthesis IV|g__Staphylococcus.s__Staphylococcus_aureus	14186.737680589998	1227.25984486
+NONOXIPENT-PWY	pentose phosphate pathway |g__Staphylococcus.s__Staphylococcus_aureus	10839.61807425	966.6381850500001
+NONOXIPENT-PWY	pentose phosphate pathway |g__Clostridium.s__Clostridium_beijerinckii	1727.19605015	4414.97382432
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli	3746.3574209900003	800.5759213399999
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	1313.44813159	2264.66366588
+PPGPPMET-PWY	ppGpp biosynthesis|unclassified	117.0622137	19.02026525
+PWY-7094	fatty acid salvage|g__Escherichia.s__Escherichia_coli	4574.54169379	848.0406088000001
+PWY-7328	superpathway of UDP glucose derived O antigen building blocks biosynthesis	12621.08003685	8348.276516209999
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	7115.259848719999	2101.09951952
+PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|unclassified	30.096669209999998	48.77425146
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Escherichia.s__Escherichia_coli	3168.29114837	1226.26490102
+GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|g__Clostridium.s__Clostridium_beijerinckii	752.65278465	1095.96821196
+PWY-7003	glycerol degradation to butanol|g__Escherichia.s__Escherichia_coli	4679.46843094	446.54859186
+FASYN-ELONG-PWY	fatty acid elongation    saturated	66225.76738225001	60608.23943015
+PWY-7373	superpathway of demethylmenaquinol 6 biosynthesis II	78.14745906	7117.4840478999995
+PWY-6385	peptidoglycan biosynthesis III |g__Pseudomonas.s__Pseudomonas_aeruginosa	303.15740446	148.29417795
+PWY-2942	L lysine biosynthesis III|unclassified	143.00794101	246.17342123
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Streptococcus.s__Streptococcus_mutans	8020.92418793	1285.97453274
+CATECHOL-ORTHO-CLEAVAGE-PWY	catechol degradation to &beta; ketoadipate	7165.58180672	5645.173397420001
+RUMP-PWY	formaldehyde oxidation I|g__Staphylococcus.s__Staphylococcus_epidermidis	8684.020952679999	1863.423908
+PWY-5973	cis vaccenate biosynthesis|unclassified	355.34773906	479.9093679
+PWY-5863	superpathway of phylloquinol biosynthesis|g__Escherichia.s__Escherichia_coli	4207.37946302	314.41884261
+PWY-5505	L glutamate and L glutamine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4474.00991797	699.52903005
+P221-PWY	octane oxidation|g__Pseudomonas.s__Pseudomonas_aeruginosa	2049.53414303	475.58255016000004
+PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Escherichia.s__Escherichia_coli	4699.75810781	751.4523986600001
+PWY-7288	fatty acid &beta; oxidation |unclassified	81.12038796	80.51878181
+PWY4LZ-257	superpathway of fermentation |g__Staphylococcus.s__Staphylococcus_epidermidis	10665.8606956	2238.22101513
+PWY0-1296	purine ribonucleosides degradation|g__Staphylococcus.s__Staphylococcus_aureus	19903.8093633	2025.24205939
+PWY-5686	UMP biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6754.11537711	798.0076754199999
+DENITRIFICATION-PWY	nitrate reduction I 	9285.14991359	6301.73393977
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |unclassified	188.12545302	274.49677967
+P125-PWY	superpathway of  butanediol biosynthesis	71484.31657301	27263.00340619
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	8808.69286571	979.81451315
+PWY-5505	L glutamate and L glutamine biosynthesis	31442.29307708	45000.68151631
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I	59510.23866505	55928.477442890005
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Escherichia.s__Escherichia_coli	4340.08962598	665.8451560999999
+PWY-5918	superpathay of heme biosynthesis from glutamate|g__Pseudomonas.s__Pseudomonas_aeruginosa	524.1999490100001	183.46669874
+PWY-6891	thiazole biosynthesis II |g__Escherichia.s__Escherichia_coli	3221.65606875	419.26006548
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	3368.9177882000004	896.96458734
+PWY-5899	superpathway of menaquinol 13 biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	8558.3505207	1442.71932172
+PWY-6859	all trans farnesol biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	312.4090513	278.96333406
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	155.38853575	4189.38439876
+PWY-7242	D fructuronate degradation|unclassified	111.52338485	17.605039859999998
+GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	365.45126605	890.35730088
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Escherichia.s__Escherichia_coli	3806.64040489	1089.7320476999998
+PWY-6113	superpathway of mycolate biosynthesis	29629.83121033	39193.24166604
+PWY-7431	aromatic biogenic amine degradation |g__Pseudomonas.s__Pseudomonas_aeruginosa	145.55114505	234.28437745
+PWY-5855	ubiquinol 7 biosynthesis 	10283.68090421	8071.01088192
+PWY-5367	petroselinate biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	585.18084598	505.32904004
+PWY-6531	mannitol cycle	6653.2796432	1619.62554188
+PWY0-1319	CDP diacylglycerol biosynthesis II	38923.47948073	38574.867763819995
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Escherichia.s__Escherichia_coli	1177.0211459500001	766.71332167
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	461.25516076	1325.3825280199999
+PWY-6609	adenine and adenosine salvage III|g__Streptococcus.s__Streptococcus_mutans	10068.46404292	1618.7376647699998
+PWY-5156	superpathway of fatty acid biosynthesis II 	3728.6704736799998	865.2939823500001
+GLYOXYLATE-BYPASS	glyoxylate cycle|g__Acinetobacter.s__Acinetobacter_baumannii	151.84698209	5402.12516411
+PWY-5899	superpathway of menaquinol 13 biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7642.0982759	298.12276962
+P125-PWY	superpathway of  butanediol biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	342.57329532	9915.8371066
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	11385.89479643	2432.26943518
+PWY-5180	toluene degradation I  (via o cresol)|unclassified	19.498767450000003	200.31522527
+PWY-5415	catechol degradation I 	5507.80131768	11782.749473670001
+PWY-4321	L glutamate degradation IV	13284.553500999999	13452.604360809999
+PWY-5677	succinate fermentation to butanoate	1776.07332895	4188.25057975
+PWY-6307	L tryptophan degradation X 	3984.56732129	51496.40863705
+PWY-5863	superpathway of phylloquinol biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	9512.55678532	1093.7215706
+PRPP-PWY	superpathway of histidine, purine, and pyrimidine biosynthesis	46202.8808185	41615.432509750004
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	7790.16253219	1801.4962001699998
+PWY-6596	adenosine nucleotides degradation I|g__Escherichia.s__Escherichia_coli	5883.94684022	550.70718522
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	17481.275620599998	2182.11571266
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mutans	9614.7256839	1368.47269108
+PWY-6606	guanosine nucleotides degradation II	69150.80960636	28407.436595979998
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	13183.77160803	1189.32661727
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	349.43910559	7055.45433319
+PWY66-388	fatty acid &alpha; oxidation III|g__Pseudomonas.s__Pseudomonas_aeruginosa	909.6616251800001	258.83879283
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Clostridium.s__Clostridium_beijerinckii	568.55982213	1623.22616812
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	97.24764852999999	2915.24388118
+PWY-5747	2 methylcitrate cycle II|g__Escherichia.s__Escherichia_coli	1303.63871162	448.42715417
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	15398.265625569999	3162.29483205
+LACTOSECAT-PWY	lactose and galactose degradation I|g__Staphylococcus.s__Staphylococcus_aureus	14640.04101528	1904.04953521
+PWY-5097	L lysine biosynthesis VI|g__Escherichia.s__Escherichia_coli	3428.2890930900003	502.92476772
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Rhodobacter.s__Rhodobacter_sphaeroides	18801.3724225	3211.2293611299997
+PWY0-1296	purine ribonucleosides degradation|g__Clostridium.s__Clostridium_beijerinckii	150.05359057	525.37143717
+HISTSYN-PWY	L histidine biosynthesis	32416.05928175	31600.28463458
+PWY-3781	aerobic respiration I |g__Pseudomonas.s__Pseudomonas_aeruginosa	7491.56572789	2317.68361723
+PWY0-862	 dodec 5 enoate biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	15969.817192830002	2909.2680553299997
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Escherichia.s__Escherichia_coli	1727.41805854	653.30925974
+COLANSYN-PWY	colanic acid building blocks biosynthesis	28678.45580369	28494.4300501
+PWY-5101	L isoleucine biosynthesis II	22361.04203875	13741.91441179
+CITRULBIO-PWY	L citrulline biosynthesis|unclassified	55.7009942	301.63018561
+PWY-7007	methyl ketone biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12638.30668609	1417.6578911
+OANTIGEN-PWY	O antigen building blocks biosynthesis 	37043.49111548	39282.37951921
+PWY-7392	taxadiene biosynthesis |unclassified	111.19487525	275.3197682
+PWY-7111	pyruvate fermentation to isobutanol |g__Pseudomonas.s__Pseudomonas_aeruginosa	1686.91584603	668.5915297600001
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	1835.16841428	1235.3135095500002
+GLYCOLYSIS	glycolysis I |unclassified	105.62597953999999	375.3039668
+PWY0-1479	tRNA processing|g__Pseudomonas.s__Pseudomonas_aeruginosa	792.95514307	102.76534397999998
+PWY0-1586	peptidoglycan maturation |g__Staphylococcus.s__Staphylococcus_epidermidis	9876.141443100001	2642.1116564
+PWY-5676	acetyl CoA fermentation to butanoate II|g__Acinetobacter.s__Acinetobacter_baumannii	514.4229295399999	11444.56531455
+TRNA-CHARGING-PWY	tRNA charging|g__Streptococcus.s__Streptococcus_mutans	6205.06647523	920.55531754
+PWY-1042	glycolysis IV 	79504.07976161	63155.140374079994
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Methanobrevibacter.s__Methanobrevibacter_smithii	921.45164361	306.61589504
+PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis|unclassified	10.99994953	171.56907964
+PWY-6823	molybdenum cofactor biosynthesis	11689.38825099	3849.86537302
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|unclassified	25.918671500000002	126.52926965
+HSERMETANA-PWY	L methionine biosynthesis III|g__Pseudomonas.s__Pseudomonas_aeruginosa	789.1704156000001	384.35614541
+PWY-4984	urea cycle|g__Rhodobacter.s__Rhodobacter_sphaeroides	4086.1284808500004	705.9114398500001
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|unclassified	575.26530988	983.80350721
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis	42538.048155950004	32819.400877700005
+PWY-5136	fatty acid &beta; oxidation II |g__Pseudomonas.s__Pseudomonas_aeruginosa	1357.80199154	830.29912068
+PWY-5723	Rubisco shunt|g__Escherichia.s__Escherichia_coli	6654.91523402	1332.34757015
+PWY-3001	superpathway of L isoleucine biosynthesis I|unclassified	206.96672994	203.68815159999997
+PWY-6385	peptidoglycan biosynthesis III |g__Streptococcus.s__Streptococcus_mutans	7761.37235033	1250.24056002
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|unclassified	497.58534600999997	921.9610124400001
+PWY-2941	L lysine biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	9809.51385017	1191.78719632
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	13741.30858183	1652.8372676899999
+SO4ASSIM-PWY	sulfate reduction I 	35216.31936041	40936.81096206
+PWY-7111	pyruvate fermentation to isobutanol |g__Rhodobacter.s__Rhodobacter_sphaeroides	21947.00532096	3015.52886467
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation 	52476.93508507	52322.88284070999
+PWY-6662	superpathway of quinolone and alkylquinolone biosynthesis	951.28204401	148.85805495
+P105-PWY	TCA cycle IV |g__Escherichia.s__Escherichia_coli	7310.469530279999	1229.50010255
+ARO-PWY	chorismate biosynthesis I	39856.94210184	39980.13710518
+PWY0-1061	superpathway of L alanine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6396.12010116	1697.64834255
+PWY-2942	L lysine biosynthesis III|g__Clostridium.s__Clostridium_beijerinckii	372.91948736	1644.65015852
+PWY-6071	superpathway of phenylethylamine degradation|g__Escherichia.s__Escherichia_coli	3223.0450121	219.49206547000003
+PWY-1541	superpathway of taurine degradation	3950.3540202000004	1492.5233970200002
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Staphylococcus.s__Staphylococcus_epidermidis	14173.96370335	1376.6552452899998
+LACTOSECAT-PWY	lactose and galactose degradation I|g__Staphylococcus.s__Staphylococcus_epidermidis	16429.976487030002	2786.8277047799997
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	11938.9512976	3320.0659426599996
+PWY-6823	molybdenum cofactor biosynthesis|g__Escherichia.s__Escherichia_coli	2695.9042741099997	363.87540029999997
+P122-PWY	heterolactic fermentation|g__Escherichia.s__Escherichia_coli	3913.8275813200003	893.58511653
+PWY-6467	Kdo transfer to lipid IVA III |g__Escherichia.s__Escherichia_coli	919.96428358	332.28938386000004
+FAO-PWY	fatty acid &beta; oxidation I|g__Acinetobacter.s__Acinetobacter_baumannii	528.02398393	18681.98587635
+PWY-1042	glycolysis IV |g__Staphylococcus.s__Staphylococcus_epidermidis	14357.382469749999	2606.7994551799998
+PWY-6353	purine nucleotides degradation II |g__Clostridium.s__Clostridium_beijerinckii	359.16006725	766.93398644
+PWY-6897	thiamin salvage II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1834.0901969699999	232.43439154
+PWY0-1296	purine ribonucleosides degradation|g__Streptococcus.s__Streptococcus_mutans	14193.57701265	1782.1085117700002
+PWY-7242	D fructuronate degradation|g__Clostridium.s__Clostridium_beijerinckii	910.41001378	1388.3956209799999
+LPSSYN-PWY	superpathway of lipopolysaccharide biosynthesis|g__Escherichia.s__Escherichia_coli	2310.64056389	449.02181701000006
+PENTOSE-P-PWY	pentose phosphate pathway|unclassified	29.823148770000003	164.88557397
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis 	50266.26648769	62728.69014455
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	10086.25496562	1747.9644646000002
+PWY0-1586	peptidoglycan maturation |g__Rhodobacter.s__Rhodobacter_sphaeroides	17646.46134618	3761.43440872
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	4590.98751745	373.74829981
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	9616.42001443	1928.39728702
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Streptococcus.s__Streptococcus_mutans	1494.5360413199999	795.26245393
+PWY-5173	superpathway of acetyl CoA biosynthesis|unclassified	120.13427395000001	606.29733923
+PWY-5989	stearate biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	18743.40187407	3261.3792890600002
+PWY-7279	aerobic respiration II  (yeast)|g__Escherichia.s__Escherichia_coli	2300.8408632799997	547.77684086
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Streptococcus.s__Streptococcus_mutans	4848.68160747	544.06181995
+PWY-6549	L glutamine biosynthesis III	19554.53369439	19052.39068185
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|unclassified	135.51257994000002	180.94686582
+PWY-5104	L isoleucine biosynthesis IV|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4041.12678369	677.2312789
+PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Clostridium.s__Clostridium_beijerinckii	733.63721053	655.3922520599999
+PWY-5850	superpathway of menaquinol 6 biosynthesis I	17486.22793545	2528.42214446
+PWY-5100	pyruvate fermentation to acetate and lactate II	61961.254378859994	39326.37224086
+ORNARGDEG-PWY	superpathway of L arginine and L ornithine degradation	17810.12785877	14882.884791679999
+GALACTUROCAT-PWY	D galacturonate degradation I|g__Clostridium.s__Clostridium_beijerinckii	454.98799178	975.3204096899999
+PWY66-389	phytol degradation|g__Deinococcus.s__Deinococcus_radiodurans	319.70501558	40965.69509177
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I 	44092.08547497	38126.46232861
+PWY-5791	1,4 dihydroxy 2 naphthoate biosynthesis II 	23957.08790904	9628.25846059
+PWY-1042	glycolysis IV |g__Rhodobacter.s__Rhodobacter_sphaeroides	18400.64704024	2382.2324869900003
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2641.1944949100002	287.5350973
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Escherichia.s__Escherichia_coli	2452.88651906	757.7820098
+PWY0-1296	purine ribonucleosides degradation|unclassified	276.90113256	347.60109499
+FAO-PWY	fatty acid &beta; oxidation I	53851.58344110999	114567.93386604
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|unclassified	62.56012882	113.79823176999999
+PWY0-1241	ADP L glycero &beta; D manno heptose biosynthesis	2810.79882266	5662.29453265
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	6491.57160956	1143.69916468
+GLYOXYLATE-BYPASS	glyoxylate cycle|unclassified	245.78660945	242.35758732
+PWY-7118	chitin degradation to ethanol|g__Rhodobacter.s__Rhodobacter_sphaeroides	6046.542531370001	636.64858662
+PWY-5005	biotin biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	157.63326438	3111.96188975
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Staphylococcus.s__Staphylococcus_epidermidis	12882.233349	3873.24946627
+PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Escherichia.s__Escherichia_coli	4135.66010524	403.51804659
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Escherichia.s__Escherichia_coli	3217.26914819	587.55353453
+PWY-7117	C4 photosynthetic carbon assimilation cycle, PEPCK type|g__Streptococcus.s__Streptococcus_mutans	4474.03606533	821.7671957900001
+PWY-6863	pyruvate fermentation to hexanol	1126.71827886	435.53809296
+PWY-5690	TCA cycle II 	56652.91295168	45179.078782469995
+PWY-6107	chlorosalicylate degradation	4990.49166626	3707.99522741
+KETOGLUCONMET-PWY	ketogluconate metabolism	26581.84758132	18204.19410453
+HEXITOLDEGSUPER-PWY	superpathway of hexitol degradation |g__Escherichia.s__Escherichia_coli	4951.0276161	1029.66808736
+PWY-5188	tetrapyrrole biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	9967.147659130002	1393.6830883100001
+ILEUDEG-PWY	L isoleucine degradation I	33.8421746	6967.214463509999
+PWY-5973	cis vaccenate biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	3065.16375685	2211.82313075
+PWY-5104	L isoleucine biosynthesis IV|g__Rhodobacter.s__Rhodobacter_sphaeroides	13149.032241539999	2037.23042068
+GLUTORN-PWY	L ornithine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	10594.99072564	2233.363451
+GOLPDLCAT-PWY	superpathway of glycerol degradation to 1,3 propanediol|g__Escherichia.s__Escherichia_coli	4787.85084508	670.06015789
+PWY-5104	L isoleucine biosynthesis IV|unclassified	27.526460600000004	90.72775607
+PWY-5100	pyruvate fermentation to acetate and lactate II|unclassified	107.48685215	457.06676419
+PWY-5044	purine nucleotides degradation I 	10420.23665431	1341.35103593
+PWY4LZ-257	superpathway of fermentation |g__Escherichia.s__Escherichia_coli	7404.23691668	1292.93379869
+PPGPPMET-PWY	ppGpp biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	170.66385714	3543.37983104
+PWY-5857	ubiquinol 10 biosynthesis |g__Escherichia.s__Escherichia_coli	5192.6310916600005	503.26909237999996
+PWY-5505	L glutamate and L glutamine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1694.23248921	142.30067375
+PWY3O-19	ubiquinol 6 biosynthesis from 4 hydroxybenzoate 	7436.371780349999	4088.6513370400003
+PWY-6803	phosphatidylcholine acyl editing|g__Acinetobacter.s__Acinetobacter_baumannii	277.00236356	4675.13406506
+GLUCONEO-PWY	gluconeogenesis I|unclassified	341.78038163	581.93203014
+PWY-5189	tetrapyrrole biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes	250.87312647000002	3981.9040144699998
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	140.45480082	7705.451660340001
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	15216.729328420002	1265.62840637
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	2696.7347028	720.57603157
+PWY-7094	fatty acid salvage|g__Rhodobacter.s__Rhodobacter_sphaeroides	7897.55298654	1565.53820887
+PWY-4984	urea cycle|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2120.2852916800002	328.27273799
+PWY-6549	L glutamine biosynthesis III|unclassified	20.945557179999998	76.71774189
+PWY-5690	TCA cycle II |g__Staphylococcus.s__Staphylococcus_epidermidis	11289.62079123	1852.0905114000002
+PWY-6385	peptidoglycan biosynthesis III |g__Clostridium.s__Clostridium_beijerinckii	384.38435174	980.83887227
+PWY-7316	dTDP N acetylviosamine biosynthesis	4747.95216611	522.80785368
+PWY-5103	L isoleucine biosynthesis III|g__Rhodobacter.s__Rhodobacter_sphaeroides	17193.24887293	2495.84469532
+PWY-6703	preQ0 biosynthesis|g__Escherichia.s__Escherichia_coli	2196.37874723	265.11920755
+PWY-5183	superpathway of aerobic toluene degradation	620.92354547	9826.044407009998
+TCA	TCA cycle I |g__Staphylococcus.s__Staphylococcus_aureus	14019.51532656	2090.06744613
+GOLPDLCAT-PWY	superpathway of glycerol degradation to 1,3 propanediol	21935.58683995	16932.68195242
+PWY-7094	fatty acid salvage|g__Acinetobacter.s__Acinetobacter_baumannii	383.68961709999996	15642.13285179
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4802.21599474	801.7154082599999
+COA-PWY	coenzyme A biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	8718.64851948	971.5584416700001
+PWY-6834	spermidine biosynthesis III	8.755657209999999	13.118561040000001
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II 	40859.19132075	39331.09573044
+PWY-7094	fatty acid salvage	32975.08793304	78804.14161873
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)	54100.93489871	54847.3411852
+SO4ASSIM-PWY	sulfate reduction I |g__Escherichia.s__Escherichia_coli	4348.02981722	1180.18269268
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	248.91691366	4349.20151743
+PWY-3781	aerobic respiration I |g__Propionibacterium.s__Propionibacterium_acnes	307.60781448	14416.040401769998
+PWY-5840	superpathway of menaquinol 7 biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7784.70036043	304.26113433
+PWY-5659	GDP mannose biosynthesis|g__Escherichia.s__Escherichia_coli	2998.91987725	599.8717343
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Escherichia.s__Escherichia_coli	4444.06370581	1229.13243631
+PWY-5686	UMP biosynthesis|g__Escherichia.s__Escherichia_coli	3828.9680141700005	454.83660692
+PWY-6609	adenine and adenosine salvage III|g__Escherichia.s__Escherichia_coli	8086.2797516	1548.4915980800001
+PWY-7237	myo , chiro  and scillo inositol degradation|g__Streptococcus.s__Streptococcus_mutans	8672.35490899	1086.4811321
+P185-PWY	formaldehyde assimilation III |g__Rhodobacter.s__Rhodobacter_sphaeroides	3769.4862625	253.00736269
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Escherichia.s__Escherichia_coli	6961.95708329	851.89371872
+TEICHOICACID-PWY	teichoic acid  biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	16083.5337461	2204.9891853
+PWY-7664	oleate biosynthesis IV |g__Rhodobacter.s__Rhodobacter_sphaeroides	18336.90726449	3167.12388831
+HEMESYN2-PWY	heme biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	9425.4210998	620.0331906399999
+PWY-5419	catechol degradation to 2 oxopent 4 enoate II	22.39292649	291.6975056
+GLYCOCAT-PWY	glycogen degradation I 	5938.07288606	4465.4192937
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Escherichia.s__Escherichia_coli	3497.05889875	1335.13916404
+PWY-7446	sulfoglycolysis|g__Escherichia.s__Escherichia_coli	3430.92544179	657.6507862999999
+PWY-6396	superpathway of 2,3 butanediol biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	22322.469865439998	3887.83766595
+KETOGLUCONMET-PWY	ketogluconate metabolism|g__Pseudomonas.s__Pseudomonas_aeruginosa	546.29117717	129.19896641
+SO4ASSIM-PWY	sulfate reduction I |g__Staphylococcus.s__Staphylococcus_epidermidis	14427.218700930001	4024.63059556
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	176.73696085999998	3518.3646343200003
+PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis 	25306.35827791	36043.30210169
+PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Clostridium.s__Clostridium_beijerinckii	1117.72340341	1062.21300097
+DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	11509.10208332	1676.68731447
+PWY0-1586	peptidoglycan maturation |g__Acinetobacter.s__Acinetobacter_baumannii	331.13742865	7622.78718765
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3636.8722239900003	418.09266441000005
+PWY-5181	toluene degradation III  (via p cresol)	947.6822035	8800.26352918
+PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Deinococcus.s__Deinococcus_radiodurans	140.21631076	37298.562560750004
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Escherichia.s__Escherichia_coli	8396.91481766	978.17632586
+PWY-7254	TCA cycle VII |g__Staphylococcus.s__Staphylococcus_aureus	11864.4067069	1881.01387725
+PWY-5188	tetrapyrrole biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes	267.30975913	2875.26924255
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|unclassified	154.80438139999998	200.4436209
+PWY-5897	superpathway of menaquinol 11 biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7642.0982759	298.12276962
+PWY-5686	UMP biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	13751.06115301	1664.70830303
+PWY66-398	TCA cycle III 	46956.7559626	32996.81636065
+PYRIDNUCSAL-PWY	NAD salvage pathway I|g__Escherichia.s__Escherichia_coli	2995.34583519	903.03899574
+PWY-6215	4 chlorobenzoate degradation	1294.63706815	994.93414741
+TRNA-CHARGING-PWY	tRNA charging|unclassified	151.67071684	279.10898301
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Clostridium.s__Clostridium_beijerinckii	1130.63668924	1298.50786707
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	2623.79630383	525.22827111
+PWY-4321	L glutamate degradation IV|g__Escherichia.s__Escherichia_coli	6548.55025559	955.6699935199999
+P4-PWY	superpathway of L lysine, L threonine and L methionine biosynthesis I	42981.96501594	35282.60519722
+PWY0-1296	purine ribonucleosides degradation|g__Escherichia.s__Escherichia_coli	5905.1400508	1004.0351469899999
+PWY-5177	glutaryl CoA degradation|g__Deinococcus.s__Deinococcus_radiodurans	233.62346918	17536.264479830003
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	19608.12664535	2773.60052861
+PWY-5989	stearate biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii	494.93454066	649.8672338099999
+PWY66-391	fatty acid &beta; oxidation VI |g__Clostridium.s__Clostridium_beijerinckii	552.67343754	664.72601448
+PWY-7663	gondoate biosynthesis |g__Clostridium.s__Clostridium_beijerinckii	535.5609169	1436.7413558399999
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	7532.211023569999	1708.50777468
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	13369.976352750002	1138.58445146
+PWY-5505	L glutamate and L glutamine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	109.19135136	8534.08747701
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	115.63145342000001	4185.99969337
+PWY-6700	queuosine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6704.37892204	1416.02455935
+TCA	TCA cycle I |g__Acinetobacter.s__Acinetobacter_baumannii	284.96860475	6906.20762341
+PWY-5973	cis vaccenate biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	461.26627003999994	559.77821671
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis 	56870.81422763	54874.88035774
+PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	2619.41883306	429.37673561
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	283.82647915	890.69968864
+PWY-6527	stachyose degradation|g__Escherichia.s__Escherichia_coli	5104.42642459	685.94419436
+PYRIDNUCSYN-PWY	NAD biosynthesis I 	18302.980270789998	21705.5525096
+PWY-6660	2 heptyl 3 hydroxy 4 quinolone biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	916.9509056200001	138.89133405
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Methanobrevibacter.s__Methanobrevibacter_smithii	3988.67469701	624.33499414
+PWY-5005	biotin biosynthesis II	25283.388095410002	12157.851814599999
+HEMESYN2-PWY	heme biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	13472.09250065	1713.65799734
+PWY-6936	seleno amino acid biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3039.5825965699996	376.86551947
+PWY-5109	2 methylbutanoate biosynthesis	33.772967879999996	5049.48684348
+PWY-6396	superpathway of 2,3 butanediol biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	19679.44267286	3256.1516091900003
+PWY-4981	L proline biosynthesis II |unclassified	63.38205838	222.25727060999998
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	9517.9304891	750.8276046
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|unclassified	919.02833222	3578.15030375
+PWY0-1296	purine ribonucleosides degradation|g__Streptococcus.s__Streptococcus_agalactiae	341.50455981	468.23264250000005
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	250.72579119	640.11726281
+PWY-6703	preQ0 biosynthesis|unclassified	166.55617781	237.99047049
+PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis	27609.943892270003	55410.47763922001
+PWY-6313	serotonin degradation|unclassified	16.87667991	69.54524508
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	17000.03083322	1887.5356126
+PWY-7111	pyruvate fermentation to isobutanol 	91215.09918013001	106698.7645659
+NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Escherichia.s__Escherichia_coli	4563.74325903	580.78945099
+PWY-6609	adenine and adenosine salvage III|unclassified	490.81998749	592.75976349
+PWY66-388	fatty acid &alpha; oxidation III	985.79683991	276.16868171000004
+SALVADEHYPOX-PWY	adenosine nucleotides degradation II	88803.42446757	102915.14901661001
+PWY0-1261	anhydromuropeptides recycling|g__Escherichia.s__Escherichia_coli	5164.50768682	671.73572925
+PWY-5920	superpathway of heme biosynthesis from glycine|unclassified	179.28692802	153.14173118
+PWY-5136	fatty acid &beta; oxidation II |g__Rhodobacter.s__Rhodobacter_sphaeroides	8187.17701385	2035.8636269600001
+PWY-6168	flavin biosynthesis III |unclassified	22.05762889	341.09623187
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5519.52416909	642.16724732
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	13126.863557179999	1971.91523207
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Rhodobacter.s__Rhodobacter_sphaeroides	10756.774344989999	1806.33977766
+PWY-7338	10 trans heptadecenoyl CoA degradation 	265.24638102	6718.68847562
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	925.81125974	570.67174576
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |unclassified	81.46119091	55.99019284
+PROPFERM-PWY	L alanine fermentation to propanoate and acetate	3414.7748697700004	7603.716788670001
+PWY0-1586	peptidoglycan maturation |g__Streptococcus.s__Streptococcus_agalactiae	1592.44568748	65.20241807000001
+FUC-RHAMCAT-PWY	superpathway of fucose and rhamnose degradation|g__Escherichia.s__Escherichia_coli	2672.23617009	334.24199609
+PWY4FS-8	phosphatidylglycerol biosynthesis II |unclassified	22.101043230000002	161.612461
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|unclassified	232.56967458000003	400.76010078
+GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	5994.21148325	1215.87465916
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	302.94617735	865.2333219200001
+PWY-5675	nitrate reduction V |g__Pseudomonas.s__Pseudomonas_aeruginosa	758.35984575	349.47294949
+GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes	107.67190015000001	3251.71232526
+PWY66-398	TCA cycle III |g__Escherichia.s__Escherichia_coli	4298.87847094	975.46785683
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Staphylococcus.s__Staphylococcus_epidermidis	7605.96092233	1506.9159832
+TRNA-CHARGING-PWY	tRNA charging	42514.78269981	46829.53125345
+PWY66-398	TCA cycle III |g__Staphylococcus.s__Staphylococcus_epidermidis	11400.02949074	1952.58109468
+P108-PWY	pyruvate fermentation to propanoate I	21370.63571368	10961.62077022
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	8106.31589531	957.65338279
+PWY-5705	allantoin degradation to glyoxylate III	4988.24776938	3974.31734997
+P105-PWY	TCA cycle IV 	34717.84358285	43631.24774437
+P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate|g__Escherichia.s__Escherichia_coli	9335.92303474	865.5506723
+PWY-7254	TCA cycle VII |unclassified	231.48620875	180.72369084
+PWY-6123	inosine 5 phosphate biosynthesis I	37738.9966888	31914.841722279998
+PWY-6168	flavin biosynthesis III |g__Clostridium.s__Clostridium_beijerinckii	208.67500418999998	1028.72168049
+ILEUDEG-PWY	L isoleucine degradation I|unclassified	31.02350409	50.449734649999996
+PWY-7392	taxadiene biosynthesis |g__Escherichia.s__Escherichia_coli	4360.22226313	671.90543482
+PWY4FS-7	phosphatidylglycerol biosynthesis I 	30310.64313792	30509.268921619998
+BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	7970.14050383	1204.55103104
+PWY-7111	pyruvate fermentation to isobutanol |g__Streptococcus.s__Streptococcus_mutans	10536.26945686	1359.3869058799999
+SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Pseudomonas.s__Pseudomonas_aeruginosa	1631.30013568	588.5642190499999
+BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I|g__Escherichia.s__Escherichia_coli	4148.07533959	1270.72266535
+ARO-PWY	chorismate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	9381.34167444	667.3706165
+PWY-5392	reductive TCA cycle II	6222.106181990001	9290.894775159999
+PWY-6305	putrescine biosynthesis IV|unclassified	51.90258317999999	31.670925659999998
+PWY-5918	superpathay of heme biosynthesis from glutamate|g__Escherichia.s__Escherichia_coli	3841.04767056	619.1121150499999
+PWY-7431	aromatic biogenic amine degradation |g__Deinococcus.s__Deinococcus_radiodurans	106.99067057	35904.38896923
+PWY-6876	isopropanol biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2357.4264539	1132.16522169
+PWY-7159	chlorophyllide a biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides	4564.85282156	305.95144423
+RHAMCAT-PWY	L rhamnose degradation I	2753.00090723	6231.75816202
+PWY-5178	toluene degradation IV  (via catechol)	1226.00430654	11102.28839175
+PWY-6318	L phenylalanine degradation IV 	4603.84593705	10810.02572699
+PWY-5103	L isoleucine biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus	12414.27467658	1786.69711145
+PWY-6936	seleno amino acid biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1127.7057008	624.74273289
+ORNDEG-PWY	superpathway of ornithine degradation|g__Escherichia.s__Escherichia_coli	6961.841337299999	1879.86262792
+PWY-821	superpathway of sulfur amino acid biosynthesis |unclassified	198.35944949	62.91254293
+PWY4LZ-257	superpathway of fermentation 	44732.97153912	35196.34309393
+PWY-5154	L arginine biosynthesis III 	30869.341010059998	16353.944968900001
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	502.20311761999994	1365.7276384
+PWY-6527	stachyose degradation|g__Clostridium.s__Clostridium_beijerinckii	764.01971384	1052.6895098
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis	69848.24168527	62918.876049239996
+PWY-7003	glycerol degradation to butanol	35602.38018151	33104.53190746
+PWY0-781	aspartate superpathway	42082.093207000005	34735.16190873
+PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III	52609.62657205	69843.89986527
+PWY-4702	phytate degradation I	22624.25071243	8353.47948871
+PWY-6660	2 heptyl 3 hydroxy 4 quinolone biosynthesis	1018.27138055	166.05058007
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II	66731.19113393	65510.21691925
+PWY-1541	superpathway of taurine degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	1331.30327472	494.02915612
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	12467.56941776	1186.30840442
+PWY-5505	L glutamate and L glutamine biosynthesis|g__Escherichia.s__Escherichia_coli	4807.56170969	267.30041515
+COA-PWY	coenzyme A biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	8929.2757152	597.27564545
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	9460.86075374	1143.6165617000001
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus	8228.75204539	864.5640452800001
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	13315.362005820001	2730.96285068
+PWY-6168	flavin biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides	954.65236598	215.54352842000003
+ANAEROFRUCAT-PWY	homolactic fermentation	47231.183115559994	51238.94439943
+PWY-6703	preQ0 biosynthesis	37565.10088152	17784.51296035
+PWY-5103	L isoleucine biosynthesis III|unclassified	514.140946	152.70024536
+METSYN-PWY	L homoserine and L methionine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	9066.105181679999	1512.51725014
+PWY-6629	superpathway of L tryptophan biosynthesis	9287.7075098	2101.64796802
+PWY-6897	thiamin salvage II|unclassified	62.66887813	51.62141534
+PWY-5179	toluene degradation V  (via toluene cis diol)	1175.61963234	9321.336531
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	9120.26391145	272.86237442000004
+ARO-PWY	chorismate biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	5263.13393609	374.1095239
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |unclassified	201.19854374	268.52977125
+NAD-BIOSYNTHESIS-II	NAD salvage pathway II	13145.25195057	14394.72090212
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	130.88871628	638.07241928
+PWY-5686	UMP biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	6095.41388472	756.68645712
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |unclassified	37.18478493	147.52475666
+TRNA-CHARGING-PWY	tRNA charging|g__Escherichia.s__Escherichia_coli	3427.33438952	604.21022222
+PWY-7392	taxadiene biosynthesis 	22625.20978655	36374.668218620005
+GLYCOGENSYNTH-PWY	glycogen biosynthesis I |unclassified	45.0348994	236.17489541999998
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|unclassified	592.6261526000001	800.90508802
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Streptococcus.s__Streptococcus_mutans	4993.87650547	932.1373791099999
+PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Pseudomonas.s__Pseudomonas_aeruginosa	2275.6870203	101.46591862000001
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	19743.007081670003	2827.0026693199998
+PWY-2941	L lysine biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	394.09016152	1676.2265765799998
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	19124.01326399	4424.63798302
+PWY-5838	superpathway of menaquinol 8 biosynthesis I|g__Escherichia.s__Escherichia_coli	3744.05810255	564.68862203
+PWY-3661	glycine betaine degradation I	5006.53265698	2061.22168576
+PWY-2941	L lysine biosynthesis II|unclassified	151.20561631	220.14088951000002
+PWY-7209	superpathway of pyrimidine ribonucleosides degradation|g__Clostridium.s__Clostridium_beijerinckii	198.66550806	737.81504759
+PWY-5973	cis vaccenate biosynthesis	50659.70157914	47808.40005229
+VALSYN-PWY	L valine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	15398.265625569999	3162.29483205
+PWY-5347	superpathway of L methionine biosynthesis 	47813.90820606	36358.63407726
+PWY-5705	allantoin degradation to glyoxylate III|g__Escherichia.s__Escherichia_coli	3172.0072013900003	608.25727177
+PWY-5189	tetrapyrrole biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	9232.02762332	972.4605241400001
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	115.87293755000002	2066.79582532
+PWY-5913	TCA cycle VI 	11186.806135179999	36877.34665631
+PWY-7332	superpathway of UDP N acetylglucosamine derived O antigen building blocks biosynthesis	2632.18927671	421.13090113
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Staphylococcus.s__Staphylococcus_aureus	20642.09935518	2941.18826041
+RIBOSYN2-PWY	flavin biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	221.52056625999998	931.60242831
+PWY-6859	all trans farnesol biosynthesis|g__Streptococcus.s__Streptococcus_mutans	3973.65462199	534.5250146999999
+FUC-RHAMCAT-PWY	superpathway of fucose and rhamnose degradation	3067.52817688	2924.07220335
+PWY-3661	glycine betaine degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	2692.02224716	367.03845135
+COBALSYN-PWY	adenosylcobalamin salvage from cobinamide I	5346.7993806	12547.64453488
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	451.26693608000005	118.13848862
+PWY-7111	pyruvate fermentation to isobutanol |g__Staphylococcus.s__Staphylococcus_aureus	18400.94002055	2812.66744758
+ARGSYNBSUB-PWY	L arginine biosynthesis II |unclassified	293.14527582	513.49738954
+PWY-5104	L isoleucine biosynthesis IV|g__Pseudomonas.s__Pseudomonas_aeruginosa	408.16928585000005	111.00281469
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis 	36953.29981166	27577.29744211
+PWY4FS-7	phosphatidylglycerol biosynthesis I |unclassified	22.101043230000002	161.612461
+PWY-6703	preQ0 biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	9091.84597682	1148.8475077
+RUMP-PWY	formaldehyde oxidation I	26275.609783620002	7100.351755290001
+UDPNACETYLGALSYN-PWY	UDP N acetyl D glucosamine biosynthesis II	141.87052685999998	6084.89185623
+PWY-6185	4 methylcatechol degradation |g__Rhodobacter.s__Rhodobacter_sphaeroides	598.01555474	257.13437267
+PWY-6531	mannitol cycle|g__Clostridium.s__Clostridium_beijerinckii	390.33946294000003	1044.00387677
+PWY3O-355	stearate biosynthesis III |unclassified	91.77854162999999	128.49200891
+PWY-6737	starch degradation V|g__Clostridium.s__Clostridium_beijerinckii	465.46058959	1119.2934920700002
+PWY-6609	adenine and adenosine salvage III|g__Clostridium.s__Clostridium_beijerinckii	288.50515480999996	565.36610303
+PWY-6305	putrescine biosynthesis IV	19202.98736811	14135.58824648
+PWY-5514	UDP N acetyl D galactosamine biosynthesis II	211.99921193	8344.45133876
+PWY-5136	fatty acid &beta; oxidation II |g__Staphylococcus.s__Staphylococcus_aureus	15972.290580070001	1647.241308
+TCA	TCA cycle I |unclassified	567.2164374800001	389.51525356999997
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	13221.008012479999	2711.21045708
+PWY-5384	sucrose degradation IV |g__Escherichia.s__Escherichia_coli	4251.55821798	860.48430271
+PWY-7560	methylerythritol phosphate pathway II|unclassified	190.48310055	616.88123936
+PWY-5505	L glutamate and L glutamine biosynthesis|unclassified	85.52116813	372.70122326
+PWY-181	photorespiration|g__Clostridium.s__Clostridium_beijerinckii	372.19346565	933.76358705
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	7493.69947139	1236.88763711
+PPGPPMET-PWY	ppGpp biosynthesis	44973.49258801	34850.08732192
+PWY-6608	guanosine nucleotides degradation III|unclassified	226.17168962	800.90508802
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis	43287.40505712	42116.33660823
+PWY3O-355	stearate biosynthesis III |g__Escherichia.s__Escherichia_coli	5255.01283344	1506.92972882
+PWY0-1586	peptidoglycan maturation 	83491.55944184	72155.219648
+PWY-2941	L lysine biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	4856.21523795	729.8299052
+PWY-5898	superpathway of menaquinol 12 biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	8558.3505207	1442.71932172
+PWY-5189	tetrapyrrole biosynthesis II |g__Helicobacter.s__Helicobacter_pylori	152.61203036	1603.0512511000002
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Neisseria.s__Neisseria_meningitidis	140.53759485999998	2264.77084787
+PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|unclassified	506.07257877	990.4336863599999
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Deinococcus.s__Deinococcus_radiodurans	124.49037391	32028.571975130002
+PWY-6588	pyruvate fermentation to acetone	27367.44684742	34308.830318039996
+PWY-922	mevalonate pathway I|g__Staphylococcus.s__Staphylococcus_epidermidis	11967.622123719999	2875.39880168
+GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Escherichia.s__Escherichia_coli	4745.94118624	504.45229965999994
+PWY-7007	methyl ketone biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	211.51665212999998	13266.17136023
+PWY-7345	superpathway of anaerobic sucrose degradation	42075.173558760005	35631.78085563
+PWY-6527	stachyose degradation|g__Propionibacterium.s__Propionibacterium_acnes	139.84368188	3590.5281961
+P161-PWY	acetylene degradation|g__Streptococcus.s__Streptococcus_mutans	7565.1175189900005	1208.74797625
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis	16089.266164329998	29058.0991718
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Pseudomonas.s__Pseudomonas_aeruginosa	3162.11220236	737.49180228
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans	233.01772842	21431.49705108
+PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Propionibacterium.s__Propionibacterium_acnes	182.74513609000002	4743.62791735
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Streptococcus.s__Streptococcus_mutans	4147.95045912	1074.2043069
+PWY-6608	guanosine nucleotides degradation III|g__Clostridium.s__Clostridium_beijerinckii	397.89514575	1082.8715938
+PWY66-400	glycolysis VI |g__Escherichia.s__Escherichia_coli	5039.65917968	883.08306277
+PWY1F-823	leucopelargonidin and leucocyanidin biosynthesis	4127.99593424	2120.70433628
+PWY66-422	D galactose degradation V |g__Staphylococcus.s__Staphylococcus_epidermidis	10908.82671526	1626.4956193700002
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	13350.356253090002	1937.01584304
+GLUDEG-I-PWY	GABA shunt|g__Acinetobacter.s__Acinetobacter_baumannii	171.9019466	5128.75995088
+PWY-5188	tetrapyrrole biosynthesis I |unclassified	185.45328389	350.42836661
+PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|unclassified	73.08564156	357.90668538
+PWY-5656	mannosylglycerate biosynthesis I	3622.2028718300003	1450.09611655
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	506.19386084	11724.83928567
+PWY-6307	L tryptophan degradation X |unclassified	7.6451198499999995	52.71222414
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Rhodobacter.s__Rhodobacter_sphaeroides	705.92151443	298.34613548000004
+PWY-3781	aerobic respiration I |g__Helicobacter.s__Helicobacter_pylori	475.85206385000004	7486.51278743
+PWY-5989	stearate biosynthesis II 	53603.190294939996	55311.553401959995
+VALSYN-PWY	L valine biosynthesis	70003.71141756	71583.25646679
+PWY-5103	L isoleucine biosynthesis III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3614.73246291	542.40478803
+PWY-6969	TCA cycle V (2 oxoglutarate	11786.44277577	1650.4404777200002
+PWY-5136	fatty acid &beta; oxidation II |g__Clostridium.s__Clostridium_beijerinckii	662.74020545	1731.3728237500002
+PWYG-321	mycolate biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7408.719988929999	1439.46980465
+AST-PWY	L arginine degradation II |g__Escherichia.s__Escherichia_coli	3175.20429473	640.09916285
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Staphylococcus.s__Staphylococcus_aureus	15060.725241009999	1494.7009771399998
+PWY-5659	GDP mannose biosynthesis|unclassified	263.55463924000003	240.28014025000002
+PWY-5103	L isoleucine biosynthesis III	67285.83296964	59099.147602029996
+PWY-6353	purine nucleotides degradation II 	47485.70063937	58756.41697673
+PWY3O-355	stearate biosynthesis III |g__Pseudomonas.s__Pseudomonas_aeruginosa	2511.03092886	726.07236887
+PWY-2942	L lysine biosynthesis III	42339.62983629	34392.14738805
+PWY0-881	superpathway of fatty acid biosynthesis I 	45452.74072717	29878.61606683
+PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Escherichia.s__Escherichia_coli	6176.06243791	1655.27459744
+PWY-5347	superpathway of L methionine biosynthesis |g__Methanobrevibacter.s__Methanobrevibacter_smithii	2887.64073082	336.98709522
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	13949.12951699	2919.27838396
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	11266.94869154	2395.07068247
+LACTOSECAT-PWY	lactose and galactose degradation I|g__Streptococcus.s__Streptococcus_mutans	11484.29673856	2194.3051095200003
+ENTBACSYN-PWY	enterobactin biosynthesis	17038.50988754	15521.88772225
+PWY-5028	L histidine degradation II	7261.31861705	8974.70796842
+PWY-7254	TCA cycle VII |g__Staphylococcus.s__Staphylococcus_epidermidis	12213.37539817	2074.1363870600003
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Neisseria.s__Neisseria_meningitidis	231.76664284	2194.9243779
+PENTOSE-P-PWY	pentose phosphate pathway|g__Escherichia.s__Escherichia_coli	6240.54534243	1322.89473522
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6200.11930071	1126.63760018
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	13577.70515859	1345.3118251199999
+PWY-3781	aerobic respiration I |g__Neisseria.s__Neisseria_meningitidis	142.20887338999998	6845.43838944
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II	41547.23173488	36974.26499356
+AST-PWY	L arginine degradation II |unclassified	36.70896885	43.0028201
+PWY-3781	aerobic respiration I |g__Escherichia.s__Escherichia_coli	11428.460877009999	3504.5920137499998
+PWY-5973	cis vaccenate biosynthesis|g__Escherichia.s__Escherichia_coli	4933.0362136700005	1486.75179442
+PWY0-881	superpathway of fatty acid biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	13870.430444729998	1484.39665394
+PWY-5097	L lysine biosynthesis VI	40159.08665526	32045.13110351
+PWY66-391	fatty acid &beta; oxidation VI 	20914.547364129998	42333.00357239
+METSYN-PWY	L homoserine and L methionine biosynthesis|unclassified	179.36070162	59.11133944
+PWY-6519	8 amino 7 oxononanoate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	7303.5463468299995	1335.34415148
+PWY-7237	myo , chiro  and scillo inositol degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	9819.80715387	2211.26570751
+PWY-6527	stachyose degradation|g__Streptococcus.s__Streptococcus_mutans	9089.59894354	1696.97295223
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	9666.83706939	1350.30343021
+P4-PWY	superpathway of L lysine, L threonine and L methionine biosynthesis I|unclassified	35.24206246	110.33724453
+HISDEG-PWY	L histidine degradation I	21504.37587874	24267.66049045
+COA-PWY-1	coenzyme A biosynthesis II |g__Escherichia.s__Escherichia_coli	3471.19142204	399.39801226
+SO4ASSIM-PWY	sulfate reduction I |unclassified	306.50095256	279.84454406000003
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|unclassified	299.90880661	35.87443555
+PWY-7094	fatty acid salvage|unclassified	68.94376122	290.92067033
+PWY0-1479	tRNA processing	28429.0265346	19968.7822609
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis	4016.0498312199998	3481.08509362
+PWY-241	C4 photosynthetic carbon assimilation cycle, NADP ME type|unclassified	15.97644532	119.88384108000001
+GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation	36690.31428144	12596.85475164
+PWY-7094	fatty acid salvage|g__Clostridium.s__Clostridium_beijerinckii	706.31794088	1887.52369475
+PWY-5177	glutaryl CoA degradation|g__Clostridium.s__Clostridium_beijerinckii	778.0678157899999	1886.01044032
+PWY-5415	catechol degradation I |unclassified	16.99542834	26.74947559
+PWY-5189	tetrapyrrole biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	5644.67137197	1024.4745956499999
+GLUTORN-PWY	L ornithine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	2679.42319429	806.1103788800001
+LEU-DEG2-PWY	L leucine degradation I|g__Acinetobacter.s__Acinetobacter_baumannii	487.6527638	8151.02758825
+PWY-6892	thiazole biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	326.41607884	1803.0529700799998
+PWY-1622	formaldehyde assimilation I 	16869.76703146	17976.03361653
+VALSYN-PWY	L valine biosynthesis|unclassified	776.19346604	604.1343849399999
+CATECHOL-ORTHO-CLEAVAGE-PWY	catechol degradation to &beta; ketoadipate|g__Acinetobacter.s__Acinetobacter_baumannii	149.04463452000002	4545.3441037600005
+PWY-5177	glutaryl CoA degradation	8345.27406715	24357.3341745
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2702.2020994199997	415.31118726
+P185-PWY	formaldehyde assimilation III |unclassified	229.66359348999998	92.56768513
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	4675.34976192	409.64292672999994
+NONMEVIPP-PWY	methylerythritol phosphate pathway I|unclassified	190.48310055	696.51351259
+DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II	50161.62438889	45943.65877522
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Escherichia.s__Escherichia_coli	4886.9472683700005	1952.51004651
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	590.69886533	952.60332503
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	342.25202047	442.44788052999996
+METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	9206.275255190001	1643.30536678
+PWY-6313	serotonin degradation	5247.96870404	65941.76850193001
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |unclassified	79.80705634	148.74577623
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	6981.3146637	790.12246772
+PWY-5838	superpathway of menaquinol 8 biosynthesis I	20399.45597269	15459.45965793
+PWY-5198	factor 420 biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2056.99650311	1029.88308336
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	849.92936801	233.48917514
+PROTOCATECHUATE-ORTHO-CLEAVAGE-PWY	protocatechuate degradation II |g__Rhodobacter.s__Rhodobacter_sphaeroides	165.24738702	226.99655206
+GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Escherichia.s__Escherichia_coli	18247.54040934	2132.81295952
+PWY-7090	UDP 2,3 diacetamido 2,3 dideoxy &alpha; D mannuronate biosynthesis	1581.87956853	4318.64802125
+PWY-5837	1,4 dihydroxy 2 naphthoate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	8931.57710009	1036.87621513
+GLYCOLYSIS	glycolysis I |g__Staphylococcus.s__Staphylococcus_aureus	9048.67193031	1447.8791871800001
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Staphylococcus.s__Staphylococcus_epidermidis	11620.129683739999	2327.01040743
+PWY-7616	methanol oxidation to carbon dioxide	5664.71730062	3330.31765438
+PWY0-1061	superpathway of L alanine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	5639.90969648	408.48759864
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	5837.85592311	1059.89073934
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|unclassified	217.85752657	210.92757903999998
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	422.57830215	385.27548967
+PWY-6383	mono trans, poly cis decaprenyl phosphate biosynthesis	480.92790378999996	7703.9650263799995
+PWY-5918	superpathay of heme biosynthesis from glutamate|g__Staphylococcus.s__Staphylococcus_aureus	10584.46000876	917.53282311
+HISDEG-PWY	L histidine degradation I|g__Staphylococcus.s__Staphylococcus_aureus	11903.40516232	1578.96341196
+PWY-1042	glycolysis IV |unclassified	609.36529953	470.50376795
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|unclassified	115.42932062999999	107.57051856
+PWY-5686	UMP biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	501.62861144	590.8950426199999
+PWY-7208	superpathway of pyrimidine nucleobases salvage|unclassified	328.44824284	1632.1629938600001
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Escherichia.s__Escherichia_coli	2952.43577862	691.62173498
+PRPP-PWY	superpathway of histidine, purine, and pyrimidine biosynthesis|unclassified	123.21554490999999	44.422174860000005
+PWY-5855	ubiquinol 7 biosynthesis |g__Escherichia.s__Escherichia_coli	5192.6310916600005	503.26909237999996
+PWY66-398	TCA cycle III |unclassified	57.05277505	211.46859686
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	368.15469715	627.07690718
+FERMENTATION-PWY	mixed acid fermentation	16516.61179929	33151.96694072
+SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	12155.468784980001	1518.01392412
+CITRULBIO-PWY	L citrulline biosynthesis	34861.87992626	26689.315882749997
+PWY-6892	thiazole biosynthesis I 	15649.75784171	15009.0695524
+PWY-7383	anaerobic energy metabolism 	1084.39620706	18624.38948306
+PWY-6662	superpathway of quinolone and alkylquinolone biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	878.7156962399999	130.55003111000002
+GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	4499.0362216	299.46683906
+PWY-6270	isoprene biosynthesis I	18747.17707039	39211.82802991
+PROTOCATECHUATE-ORTHO-CLEAVAGE-PWY	protocatechuate degradation II |g__Acinetobacter.s__Acinetobacter_baumannii	137.59889920999998	9468.087142740002
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	5547.2805521	1487.19056457
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	9120.26391145	272.86237442000004
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	13300.09259157	2430.24665674
+HEMESYN2-PWY	heme biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	10632.921907470001	2358.3855224
+PWY-5920	superpathway of heme biosynthesis from glycine	34220.53747476	25538.866486259998
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	840.16369785	249.7267861
+PWY-2941	L lysine biosynthesis II|g__Escherichia.s__Escherichia_coli	3674.13638979	507.25792093999996
+PWY-7221	guanosine ribonucleotides de novo biosynthesis	67239.6295973	73591.42295626
+PWY-5656	mannosylglycerate biosynthesis I|g__Escherichia.s__Escherichia_coli	2355.56148346	548.99122975
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	3144.89259109	435.50598367
+HISTSYN-PWY	L histidine biosynthesis|unclassified	714.39489046	912.28127753
+PWY-5028	L histidine degradation II|g__Pseudomonas.s__Pseudomonas_aeruginosa	477.61051891	130.76109347
+PWY-5686	UMP biosynthesis|g__Neisseria.s__Neisseria_meningitidis	144.27500451	1799.30870351
+PWY-7384	anaerobic energy metabolism 	6047.730768480001	9440.09605965
+PWY-7013	L 1,2 propanediol degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	3075.53211493	406.10609578
+GOLPDLCAT-PWY	superpathway of glycerol degradation to 1,3 propanediol|g__Clostridium.s__Clostridium_beijerinckii	621.6199414	1172.51156928
+CENTFERM-PWY	pyruvate fermentation to butanoate	3403.96694956	13660.884747029999
+PWY-5920	superpathway of heme biosynthesis from glycine|g__Escherichia.s__Escherichia_coli	2964.7912279700004	625.36454015
+PWY-5083	NAD NADH phosphorylation and dephosphorylation	35509.64730295	33915.294828570004
+GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|g__Staphylococcus.s__Staphylococcus_aureus	10444.55481621	647.67757379
+GLUCARGALACTSUPER-PWY	superpathway of D glucarate and D galactarate degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	308.68763761	88.53014420999999
+PWY-5505	L glutamate and L glutamine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3979.0194098199995	294.84644862
+PWY-7560	methylerythritol phosphate pathway II	21604.21273806	41159.27465473
+P125-PWY	superpathway of  butanediol biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	20020.76003565	3833.6852407499996
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	115.98420039999999	4378.06534124
+PWY-6692	Fe oxidation|g__Propionibacterium.s__Propionibacterium_acnes	203.08819313	13035.03494124
+PWY-6317	galactose degradation I 	29002.89130526	27792.66164467
+PWY-6859	all trans farnesol biosynthesis|unclassified	108.45787847	159.19637361
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	107.74273860000001	567.86059308
+PWY-6606	guanosine nucleotides degradation II|g__Acinetobacter.s__Acinetobacter_baumannii	66.28003314	6565.1518788700005
+PWY-6071	superpathway of phenylethylamine degradation	4017.6852753699995	9794.61438722
+PWY-5856	ubiquinol 9 biosynthesis |g__Escherichia.s__Escherichia_coli	3548.27701939	521.8008229999999
+REDCITCYC	TCA cycle VIII |g__Escherichia.s__Escherichia_coli	3398.3391760799996	468.79630793
+PWY-6353	purine nucleotides degradation II |g__Rhodobacter.s__Rhodobacter_sphaeroides	1553.24200077	329.46806017
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3060.84616078	474.02539577000005
+PWY-5464	superpathway of cytosolic glycolysis , pyruvate dehydrogenase and TCA cycle	14282.9279891	46570.83587732
+GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|g__Escherichia.s__Escherichia_coli	3925.18448656	691.87889193
+PWY-6471	peptidoglycan biosynthesis IV |g__Streptococcus.s__Streptococcus_mutans	7762.602482370001	602.4019219300001
+PWY-7234	inosine 5 phosphate biosynthesis III	35619.95560979	30283.7902698
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	371.72576197999996	7767.992203839999
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	10079.623536379999	1939.97841895
+PWY-6760	xylose degradation III	804.98341681	1622.33304968
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation	42612.59377811	35694.83938231
+PWY-6628	superpathway of L phenylalanine biosynthesis|unclassified	115.78265287	257.13564267
+ORNDEG-PWY	superpathway of ornithine degradation	15466.92079514	9221.98438125
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	107.74273860000001	567.86059308
+P165-PWY	superpathway of purines degradation in plants	5597.78759833	5604.28810525
+PWY-5971	palmitate biosynthesis II 	50235.7403127	55203.98761645999
+PWY-5154	L arginine biosynthesis III |g__Staphylococcus.s__Staphylococcus_epidermidis	9473.0785203	1982.8580474599999
+PWY-6151	S adenosyl L methionine cycle I|g__Streptococcus.s__Streptococcus_mutans	5028.95296683	976.78077043
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Escherichia.s__Escherichia_coli	3668.62659516	984.52375049
+PWY-4202	arsenate detoxification I 	8538.642574739999	1170.98483103
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Escherichia.s__Escherichia_coli	5202.12964363	512.45321216
+PWY-6731	starch degradation III	3082.41058849	4380.372696949999
+PWY-7560	methylerythritol phosphate pathway II|g__Escherichia.s__Escherichia_coli	4563.74325903	580.78945099
+PWY-181	photorespiration	21208.17040661	36792.757156089996
+PWY-2942	L lysine biosynthesis III|g__Staphylococcus.s__Staphylococcus_epidermidis	8711.81845307	2026.88412716
+PWY-1042	glycolysis IV |g__Clostridium.s__Clostridium_beijerinckii	1343.42939312	1926.9032721199999
+PWY-5004	superpathway of L citrulline metabolism	20177.87992919	21625.086921690003
+PWY-5384	sucrose degradation IV |g__Streptococcus.s__Streptococcus_mutans	4384.64835055	720.60092988
+UDPNACETYLGALSYN-PWY	UDP N acetyl D glucosamine biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	105.0311326	3474.2905711699996
+PWY-6737	starch degradation V|g__Streptococcus.s__Streptococcus_mutans	4477.53475853	1144.0835642299999
+VALSYN-PWY	L valine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1315.79158198	460.10715773
+PWY-5659	GDP mannose biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	172.93621006	4543.2598043200005
+PWY-5690	TCA cycle II |g__Rhodobacter.s__Rhodobacter_sphaeroides	14653.926941700001	1815.78529661
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1236.13068692	577.602828
+NAGLIPASYN-PWY	lipid IVA biosynthesis	5520.7704657	2737.56549181
+PWY-6263	superpathway of menaquinol 8 biosynthesis II	250.59205125	20182.148608950003
+GLUCARDEG-PWY	D glucarate degradation I|g__Escherichia.s__Escherichia_coli	7718.66574859	928.6094417799999
+PWY-5103	L isoleucine biosynthesis III|g__Escherichia.s__Escherichia_coli	4968.3544720400005	1346.85557241
+PWY-1861	formaldehyde assimilation II |g__Staphylococcus.s__Staphylococcus_epidermidis	10770.29512682	2313.03519811
+FERMENTATION-PWY	mixed acid fermentation|g__Escherichia.s__Escherichia_coli	5997.8931225	884.9762824800001
+PWY-7242	D fructuronate degradation	8877.84608059	20590.2145332
+GLUTORN-PWY	L ornithine biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	10358.865740989999	2120.66636906
+PWY-6700	queuosine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	715.22102433	211.22711208
+SALVADEHYPOX-PWY	adenosine nucleotides degradation II|unclassified	642.94774992	855.38281997
+PWY-5667	CDP diacylglycerol biosynthesis I|unclassified	15.807045489999998	251.37680805999997
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|unclassified	671.2803887499999	1480.01334876
+PWY-6692	Fe oxidation	36051.00261681	40173.95477638
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Escherichia.s__Escherichia_coli	3946.91850949	661.6954578799999
+PWY66-400	glycolysis VI |unclassified	72.79705167	267.81109286000003
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	119.88764961	4867.55493775
+PWY-7431	aromatic biogenic amine degradation 	4152.37836108	48901.64741378
+COA-PWY-1	coenzyme A biosynthesis II 	38930.53394384	36867.67851784
+PWY0-862	 dodec 5 enoate biosynthesis	46825.55355907	46523.1898007
+PWY-5189	tetrapyrrole biosynthesis II 	33564.09406922	24606.114688139998
+RHAMCAT-PWY	L rhamnose degradation I|g__Clostridium.s__Clostridium_beijerinckii	278.49032545	192.51540339
+ANAEROFRUCAT-PWY	homolactic fermentation|unclassified	123.73241713	382.52191049
+TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA|g__Escherichia.s__Escherichia_coli	6403.06946833	517.51984023
+PWY-7200	superpathway of pyrimidine deoxyribonucleoside salvage	39754.80454343	15041.15688358
+PYRIDNUCSYN-PWY	NAD biosynthesis I |unclassified	51.85970874	10.04748482
+PWY-7345	superpathway of anaerobic sucrose degradation|g__Staphylococcus.s__Staphylococcus_aureus	9983.74247617	1255.8351260700001
+VALSYN-PWY	L valine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3988.67469701	624.33499414
+P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate	36992.525398	16569.09631099
+PWY-6309	L tryptophan degradation XI |g__Escherichia.s__Escherichia_coli	801.54957038	88.65248227
+PWY-5484	glycolysis II |g__Clostridium.s__Clostridium_beijerinckii	675.81916642	1429.9910886399998
+PWY-5097	L lysine biosynthesis VI|g__Clostridium.s__Clostridium_beijerinckii	387.82096645	656.86620468
+PWY-5676	acetyl CoA fermentation to butanoate II|g__Clostridium.s__Clostridium_beijerinckii	834.7218768099999	2820.8168650000002
+PWY-5837	1,4 dihydroxy 2 naphthoate biosynthesis I	23957.08790904	9628.25846059
+PENTOSE-P-PWY	pentose phosphate pathway|g__Staphylococcus.s__Staphylococcus_aureus	9917.04733648	909.6719431800001
+ENTBACSYN-PWY	enterobactin biosynthesis|g__Escherichia.s__Escherichia_coli	4288.553753	1235.42394713
+PWY-6737	starch degradation V	18112.8261844	21253.38574649
+PWY-6609	adenine and adenosine salvage III|g__Staphylococcus.s__Staphylococcus_aureus	21193.06159395	2212.50631896
+PWY-3841	folate transformations II|g__Streptococcus.s__Streptococcus_mutans	3609.0610315	819.2131656600001
+PWY66-389	phytol degradation|g__Escherichia.s__Escherichia_coli	13195.72220185	1867.39557286
+VALDEG-PWY	L valine degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	1170.70807085	206.58408391999998
+HEXITOLDEGSUPER-PWY	superpathway of hexitol degradation 	34692.23149317	20579.32773064
+GLUCONEO-PWY	gluconeogenesis I|g__Staphylococcus.s__Staphylococcus_aureus	10828.04858573	1428.88156479
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	13824.45326197	2618.80297394
+VALDEG-PWY	L valine degradation I	14161.86264574	21609.58933587
+PWY-5189	tetrapyrrole biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii	138.0988629	472.69095626000006
+P162-PWY	L glutamate degradation V 	3242.4678305400003	2445.80995351
+PWY-5529	superpathway of bacteriochlorophyll a biosynthesis|unclassified	63.785922049999996	9.10977606
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Escherichia.s__Escherichia_coli	4053.1282457800003	716.48070812
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Staphylococcus.s__Staphylococcus_epidermidis	8374.74233098	1554.00810636
+PWY-2941	L lysine biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	9626.53531302	2174.69673939
+PWY-5044	purine nucleotides degradation I |g__Escherichia.s__Escherichia_coli	6488.127119070001	598.55626266
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Clostridium.s__Clostridium_beijerinckii	367.13964071	1248.77414621
+PWY-6606	guanosine nucleotides degradation II|g__Deinococcus.s__Deinococcus_radiodurans	134.26874627	5710.786879310001
+PWY-4984	urea cycle|g__Clostridium.s__Clostridium_beijerinckii	328.94896353999997	583.47538404
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	5998.36034323	623.7485748
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	7752.5548229099995	1112.85225784
+PWY-5741	ethylmalonyl CoA pathway|unclassified	159.43263537	123.51229808
+GLYCOLYSIS	glycolysis I |g__Clostridium.s__Clostridium_beijerinckii	733.21731186	1313.42324383
+HSERMETANA-PWY	L methionine biosynthesis III	47454.22300898	33360.10586894
+PWY-7003	glycerol degradation to butanol|g__Clostridium.s__Clostridium_beijerinckii	819.01588751	1275.1628436600001
+ALL-CHORISMATE-PWY	superpathway of chorismate metabolism	19150.95639168	4260.49702607
+DENITRIFICATION-PWY	nitrate reduction I |g__Pseudomonas.s__Pseudomonas_aeruginosa	1035.8039651000001	360.04829778
+PWY66-422	D galactose degradation V |g__Streptococcus.s__Streptococcus_mutans	7035.17091012	1552.21616887
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12991.951382369998	2172.99065837
+PWY-6700	queuosine biosynthesis	29023.123786539996	29994.19972967
+PWY66-409	superpathway of purine nucleotide salvage|g__Streptococcus.s__Streptococcus_mutans	7947.520032779999	845.80015629
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I 	44554.53293907	39095.07670156
+CITRULBIO-PWY	L citrulline biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	14736.261706450001	1066.92554863
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	595.30096539	1204.72237146
+GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|unclassified	29.787848519999997	230.35574418999997
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I	46347.53057117	28082.78350233
+PWY-7204	pyridoxal 5 phosphate salvage II |g__Escherichia.s__Escherichia_coli	5043.16592728	1764.28468097
+POLYAMSYN-PWY	superpathway of polyamine biosynthesis I|g__Escherichia.s__Escherichia_coli	4745.3481034900005	784.21493314
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	318.5991959	894.60180602
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	19124.01326399	4424.63798302
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Clostridium.s__Clostridium_beijerinckii	253.21330017000002	1172.42542061
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |unclassified	149.89910264	226.09898283
+PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Escherichia.s__Escherichia_coli	3795.12336761	513.0136593699999
+SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Escherichia.s__Escherichia_coli	12492.25414442	2072.73166326
+PWY-5044	purine nucleotides degradation I |unclassified	21.033711229999998	20.45207474
+SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Acinetobacter.s__Acinetobacter_baumannii	62.64066381	10151.49960872
+FUCCAT-PWY	fucose degradation	3606.0078246400003	8327.91486787
+PWY-6728	methylaspartate cycle	1366.55768915	4854.730364720001
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	440.67562541	831.03878498
+ARO-PWY	chorismate biosynthesis I|g__Escherichia.s__Escherichia_coli	3225.13196939	771.7595181300001
+METSYN-PWY	L homoserine and L methionine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	325.28881051999997	710.79544091
+OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Streptococcus.s__Streptococcus_mutans	4331.94477485	650.07310656
+PPGPPMET-PWY	ppGpp biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	8163.92211214	1429.90290118
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii	228.00605008	777.7123320000001
+PWY-7242	D fructuronate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	1182.21728289	246.75841607
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|unclassified	178.44424417	59.3183373
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Streptococcus.s__Streptococcus_mutans	6005.8275729199995	1324.68398405
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	7910.24669717	1324.65246274
+PWY0-862	 dodec 5 enoate biosynthesis|g__Escherichia.s__Escherichia_coli	5930.63539968	2438.76864939
+PWY-6270	isoprene biosynthesis I|g__Escherichia.s__Escherichia_coli	4112.18893936	523.7693911700001
+CITRULBIO-PWY	L citrulline biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	1558.24120275	542.34615504
+PWY-7279	aerobic respiration II  (yeast)|g__Deinococcus.s__Deinococcus_radiodurans	117.20754160999999	33468.307196400005
+PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |g__Pseudomonas.s__Pseudomonas_aeruginosa	1016.39386483	86.58790803000001
+PWY-5692	allantoin degradation to glyoxylate II	4057.67840734	2293.15616713
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	7522.077891070001	1127.40646497
+PWY-6608	guanosine nucleotides degradation III|g__Rhodobacter.s__Rhodobacter_sphaeroides	1185.22177378	255.33826298000002
+PWY66-398	TCA cycle III |g__Rhodobacter.s__Rhodobacter_sphaeroides	11496.94872532	1488.79654114
+PWY-5861	superpathway of demethylmenaquinol 8 biosynthesis|g__Escherichia.s__Escherichia_coli	3430.13320251	441.24808359
+PWY-7242	D fructuronate degradation|g__Escherichia.s__Escherichia_coli	4314.1628976	868.78935856
+PWY-5837	1,4 dihydroxy 2 naphthoate biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	8046.86968937	1435.9685915
+PWY-5690	TCA cycle II |g__Escherichia.s__Escherichia_coli	7911.79312763	1916.58661982
+PWY-6609	adenine and adenosine salvage III|g__Rhodobacter.s__Rhodobacter_sphaeroides	1119.52186134	242.95336488
+PWY0-1061	superpathway of L alanine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	663.19798123	223.09410290999998
+PWY-7118	chitin degradation to ethanol	24930.67285897	16469.32608119
+LEU-DEG2-PWY	L leucine degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	5583.19989234	666.06660022
+PWY-4984	urea cycle|g__Staphylococcus.s__Staphylococcus_aureus	13721.841327350001	1247.846039
+GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff	29429.324006000003	39825.30667664
+COLANSYN-PWY	colanic acid building blocks biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	3761.7802113800003	424.91047108000004
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	6666.65088781	1300.82275726
+PWY0-1277	3 phenylpropanoate and 3 propanoate degradation	3685.5879464	1129.41821136
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	10239.9838748	583.91715667
+LACTOSECAT-PWY	lactose and galactose degradation I|g__Escherichia.s__Escherichia_coli	7616.90142826	2072.93056179
+PWY-1882	superpathway of C1 compounds oxidation to CO2	7208.3160802699995	728.70449846
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	1056.89034552	272.35544024
+DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	10159.662734559999	2449.72280592
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate	42798.29124205	39085.75392487
+PWY-5022	4 aminobutanoate degradation V|g__Staphylococcus.s__Staphylococcus_aureus	10972.464344639999	1366.77735904
+PWY-6396	superpathway of 2,3 butanediol biosynthesis	57893.97455403	18390.297759110003
+PWY-7663	gondoate biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	454.51931322999997	13613.30941422
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Neisseria.s__Neisseria_meningitidis	132.89036545	2274.77534093
+PWY-4981	L proline biosynthesis II 	37307.856838830005	23054.75024083
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	9736.9957974	1478.5068247
+PWYG-321	mycolate biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5168.24200345	645.3050819
+TRPSYN-PWY	L tryptophan biosynthesis	4901.67476169	998.2472274699999
+PWY-5659	GDP mannose biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	153.53146279	38165.608289890006
+PWY-1861	formaldehyde assimilation II 	47512.92818156	20601.21862324
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	10012.72149072	2046.57621504
+PWY-4041	&gamma; glutamyl cycle|g__Streptococcus.s__Streptococcus_mutans	6290.16065591	1117.44558635
+HSERMETANA-PWY	L methionine biosynthesis III|unclassified	245.11456407	64.88717342
+SO4ASSIM-PWY	sulfate reduction I |g__Pseudomonas.s__Pseudomonas_aeruginosa	988.32321115	259.14996686
+PWY-6471	peptidoglycan biosynthesis IV 	46455.86562697	30449.86342073
+PWY-7663	gondoate biosynthesis 	69550.97034083	77791.38566998001
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Escherichia.s__Escherichia_coli	6254.53668867	727.0771564400001
+PWY-5103	L isoleucine biosynthesis III|g__Clostridium.s__Clostridium_beijerinckii	224.53851178000002	1697.86947071
+PWY-5899	superpathway of menaquinol 13 biosynthesis	21209.493849309998	15529.897921419999
+PWY-5104	L isoleucine biosynthesis IV	64889.136562110005	46703.13808126
+PWY-6353	purine nucleotides degradation II |unclassified	229.24381963	711.91951047
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|unclassified	842.53460987	1270.1207821100002
+KDO-NAGLIPASYN-PWY	superpathway of 2 lipid A biosynthesis	2651.5870043100003	428.18581142000005
+GALACTUROCAT-PWY	D galacturonate degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	1156.9668675799999	380.14626344
+PWY-6151	S adenosyl L methionine cycle I|unclassified	305.21556623000004	228.60531508
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Staphylococcus.s__Staphylococcus_aureus	14920.264386189998	1024.89272699
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Escherichia.s__Escherichia_coli	1993.40709276	272.54055300000005
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Escherichia.s__Escherichia_coli	4875.90829991	950.71788827
+PWY-4242	pantothenate and coenzyme A biosynthesis III|unclassified	33.95903206	32.030130299999996
+PWY-2942	L lysine biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus	8649.82954791	733.47404224
+PWY-5188	tetrapyrrole biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	251.72634599	685.20574459
+FAO-PWY	fatty acid &beta; oxidation I|g__Deinococcus.s__Deinococcus_radiodurans	280.54495609	57620.91248906001
+PWY-7400	L arginine biosynthesis IV |g__Rhodobacter.s__Rhodobacter_sphaeroides	7934.796046130001	1107.84586827
+BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I	38795.07838585	31607.490490279997
+GALACT-GLUCUROCAT-PWY	superpathway of hexuronide and hexuronate degradation|g__Escherichia.s__Escherichia_coli	3072.28794441	365.92819106999997
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	8541.06686549	741.49591192
+P241-PWY	coenzyme B biosynthesis	3419.91218295	1891.5381085100003
+PWY-7374	1,4 dihydroxy 6 naphthoate biosynthesis I	22.25632096	426.17944029999995
+PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis|g__Escherichia.s__Escherichia_coli	2974.48607297	482.78573823000005
+PWY0-1241	ADP L glycero &beta; D manno heptose biosynthesis|g__Escherichia.s__Escherichia_coli	2514.29870415	486.31436736
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	140.15988892	4129.47110281
+PWY-6936	seleno amino acid biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	906.21542872	1033.2117068300001
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	9534.13281027	2243.39309727
+ECASYN-PWY	enterobacterial common antigen biosynthesis	4674.62812277	665.3177705100001
+SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|unclassified	150.9288041	157.66409316
+PWY66-389	phytol degradation|unclassified	101.45146064	411.91815981
+TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA	32877.46573343	41828.65902757
+COA-PWY-1	coenzyme A biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes	603.40041396	3920.4615069399997
+PWY-6317	galactose degradation I |g__Escherichia.s__Escherichia_coli	5784.63986016	880.24907284
+PWY-6309	L tryptophan degradation XI |unclassified	16.69873704	148.82889742
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1602.4140870699998	626.35391473
+PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Staphylococcus.s__Staphylococcus_epidermidis	10073.82449271	1546.31425608
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Streptococcus.s__Streptococcus_mutans	5294.93799882	691.10581987
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I	54933.356298989995	49607.632142149996
+ORNDEG-PWY	superpathway of ornithine degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	3931.8246043599997	679.13054889
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	1315.79158198	460.10715773
+P441-PWY	superpathway of N acetylneuraminate degradation|g__Escherichia.s__Escherichia_coli	4738.80527812	730.2557296699999
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Escherichia.s__Escherichia_coli	6045.539229620001	1238.3670968200001
+PWY-7663	gondoate biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	3996.48378193	745.87090675
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	453.21006187000006	1509.42967168
+PWY-6609	adenine and adenosine salvage III	64218.40304102	74962.19706488
+PWY-5840	superpathway of menaquinol 7 biosynthesis	21558.56195852	16325.30025035
+PWY-6708	ubiquinol 8 biosynthesis 	11213.868548909999	8071.01088192
+PWY-4041	&gamma; glutamyl cycle	30349.47574392	14586.777221400002
+PWY-5136	fatty acid &beta; oxidation II |g__Acinetobacter.s__Acinetobacter_baumannii	495.9600788	17197.36189807
+PWY-5675	nitrate reduction V |g__Acinetobacter.s__Acinetobacter_baumannii	240.27040838999997	12246.79906873
+HSERMETANA-PWY	L methionine biosynthesis III|g__Clostridium.s__Clostridium_beijerinckii	321.41986876000004	1960.5385296800002
+PWY-6385	peptidoglycan biosynthesis III 	45267.185498549996	39542.02658978
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3181.43595986	255.12999602000002
+GALACTARDEG-PWY	D galactarate degradation I	14021.954162770002	9190.33499114
+DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	9882.602140250001	864.60468771
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Escherichia.s__Escherichia_coli	4968.3544720400005	1560.31988439
+PWY0-1296	purine ribonucleosides degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	9253.61491927	2562.74998651
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6390.10022469	855.7028493800001
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |unclassified	27.4597085	4.34882378
+VALSYN-PWY	L valine biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	13536.0205713	2094.79557458
+ANAEROFRUCAT-PWY	homolactic fermentation|g__Staphylococcus.s__Staphylococcus_aureus	10833.73436854	1386.98586182
+TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA|unclassified	267.11172465000004	227.92665649999998
+PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Escherichia.s__Escherichia_coli	4955.01408564	651.45757347
+PWY-7208	superpathway of pyrimidine nucleobases salvage	64540.065915670006	71521.05872398999
+PWY-6700	queuosine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	10350.020510170001	2211.34331624
+TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA|g__Acinetobacter.s__Acinetobacter_baumannii	185.68545967	5599.62773299
+PWY-6859	all trans farnesol biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2218.90334077	1070.0741038200001
+PWY-6313	serotonin degradation|g__Deinococcus.s__Deinococcus_radiodurans	141.91395573	50195.05437098
+P185-PWY	formaldehyde assimilation III |g__Staphylococcus.s__Staphylococcus_aureus	11326.71914268	1180.85025887
+PWY-7111	pyruvate fermentation to isobutanol |g__Deinococcus.s__Deinococcus_radiodurans	93.89885068	34988.120904049996
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Clostridium.s__Clostridium_beijerinckii	685.7714091400001	1599.24912876
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4818.721448210001	309.11368978999997
+PWY-5791	1,4 dihydroxy 2 naphthoate biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	8931.57710009	1036.87621513
+PWY-5659	GDP mannose biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	863.47445643	319.60612649
+PWY-5431	aromatic compounds degradation via &beta; ketoadipate	6022.47300648	7321.53949818
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	948.5273859499999	478.36749113
+KETOGLUCONMET-PWY	ketogluconate metabolism|g__Escherichia.s__Escherichia_coli	7120.40523932	972.8215880500001
+PWY0-41	allantoin degradation IV 	3232.3594246699995	1608.6677824399999
+DAPLYSINESYN-PWY	L lysine biosynthesis I|unclassified	103.4212871	260.16968336
+PWY-6588	pyruvate fermentation to acetone|g__Clostridium.s__Clostridium_beijerinckii	912.64701339	1148.73888196
+PWY-5723	Rubisco shunt	42454.62769565	14259.80872621
+PWY-6435	4 hydroxybenzoate biosynthesis V|unclassified	19.76275995	567.1033635
+ARG+POLYAMINE-SYN	superpathway of arginine and polyamine biosynthesis	15391.325338350001	13580.64947191
+PWY-7279	aerobic respiration II  (yeast)|g__Rhodobacter.s__Rhodobacter_sphaeroides	34563.91963867	2990.56093986
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Staphylococcus.s__Staphylococcus_epidermidis	20271.24492642	2540.99221597
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	264.13154309000004	1150.6240638
+METSYN-PWY	L homoserine and L methionine biosynthesis|g__Escherichia.s__Escherichia_coli	4859.01930985	976.4776168
+PWY-5101	L isoleucine biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	858.49383751	2333.52768925
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I	65227.41956386	77838.22109591
+PWY-6837	fatty acid beta oxidation V 	4060.5801508100003	14541.654129389999
+P122-PWY	heterolactic fermentation	30420.46993616	15743.34309648
+PWY-2723	trehalose degradation V	4485.79830654	3675.30686654
+PWY-621	sucrose degradation III |g__Staphylococcus.s__Staphylococcus_aureus	9123.91581318	1005.45271042
+PPGPPMET-PWY	ppGpp biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	220.87102439	7064.004160330001
+CITRULBIO-PWY	L citrulline biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	13871.30414056	1491.8588531599999
+TCA	TCA cycle I |g__Escherichia.s__Escherichia_coli	8232.47905846	1001.97860516
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1069.37687177	122.48983805
+PWY-5863	superpathway of phylloquinol biosynthesis	25713.60045967	10492.46421351
+PYRIDNUCSAL-PWY	NAD salvage pathway I|g__Acinetobacter.s__Acinetobacter_baumannii	297.74400614999996	2434.89303333
+METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Escherichia.s__Escherichia_coli	7286.65971768	427.03365442
+LPSSYN-PWY	superpathway of lipopolysaccharide biosynthesis	3608.80212924	919.83722264
+PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	3969.99741586	237.79440856
+PWY-7111	pyruvate fermentation to isobutanol |g__Methanobrevibacter.s__Methanobrevibacter_smithii	3668.1129446500004	917.90287829
+PWY-7159	chlorophyllide a biosynthesis III |unclassified	38.791368850000005	9.499262869999999
+PWY-5747	2 methylcitrate cycle II	4790.66631691	13931.71564725
+GLUTORN-PWY	L ornithine biosynthesis|g__Escherichia.s__Escherichia_coli	4196.64253532	623.07522492
+PWY0-1533	methylphosphonate degradation I|g__Escherichia.s__Escherichia_coli	4733.19141338	354.33547082999996
+PWY-6608	guanosine nucleotides degradation III	84792.82312133	93639.0955773
+PWY66-389	phytol degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	29502.583731739996	3485.5209588599996
+PWY-5899	superpathway of menaquinol 13 biosynthesis|g__Escherichia.s__Escherichia_coli	3694.00663281	527.00700198
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	13741.30858183	1652.8372676899999
+GLYCOLYSIS-TCA-GLYOX-BYPASS	superpathway of glycolysis, pyruvate dehydrogenase, TCA, and glyoxylate bypass|unclassified	150.63161824	269.89202219
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	300.13029529	146.91850616
+TCA	TCA cycle I |g__Staphylococcus.s__Staphylococcus_epidermidis	16146.02702192	2528.12680633
+ARGSYN-PWY	L arginine biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	15335.827141729998	2485.76127548
+PWY-5898	superpathway of menaquinol 12 biosynthesis|g__Escherichia.s__Escherichia_coli	3694.00663281	527.00700198
+HEMESYN2-PWY	heme biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	620.28176778	136.33892378000002
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	11735.73650173	3930.94756675
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	10137.89706368	735.0505281000001
+PWY66-400	glycolysis VI |g__Staphylococcus.s__Staphylococcus_epidermidis	10256.84216366	1463.03605442
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Acinetobacter.s__Acinetobacter_baumannii	76.82100177	11482.19103274
+THREOCAT-PWY	superpathway of L threonine metabolism	36.33843	10232.92555086
+PWY-6708	ubiquinol 8 biosynthesis |g__Escherichia.s__Escherichia_coli	5192.6310916600005	908.1538141899999
+PWY-6897	thiamin salvage II	26586.26565285	26839.34697198
+PWY-5417	catechol degradation III 	6022.47300648	7321.53949818
+PWY-5188	tetrapyrrole biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	12845.978179470001	1606.0769916200002
+P185-PWY	formaldehyde assimilation III 	41829.82882919	37756.94566529
+PWY-6654	phosphopantothenate biosynthesis III	3761.44995261	1319.99040546
+PWY66-409	superpathway of purine nucleotide salvage	44314.58270261	52770.682137309996
+PWY-5189	tetrapyrrole biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	411.4210711	299.49324176
+URSIN-PWY	ureide biosynthesis	9875.143044729999	8599.32038015
+PWY-4984	urea cycle|g__Escherichia.s__Escherichia_coli	1054.93928256	212.39005749999998
+PWY-6969	TCA cycle V (2 oxoglutarate	59840.214357369994	44936.67290672
+PWY-6692	Fe oxidation|g__Pseudomonas.s__Pseudomonas_aeruginosa	5267.87355288	2412.43460526
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	248.91691366	4349.20151743
+CHLOROPHYLL-SYN	chlorophyllide a biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	4670.41210187	310.76733959
+ARGSYN-PWY	L arginine biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	13382.49741459	2774.24650543
+PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Escherichia.s__Escherichia_coli	4955.01408564	651.45757347
+PWY-6630	superpathway of L tyrosine biosynthesis	27623.957823170003	30263.10665011
+ARGORNPROST-PWY	arginine, ornithine and proline interconversion|g__Staphylococcus.s__Staphylococcus_epidermidis	12097.40978904	3112.2082140700004
+METSYN-PWY	L homoserine and L methionine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5565.46473511	1042.2642095200001
+PWY-7159	chlorophyllide a biosynthesis III 	22119.12166258	4923.54292722
+P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate|g__Streptococcus.s__Streptococcus_mutans	9143.222127449999	2159.76313693
+PWY-5723	Rubisco shunt|unclassified	421.29921723999996	188.68046806
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	14406.946561320001	1067.9940728
+CHLOROPHYLL-SYN	chlorophyllide a biosynthesis I |unclassified	38.80616371	9.51276645
+PWYG-321	mycolate biosynthesis|unclassified	606.2265585	652.96239106
+PWY-6672	cis genanyl CoA degradation|g__Acinetobacter.s__Acinetobacter_baumannii	197.93128710000002	6605.50398112
+PWY-5345	superpathway of L methionine biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	11207.1799701	1711.9114817500001
+PWY-6182	superpathway of salicylate degradation	6723.69744496	5627.662338759999
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	9427.54664261	1894.3099388499998
+PWY-5723	Rubisco shunt|g__Rhodobacter.s__Rhodobacter_sphaeroides	9907.21695892	642.36165626
+PWY0-1296	purine ribonucleosides degradation	52619.42041897999	43365.19301645
+PWY-7094	fatty acid salvage|g__Pseudomonas.s__Pseudomonas_aeruginosa	1566.7167657	941.38389529
+PWY-5659	GDP mannose biosynthesis	35919.18992989	68119.22311214
+COA-PWY-1	coenzyme A biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	6914.6192118	1458.07590976
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	10086.25496562	1747.9644646000002
+GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation	19166.9749579	14826.67646752
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Rhodobacter.s__Rhodobacter_sphaeroides	12559.46775709	1282.55432956
+VALSYN-PWY	L valine biosynthesis|g__Escherichia.s__Escherichia_coli	6049.43426736	1792.31123454
+PWY-5367	petroselinate biosynthesis	3389.6331005800002	6050.22736076
+ARO-PWY	chorismate biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	10827.012089759999	1529.5646012700001
+GLYOXYLATE-BYPASS	glyoxylate cycle|g__Escherichia.s__Escherichia_coli	6466.263562340001	494.57454628999994
+P161-PWY	acetylene degradation	52145.52149439001	58181.08254115
+PWY-6595	superpathway of guanosine nucleotides degradation |g__Escherichia.s__Escherichia_coli	10700.85371421	1321.01086203
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Streptococcus.s__Streptococcus_mutans	3475.26061135	670.18771898
+PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|unclassified	156.62791401	165.52457683999998
+THRESYN-PWY	superpathway of L threonine biosynthesis	56784.56205263	60297.43587587
+PWY-7196	superpathway of pyrimidine ribonucleosides salvage|unclassified	68.05648819	368.80630621
+PWY66-398	TCA cycle III |g__Staphylococcus.s__Staphylococcus_aureus	11696.14594199	1206.67667542
+NONMEVIPP-PWY	methylerythritol phosphate pathway I	21604.21273806	41467.563069020005
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Staphylococcus.s__Staphylococcus_aureus	11851.158662759999	1573.05390224
+PWY-5857	ubiquinol 10 biosynthesis 	10283.68090421	8071.01088192
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Escherichia.s__Escherichia_coli	2273.15094985	140.31760827
+AST-PWY	L arginine degradation II 	4276.80459351	6785.9958638
+PWY-5856	ubiquinol 9 biosynthesis 	10040.04325792	5154.31737499
+FAO-PWY	fatty acid &beta; oxidation I|unclassified	111.09757071	737.84150576
+PWY-7111	pyruvate fermentation to isobutanol |unclassified	479.87537396000005	1089.54043845
+PWY-1042	glycolysis IV |g__Staphylococcus.s__Staphylococcus_aureus	17137.1461621	1140.57464733
+GLYOXYLATE-BYPASS	glyoxylate cycle|g__Pseudomonas.s__Pseudomonas_aeruginosa	363.80526335	179.62635335
+PWY-6936	seleno amino acid biosynthesis|g__Escherichia.s__Escherichia_coli	4102.78491181	748.31085471
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Helicobacter.s__Helicobacter_pylori	101.01010101000001	2335.70422508
+PWY-5913	TCA cycle VI |unclassified	13.48184697	346.76001726
+PWY-7288	fatty acid &beta; oxidation |g__Clostridium.s__Clostridium_beijerinckii	435.69049109	401.01868290000004
+ARGDEG-PWY	superpathway of L arginine, putrescine, and 4 aminobutanoate degradation|g__Escherichia.s__Escherichia_coli	4707.38168219	903.21469748
+GLYCOGENSYNTH-PWY	glycogen biosynthesis I 	29622.00132997	40236.46322664
+PWY66-422	D galactose degradation V |g__Clostridium.s__Clostridium_beijerinckii	662.37552525	927.8881445
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Rhodobacter.s__Rhodobacter_sphaeroides	19758.48184755	2367.31570583
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	231.76664284	2194.9243779
+PWY0-1338	polymyxin resistance|g__Escherichia.s__Escherichia_coli	2530.97937342	524.99529053
+ARO-PWY	chorismate biosynthesis I|unclassified	217.52424855	366.86538039
+PWY-4981	L proline biosynthesis II |g__Escherichia.s__Escherichia_coli	2425.01792926	540.89369424
+HSERMETANA-PWY	L methionine biosynthesis III|g__Staphylococcus.s__Staphylococcus_epidermidis	9246.68833006	1725.3853309499998
+PANTO-PWY	phosphopantothenate biosynthesis I	36409.30553374	24945.789685170002
+PWYG-321	mycolate biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	4071.02733519	2909.2501895600003
+PWY66-422	D galactose degradation V |g__Escherichia.s__Escherichia_coli	6282.20939256	1051.9307082
+PWY5F9-12	biphenyl degradation	1666.7819218999998	984.30988678
+NONOXIPENT-PWY	pentose phosphate pathway |unclassified	797.60559667	307.94971919
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	595.30096539	1204.72237146
+PWY-7039	phosphatidate metabolism, as a signaling molecule	2976.57005473	2978.5965727899998
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I	49428.50225791	50388.6154894
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis	45823.88421396	46601.429968849996
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II	58964.224064660004	58328.358788269994
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Escherichia.s__Escherichia_coli	4889.36490592	258.22264807
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	9967.50930288	1609.2379926100002
+PWY-5686	UMP biosynthesis	53309.57017277	41731.52360694
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Staphylococcus.s__Staphylococcus_epidermidis	11106.53362196	2878.03755013
+HEMESYN2-PWY	heme biosynthesis II |g__Neisseria.s__Neisseria_meningitidis	160.47842097	2460.45875987
+URDEGR-PWY	superpathway of allantoin degradation in plants|g__Escherichia.s__Escherichia_coli	3441.39494745	497.16208443000005
+PWY-5136	fatty acid &beta; oxidation II |unclassified	92.26054336	491.76140107000003
+POLYAMINSYN3-PWY	superpathway of polyamine biosynthesis II	4670.87590424	7317.560837569999
+TCA	TCA cycle I 	72390.90801451	49359.136664440004
+PWY-6803	phosphatidylcholine acyl editing|g__Helicobacter.s__Helicobacter_pylori	135.50135501	1853.8125109500002
+PWY-6859	all trans farnesol biosynthesis	53358.24754495	31883.69652691
+PWY-5791	1,4 dihydroxy 2 naphthoate biosynthesis II |g__Escherichia.s__Escherichia_coli	4043.6471103599997	280.87263768
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I	49841.31025822	52493.09022333
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	540.65287976	168.32955315
+PWY-922	mevalonate pathway I|g__Staphylococcus.s__Staphylococcus_aureus	12883.975532330001	1437.4255803600001
+PWY-6901	superpathway of glucose and xylose degradation|g__Escherichia.s__Escherichia_coli	5955.2338546500005	1285.42901688
+PWY-6612	superpathway of tetrahydrofolate biosynthesis	33805.96288219	32920.46174261
+PWY-6837	fatty acid beta oxidation V |g__Acinetobacter.s__Acinetobacter_baumannii	315.00956156	5488.2802970699995
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	6926.15229149	718.76121533
+PWY-5861	superpathway of demethylmenaquinol 8 biosynthesis	18317.58503369	12120.82609625
+GALACT-GLUCUROCAT-PWY	superpathway of hexuronide and hexuronate degradation	6477.31772478	7866.24232971
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	388.54431864	53.08880985
+PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III|unclassified	33.85125235	159.75515805
+PWY-5897	superpathway of menaquinol 11 biosynthesis	21209.493849309998	15529.897921419999
+PWY0-1061	superpathway of L alanine biosynthesis|g__Escherichia.s__Escherichia_coli	6332.50789806	1793.35177705
+PWY0-42	2 methylcitrate cycle I|unclassified	19.68257624	45.06146103
+FAO-PWY	fatty acid &beta; oxidation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1506.9573407	981.4114041
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|unclassified	155.98552828	393.63985905
+LEU-DEG2-PWY	L leucine degradation I	11366.60941765	13627.496549739999
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Clostridium.s__Clostridium_beijerinckii	245.96822968	320.28638366
+PWY-3801	sucrose degradation II 	41144.22248354	35074.930522459996
+FERMENTATION-PWY	mixed acid fermentation|g__Streptococcus.s__Streptococcus_mutans	4128.34958682	930.91287833
+PWY-6897	thiamin salvage II|g__Escherichia.s__Escherichia_coli	2220.45202158	529.99465096
+PWY-5840	superpathway of menaquinol 7 biosynthesis|g__Escherichia.s__Escherichia_coli	3654.45688023	530.8185197600001
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Clostridium.s__Clostridium_beijerinckii	147.72093479999998	372.96118264
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	7140.095456500001	1052.2868945
+PWY-5384	sucrose degradation IV 	12240.49688951	9746.732483700001
+PWY-7204	pyridoxal 5 phosphate salvage II 	10800.84198461	12011.216890810001
+PWY-5097	L lysine biosynthesis VI|g__Staphylococcus.s__Staphylococcus_epidermidis	9108.36838681	2170.22751737
+PWY-6608	guanosine nucleotides degradation III|g__Pseudomonas.s__Pseudomonas_aeruginosa	1032.59943317	372.84160159000004
+PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	644.1391583899999	186.85148478
+PWY0-321	phenylacetate degradation I |g__Escherichia.s__Escherichia_coli	3492.40717908	237.98214483
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	18480.66347027	2785.87274924
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|unclassified	919.02833222	3578.15030375
+PWY-6590	superpathway of Clostridium acetobutylicum acidogenic fermentation	4291.6841165999995	15958.407718460001
+PWY-6174	mevalonate pathway II 	6279.989278290001	920.76672097
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Escherichia.s__Escherichia_coli	3107.00842558	665.8723520799999
+PWY-5083	NAD NADH phosphorylation and dephosphorylation|unclassified	432.13034559	224.74599711000002
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Staphylococcus.s__Staphylococcus_epidermidis	8039.14043601	429.67898947
+PWY-6608	guanosine nucleotides degradation III|g__Deinococcus.s__Deinococcus_radiodurans	134.26874627	32028.571975130002
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation	42809.11238045	41128.19475618
+P185-PWY	formaldehyde assimilation III |g__Staphylococcus.s__Staphylococcus_epidermidis	9569.89354877	1647.26046611
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	11567.67523913	1680.5045518099998
+PWY-6608	guanosine nucleotides degradation III|g__Escherichia.s__Escherichia_coli	11056.31090993	1891.32577037
+PWY-5265	peptidoglycan biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	12455.78102944	2554.29432165
+PWY-5989	stearate biosynthesis II |unclassified	150.0104206	440.74820303999996
+PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III|g__Escherichia.s__Escherichia_coli	4187.79727243	320.01811774000004
+PWYG-321	mycolate biosynthesis	59600.117183530005	60419.13894577
+GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation	8139.509630720001	12101.89150836
+PWY-5022	4 aminobutanoate degradation V|unclassified	119.64944971	34.68918587
+PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Acinetobacter.s__Acinetobacter_baumannii	989.32557212	17228.67829313
+PWY-7254	TCA cycle VII |g__Acinetobacter.s__Acinetobacter_baumannii	180.67018261	5498.98808262
+NONOXIPENT-PWY	pentose phosphate pathway 	51642.6198152	56395.21763524
+PWY-7385	1,3 propanediol biosynthesis 	327.27699122999996	8391.61837975
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	931.05894703	1332.07582533
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Staphylococcus.s__Staphylococcus_aureus	7986.094305410001	944.0105788200001
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |unclassified	543.86176778	1108.10692719
+3-HYDROXYPHENYLACETATE-DEGRADATION-PWY	4 hydroxyphenylacetate degradation|unclassified	32.264613759999996	115.72377458000001
+PWY-5097	L lysine biosynthesis VI|g__Staphylococcus.s__Staphylococcus_aureus	9077.640439699999	733.33517056
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Escherichia.s__Escherichia_coli	4860.63424752	978.58381533
+PWY-6318	L phenylalanine degradation IV |g__Pseudomonas.s__Pseudomonas_aeruginosa	2310.08104239	371.79984718000003
+PWY-6692	Fe oxidation|g__Neisseria.s__Neisseria_meningitidis	142.20887338999998	3681.89167062
+NONOXIPENT-PWY	pentose phosphate pathway |g__Escherichia.s__Escherichia_coli	9464.69522759	1886.3752899600001
+PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	5243.79815282	837.42998224
+PWY-6676	superpathway of sulfide oxidation 	9246.089977900001	5932.94950564
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli	3646.1770900300003	545.26508768
+PWY-5265	peptidoglycan biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	12343.992801890001	1667.1795460399999
+PWY-7234	inosine 5 phosphate biosynthesis III|unclassified	72.7443044	71.80843944
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I	26809.138126570004	41473.71561201
+PWY-6527	stachyose degradation	23209.0991929	24770.1860095
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II	68711.24572067999	84604.38746671
+PWY-6629	superpathway of L tryptophan biosynthesis|g__Escherichia.s__Escherichia_coli	3298.19736256	672.1172627899999
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1271.09425076	722.7776359
+PWY-7209	superpathway of pyrimidine ribonucleosides degradation|g__Escherichia.s__Escherichia_coli	2538.01659673	505.99080864
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Clostridium.s__Clostridium_beijerinckii	202.80113832	727.54151724
+LACTOSECAT-PWY	lactose and galactose degradation I|unclassified	87.79734936	24.18333828
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Streptococcus.s__Streptococcus_mutans	5214.2839797199995	621.50640133
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	580.59515426	1341.40749346
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	5774.384578	1335.3774506500001
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12974.577560349999	1564.26481926
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	4053.6619592	1018.2596345300001
+THRESYN-PWY	superpathway of L threonine biosynthesis|unclassified	144.32611287	182.73124697
+PWY0-862	 dodec 5 enoate biosynthesis|unclassified	590.03053267	656.24638297
+ORNDEG-PWY	superpathway of ornithine degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	1685.9611973700003	653.28306925
+PWY-7664	oleate biosynthesis IV |g__Streptococcus.s__Streptococcus_mutans	4918.49911082	635.12531951
+HISTSYN-PWY	L histidine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	7635.729899589999	2488.50153169
+PWY-6385	peptidoglycan biosynthesis III |g__Staphylococcus.s__Staphylococcus_aureus	9865.01782236	1342.97798589
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	15286.00873684	1447.9278958
+PWY-6124	inosine 5 phosphate biosynthesis II	38534.18213601	38446.77564906
+PWY-5690	TCA cycle II |g__Staphylococcus.s__Staphylococcus_aureus	12256.798323460001	1708.34430796
+P161-PWY	acetylene degradation|g__Acinetobacter.s__Acinetobacter_baumannii	251.74039493000004	7228.38372017
+PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |unclassified	133.26391812	307.04874979
+PWY-6435	4 hydroxybenzoate biosynthesis V	25952.21688864	19722.590659010002
+PWY-621	sucrose degradation III |g__Staphylococcus.s__Staphylococcus_epidermidis	7288.517060210001	1125.93306953
+TEICHOICACID-PWY	teichoic acid  biosynthesis	26300.93557088	13882.35812638
+PWY-4202	arsenate detoxification I |g__Rhodobacter.s__Rhodobacter_sphaeroides	2030.61826096	402.98811140000004
+PWY-5973	cis vaccenate biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	17432.171680299998	3046.28020809
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Streptococcus.s__Streptococcus_mutans	6043.84621621	1316.96637722
+PWY-7111	pyruvate fermentation to isobutanol |g__Clostridium.s__Clostridium_beijerinckii	1612.0110125899998	3295.93225794
+AST-PWY	L arginine degradation II |g__Pseudomonas.s__Pseudomonas_aeruginosa	403.34029063	156.98626488
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation	88626.37714256	93639.0955773
+GLUTORN-PWY	L ornithine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	937.5162923299999	169.23892553
+RIBOSYN2-PWY	flavin biosynthesis I 	25078.140602299998	36113.53707816
+URDEGR-PWY	superpathway of allantoin degradation in plants	4057.67840734	2293.15616713
+PWY-7663	gondoate biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis	11044.44008438	3017.102027
+PWY-5989	stearate biosynthesis II |g__Escherichia.s__Escherichia_coli	5293.14635276	1392.67993602
+PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Escherichia.s__Escherichia_coli	5157.1347617599995	538.06311295
+P42-PWY	incomplete reductive TCA cycle|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3522.2251638499997	529.36311149
+PWY-5747	2 methylcitrate cycle II|g__Pseudomonas.s__Pseudomonas_aeruginosa	385.74914911999997	118.40719672
+PWY-6703	preQ0 biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	10672.35535677	649.6657577999999
+PWY-7446	sulfoglycolysis	3430.92544179	657.6507862999999
+PWY-4702	phytate degradation I|g__Escherichia.s__Escherichia_coli	6000.155571220001	966.6511587900001
+PWY-7245	superpathway NAD NADP   NADH NADPH interconversion 	3639.98249054	1618.65724922
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Escherichia.s__Escherichia_coli	5785.98940136	694.28923369
+PWY-7286	7  wyosine biosynthesis	2933.85524094	239.98964359000001
+PWY-7288	fatty acid &beta; oxidation |g__Deinococcus.s__Deinococcus_radiodurans	139.0693785	21248.06068857
+P441-PWY	superpathway of N acetylneuraminate degradation	33623.45810861	28695.351121850003
+PWY-621	sucrose degradation III |g__Streptococcus.s__Streptococcus_mutans	5462.06770741	976.15228826
+PWY-1042	glycolysis IV |g__Streptococcus.s__Streptococcus_mutans	7435.220255350001	1518.49306521
+PWY-5531	chlorophyllide a biosynthesis II 	22119.12166258	4923.54292722
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |unclassified	10.98819318	168.18827786999998
+PWY-1861	formaldehyde assimilation II |g__Staphylococcus.s__Staphylococcus_aureus	13284.766126810002	619.47135567
+PWY-5022	4 aminobutanoate degradation V	31648.31275399	24127.9390526
+ORNARGDEG-PWY	superpathway of L arginine and L ornithine degradation|g__Escherichia.s__Escherichia_coli	4707.38168219	903.21469748
+GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Streptococcus.s__Streptococcus_mutans	6864.5283927400005	995.4420537000001
+HISDEG-PWY	L histidine degradation I|g__Acinetobacter.s__Acinetobacter_baumannii	172.00323274	5795.08134238
+PWY0-1061	superpathway of L alanine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	469.04005117	1041.7434806699998
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Escherichia.s__Escherichia_coli	11056.31090993	1891.32577037
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	9125.107523319999	1666.35492196
+COA-PWY	coenzyme A biosynthesis I|g__Escherichia.s__Escherichia_coli	2995.32276129	325.64305652
+PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|unclassified	386.79002406	740.96360671
+GLYCOLYSIS-TCA-GLYOX-BYPASS	superpathway of glycolysis, pyruvate dehydrogenase, TCA, and glyoxylate bypass|g__Escherichia.s__Escherichia_coli	4932.591676399999	602.02994287
+COBALSYN-PWY	adenosylcobalamin salvage from cobinamide I|g__Escherichia.s__Escherichia_coli	3769.86307922	220.95705094999997
+OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Escherichia.s__Escherichia_coli	3732.94648751	777.80558692
+PWY-3781	aerobic respiration I |g__Staphylococcus.s__Staphylococcus_aureus	31496.03040367	2108.46546528
+UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |g__Escherichia.s__Escherichia_coli	3920.08571032	614.25335798
+PWY-6628	superpathway of L phenylalanine biosynthesis	35707.400492149995	42240.39813244
+FAO-PWY	fatty acid &beta; oxidation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	8913.94067454	2016.9263011599999
+PWY-6385	peptidoglycan biosynthesis III |unclassified	10.986470180000001	166.73509014
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	2394.70878208	322.26753719
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	11088.847442440001	1131.83575947
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	264.13154309000004	1150.6240638
+ARG+POLYAMINE-SYN	superpathway of arginine and polyamine biosynthesis|g__Escherichia.s__Escherichia_coli	3860.5074650399997	701.87663984
+PWY-5857	ubiquinol 10 biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	4984.47122955	1383.69438173
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|unclassified	594.88623634	181.86257779
+PWY-3841	folate transformations II|g__Clostridium.s__Clostridium_beijerinckii	355.75988809	850.9855248599999
+PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	5837.85592311	1026.09119845
+ARGORNPROST-PWY	arginine, ornithine and proline interconversion|g__Staphylococcus.s__Staphylococcus_aureus	18116.43999326	2128.7795490099998
+PWY-6936	seleno amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	16609.35121782	4264.11923639
+PWY-6138	CMP N acetylneuraminate biosynthesis I 	2398.55607826	1035.42398771
+METHANOGENESIS-PWY	methanogenesis from H2 and CO2	4423.90798117	800.86628878
+PWY-6936	seleno amino acid biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	15463.48099307	2543.34947823
+ILEUSYN-PWY	L isoleucine biosynthesis I 	70003.71141756	71583.25646679
+FASYN-ELONG-PWY	fatty acid elongation    saturated|unclassified	600.38857461	748.75731035
+PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|unclassified	186.28108041	134.35886098
+PWY-4984	urea cycle|unclassified	88.09723032	512.9493568
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	297.76569358	531.75163588
+GLUCARGALACTSUPER-PWY	superpathway of D glucarate and D galactarate degradation	14021.954162770002	9190.33499114
+PWY-5898	superpathway of menaquinol 12 biosynthesis	21209.493849309998	15529.897921419999
+P241-PWY	coenzyme B biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3163.50129316	562.8097689399999
+PWY1F-823	leucopelargonidin and leucocyanidin biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4060.0961491900002	2029.88595219
+PWY-5136	fatty acid &beta; oxidation II 	51964.5875306	111356.30510005001
+PWY-5484	glycolysis II 	45286.89145325	53220.60059128
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	9989.16912696	2190.2029487299997
+PWY-7254	TCA cycle VII 	59522.23899427999	33181.04541714
+PWY-6596	adenosine nucleotides degradation I|unclassified	14.47053194	11.67343708
+PWY-3781	aerobic respiration I |unclassified	3699.6275521400003	1118.9863796
+DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Escherichia.s__Escherichia_coli	4301.39747712	623.0291552799999
+P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate|g__Clostridium.s__Clostridium_beijerinckii	358.51891872	1847.49266447
+PWY-7663	gondoate biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	26214.66955623	3409.6979369400005
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	9575.20256803	1047.86926968
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	19563.47781209	3219.37136686
+PWY-6609	adenine and adenosine salvage III|g__Streptococcus.s__Streptococcus_agalactiae	288.23759249	615.89390301
+VALSYN-PWY	L valine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	506.19386084	11724.83928567
+FAO-PWY	fatty acid &beta; oxidation I|g__Escherichia.s__Escherichia_coli	5978.14746748	1435.58600015
+PWY-5097	L lysine biosynthesis VI|g__Propionibacterium.s__Propionibacterium_acnes	152.46605581999998	3062.56851196
+PWY-7316	dTDP N acetylviosamine biosynthesis|g__Escherichia.s__Escherichia_coli	4005.7521044799996	412.13699563999995
+PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Escherichia.s__Escherichia_coli	2791.8125346899997	609.53890601
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	10115.995721539999	1019.69423363
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	8081.99915985	1153.07830842
+PWY-7007	methyl ketone biosynthesis|unclassified	33.87442557	45.85194053
+PWY-7391	isoprene biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	11265.42324749	2296.45652178
+PWY-6992	1,5 anhydrofructose degradation|g__Escherichia.s__Escherichia_coli	2692.6423205300002	591.66386814
+PWY-2942	L lysine biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	4710.2025552000005	708.88601201
+PWY-5855	ubiquinol 7 biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	4984.47122955	1383.69438173
+PWY0-1261	anhydromuropeptides recycling|unclassified	161.95791885	121.61943009000001
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	3794.71602326	423.50081250000005
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	13536.0205713	2094.79557458
+P42-PWY	incomplete reductive TCA cycle|g__Staphylococcus.s__Staphylococcus_epidermidis	15389.61143626	2036.75750701
+PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|g__Escherichia.s__Escherichia_coli	2503.00769691	571.12166884
+PWY-5101	L isoleucine biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3980.7326746	640.55565546
+PWY4LZ-257	superpathway of fermentation |g__Clostridium.s__Clostridium_beijerinckii	666.72437168	2285.4099966
+PWY-5913	TCA cycle VI |g__Acinetobacter.s__Acinetobacter_baumannii	72.30196086000001	7414.50077566
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Escherichia.s__Escherichia_coli	5802.95924317	2081.48877768
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	8822.65630251	1535.07017041
+PWY-3841	folate transformations II	36857.47927847	36470.534795629996
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	9989.16912696	2190.2029487299997
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	7419.94332552	1170.11624735
+PWY-7117	C4 photosynthetic carbon assimilation cycle, PEPCK type|g__Escherichia.s__Escherichia_coli	5944.30605455	703.3654008
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	422.57830215	385.27548967
+ANAEROFRUCAT-PWY	homolactic fermentation|g__Clostridium.s__Clostridium_beijerinckii	604.4775255100001	1298.26997095
+PWY-5347	superpathway of L methionine biosynthesis |g__Clostridium.s__Clostridium_beijerinckii	364.664573	797.22410971
+PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I 	22656.83282643	22859.08819971
+GLYCOLYSIS	glycolysis I |g__Escherichia.s__Escherichia_coli	4323.58176194	987.03610628
+ARGSYN-PWY	L arginine biosynthesis I |unclassified	186.87571885	595.2961923
+PWY-6123	inosine 5 phosphate biosynthesis I|unclassified	78.62626519	105.76115508
+PWY-3841	folate transformations II|unclassified	771.9890211000001	109.6163283
+PWY-5189	tetrapyrrole biosynthesis II |unclassified	200.73461345	139.37065366000002
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Streptococcus.s__Streptococcus_mutans	4763.78851226	297.44823163
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12322.59917478	807.8058524999999
+P161-PWY	acetylene degradation|g__Clostridium.s__Clostridium_beijerinckii	486.18046797999995	2467.0827470599997
+UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis 	10581.003573220001	7017.34013856
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Staphylococcus.s__Staphylococcus_epidermidis	3502.89369562	2372.3193765
+PWY-5675	nitrate reduction V |g__Escherichia.s__Escherichia_coli	4421.6763737500005	1017.90666311
+PPGPPMET-PWY	ppGpp biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	14018.60571576	1568.5757902300002
+PWY-621	sucrose degradation III |g__Clostridium.s__Clostridium_beijerinckii	907.75105656	1145.45333796
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3557.98627328	590.63898414
+PWY0-862	 dodec 5 enoate biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	2581.3131908	2157.82428717
+SO4ASSIM-PWY	sulfate reduction I |g__Rhodobacter.s__Rhodobacter_sphaeroides	12050.04244503	2268.22725512
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Staphylococcus.s__Staphylococcus_aureus	10682.71262817	1536.4745060100001
+PWY-6165	chorismate biosynthesis II 	5276.34145505	429.90575319
+TRNA-CHARGING-PWY	tRNA charging|g__Clostridium.s__Clostridium_beijerinckii	264.42831854	715.72774223
+PWY-7664	oleate biosynthesis IV |unclassified	590.64109487	689.53854189
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I	46982.01592876	51973.36462601001
+KETOGLUCONMET-PWY	ketogluconate metabolism|unclassified	119.08506847	59.392920260000004
+PWY-5659	GDP mannose biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	9842.94920763	2130.90313557
+PWY0-845	superpathway of pyridoxal 5 phosphate biosynthesis and salvage	8360.73151325	19483.45573005
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Helicobacter.s__Helicobacter_pylori	355.33888788	4541.47592864
+PWY-7279	aerobic respiration II  (yeast)|g__Propionibacterium.s__Propionibacterium_acnes	194.95090733	11936.58620375
+PWY-5022	4 aminobutanoate degradation V|g__Acinetobacter.s__Acinetobacter_baumannii	219.04920185	5352.13275606
+METSYN-PWY	L homoserine and L methionine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2579.07981921	300.27995677999996
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|unclassified	144.13360976	212.03272375000003
+PWY-922	mevalonate pathway I	33170.216591180004	9358.88049333
+PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Escherichia.s__Escherichia_coli	827.40387293	868.77543406
+HEMESYN2-PWY	heme biosynthesis II |g__Escherichia.s__Escherichia_coli	4079.20963509	1275.500673
+PWY-5484	glycolysis II |g__Escherichia.s__Escherichia_coli	4411.05251246	1048.12311953
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	10037.89349039	2349.1757162199997
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|unclassified	271.11988337	527.14487279
+PWY-6606	guanosine nucleotides degradation II|unclassified	144.81098785	560.75282166
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Staphylococcus.s__Staphylococcus_aureus	7580.862122390001	1568.34008406
+PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis	53677.168092730004	52341.72706055
+PWY-7219	adenosine ribonucleotides de novo biosynthesis	53294.19507499	57699.26330163
+GLYCOL-GLYOXDEG-PWY	superpathway of glycol metabolism and degradation|g__Escherichia.s__Escherichia_coli	9116.02131027	1325.87630929
+PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Propionibacterium.s__Propionibacterium_acnes	215.85301365	4815.80243188
+PWY-6859	all trans farnesol biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	1633.00145995	847.2112473999999
+COA-PWY	coenzyme A biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	603.40041396	4206.53019873
+PWY-5686	UMP biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	13022.51754421	1067.20711113
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	501.99761309999997	144.15016675
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	1759.45401497	633.23408091
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	557.88620896	331.08039992
+PWY-5676	acetyl CoA fermentation to butanoate II|g__Rhodobacter.s__Rhodobacter_sphaeroides	5874.6035399	792.91330008
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Escherichia.s__Escherichia_coli	3168.29114837	1226.26490102
+PWY-5675	nitrate reduction V |unclassified	48.56332943	41.23955535
+PWY-6895	superpathway of thiamin diphosphate biosynthesis II	7381.49230857	12869.34574151
+PWY-5531	chlorophyllide a biosynthesis II |unclassified	38.791368850000005	9.499262869999999
+HEMESYN2-PWY	heme biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	3368.9177882000004	896.96458734
+PWY-4221	pantothenate and coenzyme A biosynthesis II 	6446.8058988699995	3651.48403549
+PWY-7254	TCA cycle VII |g__Pseudomonas.s__Pseudomonas_aeruginosa	1655.22140749	354.88395649
+PWY-3001	superpathway of L isoleucine biosynthesis I	61287.45042913	61191.02724983
+PWY-7663	gondoate biosynthesis |g__Escherichia.s__Escherichia_coli	7720.616246369999	2314.43992791
+GLUDEG-I-PWY	GABA shunt|g__Escherichia.s__Escherichia_coli	6434.04270271	779.09309638
+PWY490-3	nitrate reduction VI |g__Deinococcus.s__Deinococcus_radiodurans	162.54875973	24879.56528359
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	12012.738236379999	1613.7185864100002
+PWY-7111	pyruvate fermentation to isobutanol |g__Neisseria.s__Neisseria_meningitidis	93.78311912000001	4627.94217314
+GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|g__Escherichia.s__Escherichia_coli	3506.50908052	558.89720502
+PWY-6737	starch degradation V|g__Escherichia.s__Escherichia_coli	4610.53764213	1144.31590441
+CHLOROPHYLL-SYN	chlorophyllide a biosynthesis I 	24259.760690350002	8662.41914269
+KDO-NAGLIPASYN-PWY	superpathway of 2 lipid A biosynthesis|g__Escherichia.s__Escherichia_coli	1538.62776566	363.40902033
+PWY-6892	thiazole biosynthesis I |unclassified	61.77647311	98.04370395999999
+NAGLIPASYN-PWY	lipid IVA biosynthesis|g__Escherichia.s__Escherichia_coli	3511.50997388	680.04376881
+P125-PWY	superpathway of  butanediol biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	31383.80271814	5261.60349787
+PWY-5173	superpathway of acetyl CoA biosynthesis	96059.84271439	63390.44515972
+HEMESYN2-PWY	heme biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii	136.01994609000002	4113.14309114
+PWY-4984	urea cycle	25405.55768166	41765.025046660005
+PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type	26102.4397056	23109.17573211
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	97.24764852999999	2915.24388118
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV	68214.17159883	67015.73853961
+P161-PWY	acetylene degradation|g__Escherichia.s__Escherichia_coli	6963.83006313	1528.28473876
+PWY-621	sucrose degradation III 	30158.13795436	15461.45360191
+PWY-6467	Kdo transfer to lipid IVA III 	1326.69762557	332.28938386000004
+RHAMCAT-PWY	L rhamnose degradation I|g__Escherichia.s__Escherichia_coli	2349.3539181700003	183.24292953
+PROTOCATECHUATE-ORTHO-CLEAVAGE-PWY	protocatechuate degradation II 	6292.09468602	12807.49388545
+PWY-6606	guanosine nucleotides degradation II|g__Clostridium.s__Clostridium_beijerinckii	274.36379257	1082.8715938
+PWY-5345	superpathway of L methionine biosynthesis |unclassified	180.73076668000002	106.46534516999999
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	8808.69286571	979.81451315
+HSERMETANA-PWY	L methionine biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus	10704.62792737	1428.79117109
+PWY-7254	TCA cycle VII |g__Escherichia.s__Escherichia_coli	4351.08148841	466.70746796
+PWY-5464	superpathway of cytosolic glycolysis , pyruvate dehydrogenase and TCA cycle|unclassified	217.72746357	351.61719672
+PWY-5918	superpathay of heme biosynthesis from glutamate	36642.23654748	27023.756065740003
+ANAGLYCOLYSIS-PWY	glycolysis III |unclassified	216.83168687999998	360.70730415
+NAD-BIOSYNTHESIS-II	NAD salvage pathway II|g__Acinetobacter.s__Acinetobacter_baumannii	311.86743823	5092.62189788
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	8020.452653050001	1296.92460278
+PWY-561	superpathway of glyoxylate cycle and fatty acid degradation|unclassified	152.72751111	296.90866391
+HISDEG-PWY	L histidine degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	698.36146493	216.48231095
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	9655.59084443	1582.81841201
+PWY-3841	folate transformations II|g__Staphylococcus.s__Staphylococcus_epidermidis	8571.45507124	1918.73077737
+PWY-6317	galactose degradation I |g__Streptococcus.s__Streptococcus_mutans	6616.25978892	1549.17439306
+HISTSYN-PWY	L histidine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	3561.43378245	606.41844732
+PWY-6565	superpathway of polyamine biosynthesis III	307.24774533	5432.67232731
+GLYCOL-GLYOXDEG-PWY	superpathway of glycol metabolism and degradation	12508.1576731	6820.561756620001
+PWY0-1586	peptidoglycan maturation |g__Escherichia.s__Escherichia_coli	18753.021982050002	2866.53948432
+CALVIN-PWY	Calvin Benson Bassham cycle|unclassified	607.00555103	573.16236587
+TCA	TCA cycle I |g__Rhodobacter.s__Rhodobacter_sphaeroides	18424.7962902	2316.21242111
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	16317.966221219998	1244.26429343
+PWY-6859	all trans farnesol biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	19169.5442646	4218.01696961
+PWY-5994	palmitate biosynthesis I |unclassified	56.35244747	182.8620241
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II	68711.24572067999	84604.38746671
+ILEUSYN-PWY	L isoleucine biosynthesis I |unclassified	776.19346604	604.1343849399999
+PWY-5675	nitrate reduction V 	32265.66664317	53150.591836989995
+GALACTARDEG-PWY	D galactarate degradation I|g__Escherichia.s__Escherichia_coli	6349.73567749	692.7369213000001
+PWY-5154	L arginine biosynthesis III |g__Escherichia.s__Escherichia_coli	2573.2186325499997	460.30921090000004
+VALSYN-PWY	L valine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	1313.44813159	2264.66366588
+HISTSYN-PWY	L histidine biosynthesis|g__Escherichia.s__Escherichia_coli	2451.9253406000003	628.80349146
+TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA|g__Pseudomonas.s__Pseudomonas_aeruginosa	679.01307876	257.29141585
+PWY-6313	serotonin degradation|g__Escherichia.s__Escherichia_coli	4002.8441491000003	1235.3831771599998
+PWY-5484	glycolysis II |g__Staphylococcus.s__Staphylococcus_epidermidis	10636.62540135	2154.73759041
+SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Clostridium.s__Clostridium_beijerinckii	463.99403102	804.04902817
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Staphylococcus.s__Staphylococcus_epidermidis	11041.88984643	2386.75379651
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	165.52210569000002	5261.09986526
+PWY-6901	superpathway of glucose and xylose degradation	35568.61845053	31009.027863929998
+PWY-6471	peptidoglycan biosynthesis IV |g__Staphylococcus.s__Staphylococcus_aureus	10236.81699447	1238.00756398
+PWY-6470	peptidoglycan biosynthesis V 	24103.40700803	8225.35604645
+PWY0-1586	peptidoglycan maturation |g__Streptococcus.s__Streptococcus_mutans	14372.50894419	2681.17833914
+PWY-5659	GDP mannose biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	496.56099939	1127.45350014
+PWY66-422	D galactose degradation V 	43815.71242929	28455.6399232
+DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	7563.84507722	1029.85526837
+HSERMETANA-PWY	L methionine biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	4321.48918735	1205.449507
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Escherichia.s__Escherichia_coli	3409.73482773	485.42427431000004
+PWY-5918	superpathay of heme biosynthesis from glutamate|g__Staphylococcus.s__Staphylococcus_epidermidis	9467.76138818	1263.66225468
+P562-PWY	myo inositol degradation I|g__Clostridium.s__Clostridium_beijerinckii	512.5348599399999	1015.6380091200001
+PWY-7111	pyruvate fermentation to isobutanol |g__Staphylococcus.s__Staphylococcus_epidermidis	25408.02490614	6242.620812509999
+PWY-6168	flavin biosynthesis III |g__Staphylococcus.s__Staphylococcus_epidermidis	11249.61864989	1916.08886613
+PWY-6606	guanosine nucleotides degradation II|g__Escherichia.s__Escherichia_coli	11605.350685329999	1458.85745696
+PWY-3781	aerobic respiration I |g__Deinococcus.s__Deinococcus_radiodurans	243.95473535000002	51964.068130520005
+COA-PWY	coenzyme A biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	258.07832009	1987.1526205100001
+PWY0-1533	methylphosphonate degradation I	4749.8194641	355.13449231
+PWY4FS-8	phosphatidylglycerol biosynthesis II 	30310.64313792	29458.779609549998
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Streptococcus.s__Streptococcus_mutans	4614.24596417	752.96338328
+PWY-5676	acetyl CoA fermentation to butanoate II|unclassified	293.27344931	313.4611172
+METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Staphylococcus.s__Staphylococcus_aureus	12280.46524296	2371.78106758
+PWY-5104	L isoleucine biosynthesis IV|g__Escherichia.s__Escherichia_coli	4593.84617747	909.20769802
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II	45823.88421396	46601.429968849996
+PWY-6609	adenine and adenosine salvage III|g__Helicobacter.s__Helicobacter_pylori	302.98828546	2894.7255722
+ARGDEG-PWY	superpathway of L arginine, putrescine, and 4 aminobutanoate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	2719.96996417	381.3209558
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	485.84384817000006	15556.02517752
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis	37144.23275585	36124.46900513
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans	233.01772842	21431.49705108
+PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation	7971.57166939	15419.17427587
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	572.9768874	244.3911918
+LACTOSECAT-PWY	lactose and galactose degradation I|g__Clostridium.s__Clostridium_beijerinckii	2006.3585861499998	2099.76992642
+PWY-5136	fatty acid &beta; oxidation II |g__Escherichia.s__Escherichia_coli	5364.48519227	1332.00244325
+PWY-5913	TCA cycle VI |g__Escherichia.s__Escherichia_coli	6019.41300772	621.50981774
+P562-PWY	myo inositol degradation I	1048.3023640800002	2940.18289458
+PWY-6471	peptidoglycan biosynthesis IV |g__Staphylococcus.s__Staphylococcus_epidermidis	10029.22724453	2166.27725473
+PWY-6396	superpathway of 2,3 butanediol biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6153.25301744	1818.65857403
+PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Escherichia.s__Escherichia_coli	4058.2622708400004	890.49347278
+PWY66-201	nicotine degradation IV	4241.76462868	2892.776345
+PWY-6609	adenine and adenosine salvage III|g__Staphylococcus.s__Staphylococcus_epidermidis	9025.05759909	2818.09050282
+PWY0-42	2 methylcitrate cycle I|g__Escherichia.s__Escherichia_coli	2666.71182772	448.42715417
+PWY-6876	isopropanol biosynthesis	4128.52826297	1526.0602287499999
+PWY-6936	seleno amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mutans	8208.85491889	1754.5469455799998
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	379.76265155000004	516.04412629
+P621-PWY	nylon 6 oligomer degradation	1380.3573356099998	859.3267198699999
+RIBOSYN2-PWY	flavin biosynthesis I |unclassified	36.51457216	376.97930747
+PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	161.66281754	528.19577578
+PWY-6690	cinnamate and 3 hydroxycinnamate degradation to 2 oxopent 4 enoate	1692.49536281	301.73944072
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	590.42710083	109.70927043
+NONOXIPENT-PWY	pentose phosphate pathway |g__Staphylococcus.s__Staphylococcus_epidermidis	10294.34353744	1967.4433144199998
+PWY-5659	GDP mannose biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12408.45616547	1212.39453448
+PWY-6486	D galacturonate degradation II	30.33074635	88.9646262
+PWY-6168	flavin biosynthesis III 	32050.789848940003	39590.026178570006
+PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion 	6382.1103088400005	39587.16658144
+CRNFORCAT-PWY	creatinine degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	6299.16973762	1505.35613899
+PWY-6385	peptidoglycan biosynthesis III |g__Staphylococcus.s__Staphylococcus_epidermidis	9674.23314871	1907.17037023
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Escherichia.s__Escherichia_coli	4351.61218807	670.5564602
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Escherichia.s__Escherichia_coli	3650.37710881	1019.22422116
+COA-PWY-1	coenzyme A biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	1003.39365894	368.93829386
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6837.929236620001	1458.50626822
+PWY-5005	biotin biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	13632.20545127	1531.2019051
+PWY-4041	&gamma; glutamyl cycle|g__Escherichia.s__Escherichia_coli	5946.00207412	146.46057525
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Streptococcus.s__Streptococcus_mutans	5942.63765691	1075.14036609
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	13369.976352750002	1138.58445146
+P42-PWY	incomplete reductive TCA cycle|g__Propionibacterium.s__Propionibacterium_acnes	125.05394405000001	4360.80925658
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Escherichia.s__Escherichia_coli	2299.31537269	337.86673042
+PWY-6562	norspermidine biosynthesis	218.86041799	4624.32885997
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Staphylococcus.s__Staphylococcus_aureus	9743.57817824	879.08031243
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae	341.08923605	79.05367387
+P42-PWY	incomplete reductive TCA cycle|g__Staphylococcus.s__Staphylococcus_aureus	13936.750358750001	1191.4175682
+PWY-7400	L arginine biosynthesis IV |g__Staphylococcus.s__Staphylococcus_aureus	15354.11940315	2495.26566885
+PWY-7664	oleate biosynthesis IV |g__Staphylococcus.s__Staphylococcus_aureus	6208.22400634	1214.56040809
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Escherichia.s__Escherichia_coli	3493.26437899	774.5820243
+PWY-3801	sucrose degradation II |g__Staphylococcus.s__Staphylococcus_aureus	9958.965535970001	1227.63555655
+PWY-6803	phosphatidylcholine acyl editing|g__Neisseria.s__Neisseria_meningitidis	92.76437848	2398.33809012
+PWY-2942	L lysine biosynthesis III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2684.68361975	271.52394734
+PWY66-367	ketogenesis	20586.77550017	11739.88053451
+GLUTORN-PWY	L ornithine biosynthesis|unclassified	341.67654023	569.7612764099999
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Streptococcus.s__Streptococcus_mutans	7465.08545776	1650.49554073
+PWY66-389	phytol degradation|g__Propionibacterium.s__Propionibacterium_acnes	427.17229621	4830.73518595
+PWY0-1586	peptidoglycan maturation |g__Staphylococcus.s__Staphylococcus_aureus	12323.38519243	1001.6705746199999
+PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I 	37359.01700251	11927.378765090001
+METHGLYUT-PWY	superpathway of methylglyoxal degradation|unclassified	112.17208644	110.92868734000001
+PWY-7111	pyruvate fermentation to isobutanol |g__Acinetobacter.s__Acinetobacter_baumannii	580.74819003	16585.03150303
+PWY-6630	superpathway of L tyrosine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	3646.835713	285.14604184
+PWY-7391	isoprene biosynthesis II 	30738.87869861	8400.52258056
+GLYCOLYSIS	glycolysis I 	42940.06802303	57491.91524327
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Rhodobacter.s__Rhodobacter_sphaeroides	1759.45401497	633.23408091
+PWY-5347	superpathway of L methionine biosynthesis |g__Escherichia.s__Escherichia_coli	5535.9622291900005	1122.03662727
+PWY-6353	purine nucleotides degradation II |g__Escherichia.s__Escherichia_coli	8709.22987767	981.44226721
+PWY-7431	aromatic biogenic amine degradation |unclassified	9.98055831	58.30332417
+PWY0-42	2 methylcitrate cycle I|g__Pseudomonas.s__Pseudomonas_aeruginosa	608.37208118	118.40719672
+PWY66-389	phytol degradation	97948.05701095	126799.82204952001
+PWY-7400	L arginine biosynthesis IV |g__Streptococcus.s__Streptococcus_mutans	7613.585259209999	1319.31787361
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	159.71379076	19876.46520516
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|unclassified	360.41633729	196.35650766999998
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1056.89034552	272.35544024
+PWY-5659	GDP mannose biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	4117.82806788	694.21044438
+NAD-BIOSYNTHESIS-II	NAD salvage pathway II|g__Escherichia.s__Escherichia_coli	6399.36784439	1081.15882603
+TRIGLSYN-PWY	diacylglycerol and triacylglycerol biosynthesis	459.46669737999997	5730.57246545
+PWY-6823	molybdenum cofactor biosynthesis|unclassified	34.30203548	84.75362593
+PWY-5188	tetrapyrrole biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	658.20873845	335.98771892
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/specific_to_sample1.txt	Mon Sep 14 13:50:30 2020 +0000
@@ -0,0 +1,393 @@
+id	name	abundances
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Pseudomonas.s__Pseudomonas_aeruginosa2355.2977619499998
+PWY0-1061	superpathway of L alanine biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae629.81986142
+ORNARGDEG-PWY	superpathway of L arginine and L ornithine degradation|unclassified67.59290738
+PENTOSE-P-PWY	pentose phosphate pathway|g__Pseudomonas.s__Pseudomonas_aeruginosa232.40561581
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae705.67950476
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Escherichia.s__Escherichia_coli623.1847142400001
+PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa320.96477039
+P4-PWY	superpathway of L lysine, L threonine and L methionine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa677.11766653
+PWY-6700	queuosine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides447.95699647999993
+PWY-6527	stachyose degradation|unclassified53.551283819999995
+PWY-4221	pantothenate and coenzyme A biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides935.46980828
+PWY-6703	preQ0 biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa796.0549075700001
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides600.7633936799999
+PWY-5079	L phenylalanine degradation III|unclassified6.5206192
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa752.81237337
+PWY-561	superpathway of glyoxylate cycle and fatty acid degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa395.39499627
+PWY0-781	aspartate superpathway|unclassified35.58050169
+PWY0-1277	3 phenylpropanoate and 3 propanoate degradation|g__Escherichia.s__Escherichia_coli2473.1533402
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae502.26578072
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae186.2324897
+PWY-6317	galactose degradation I |unclassified27.43425146
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Staphylococcus.s__Staphylococcus_aureus1142.2860582
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Escherichia.s__Escherichia_coli2980.83193002
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae381.06191748
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides603.00195694
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa869.41608143
+PWY-7409	phospholipid remodeling |g__Escherichia.s__Escherichia_coli2324.0578138
+PWY-2201	folate transformations I207.35386067000002
+PWY-5690	TCA cycle II |g__Methanobrevibacter.s__Methanobrevibacter_smithii2245.54201886
+PWY-5860	superpathway of demethylmenaquinol 6 biosynthesis I|g__Escherichia.s__Escherichia_coli1639.5406975899998
+PWY-7209	superpathway of pyrimidine ribonucleosides degradation|unclassified14.160067660000001
+PWY-6562	norspermidine biosynthesis|unclassified70.22305715
+PWY-2201	folate transformations I|unclassified115.80586462
+FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Staphylococcus.s__Staphylococcus_aureus5666.17436329
+ARGDEG-IV-PWY	L arginine degradation VIII 413.14165668999993
+PWY-7663	gondoate biosynthesis |g__Streptococcus.s__Streptococcus_agalactiae495.11402348
+PWY-5850	superpathway of menaquinol 6 biosynthesis I|g__Escherichia.s__Escherichia_coli2086.15005453
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides2860.34862539
+NONOXIPENT-PWY	pentose phosphate pathway |g__Streptococcus.s__Streptococcus_agalactiae1256.57046857
+SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Staphylococcus.s__Staphylococcus_aureus796.46617638
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Methanobrevibacter.s__Methanobrevibacter_smithii1764.1648964800002
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides588.5149377700001
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Streptococcus.s__Streptococcus_agalactiae453.58757377999996
+COLANSYN-PWY	colanic acid building blocks biosynthesis|g__Escherichia.s__Escherichia_coli3813.86057052
+ARGDEG-PWY	superpathway of L arginine, putrescine, and 4 aminobutanoate degradation|unclassified67.59290738
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Rhodobacter.s__Rhodobacter_sphaeroides204.82784482
+PWY-6690	cinnamate and 3 hydroxycinnamate degradation to 2 oxopent 4 enoate|g__Escherichia.s__Escherichia_coli1403.43643815
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa801.3771946
+UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa1457.87125511
+PWY66-201	nicotine degradation IV|g__Rhodobacter.s__Rhodobacter_sphaeroides1097.74670735
+PWY-6581	spirilloxanthin and 2,2 diketo spirilloxanthin biosynthesis|unclassified93.25005510999999
+PWY-5856	ubiquinol 9 biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa1603.7038076799997
+PWY-5845	superpathway of menaquinol 9 biosynthesis|g__Escherichia.s__Escherichia_coli2086.15005453
+PWY-7118	chitin degradation to ethanol|unclassified179.48569416
+PWY-621	sucrose degradation III |g__Escherichia.s__Escherichia_coli3150.29450022
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Escherichia.s__Escherichia_coli444.7271163
+ARGDEG-IV-PWY	L arginine degradation VIII |unclassified4.722920960000001
+ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast|unclassified184.58699889000002
+PWY-7204	pyridoxal 5 phosphate salvage II |unclassified167.17715566
+PWY-7111	pyruvate fermentation to isobutanol |g__Streptococcus.s__Streptococcus_agalactiae203.74459516000002
+UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides2584.80254865
+PWY-2941	L lysine biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa489.10250936
+PWY-5857	ubiquinol 10 biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa1649.4470132
+PWY0-781	aspartate superpathway|g__Escherichia.s__Escherichia_coli3852.39517438
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa1689.31799097
+POLYAMINSYN3-PWY	superpathway of polyamine biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa612.71654659
+TYRFUMCAT-PWY	L tyrosine degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa691.32788023
+PWY-6948	sitosterol degradation to androstenedione|g__Pseudomonas.s__Pseudomonas_aeruginosa409.72758897999995
+PWY-5367	petroselinate biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae479.83416606000003
+PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa891.1102507700001
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Escherichia.s__Escherichia_coli1303.34457778
+PWY-6151	S adenosyl L methionine cycle I|g__Streptococcus.s__Streptococcus_agalactiae409.98697536000003
+PWY-6837	fatty acid beta oxidation V |g__Pseudomonas.s__Pseudomonas_aeruginosa1113.2892182100002
+PWY-1042	glycolysis IV |g__Streptococcus.s__Streptococcus_agalactiae992.3227517600001
+PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus4844.43695908
+PWY-6385	peptidoglycan biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides812.03316179
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa1767.64033441
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa3608.12319483
+PWY-7242	D fructuronate degradation|g__Streptococcus.s__Streptococcus_agalactiae202.56826561
+HISDEG-PWY	L histidine degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides1146.39844454
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae484.81259198000004
+GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Streptococcus.s__Streptococcus_agalactiae472.78172629000005
+ENTBACSYN-PWY	enterobactin biosynthesis|unclassified227.27044587999998
+PWY-6936	seleno amino acid biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae431.15933468
+DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus11654.72711304
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus1160.28005357
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Escherichia.s__Escherichia_coli565.0670445100001
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa930.61469304
+PWY-6897	thiamin salvage II|g__Staphylococcus.s__Staphylococcus_epidermidis6943.5031553300005
+GLYCOL-GLYOXDEG-PWY	superpathway of glycol metabolism and degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides294.74365918
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Streptococcus.s__Streptococcus_agalactiae279.20454692
+P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate|unclassified33.16446605
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Rhodobacter.s__Rhodobacter_sphaeroides633.07313992
+PWY-7560	methylerythritol phosphate pathway II|g__Pseudomonas.s__Pseudomonas_aeruginosa580.3736268499999
+ARGDEG-PWY	superpathway of L arginine, putrescine, and 4 aminobutanoate degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa792.3785689499999
+PWY-5856	ubiquinol 9 biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides2839.19231516
+PWY-5855	ubiquinol 7 biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa1649.4470132
+PWY-6353	purine nucleotides degradation II |g__Pseudomonas.s__Pseudomonas_aeruginosa619.7133651199999
+PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Streptococcus.s__Streptococcus_agalactiae223.47351181000002
+PWY-7664	oleate biosynthesis IV |g__Pseudomonas.s__Pseudomonas_aeruginosa2728.84413265
+PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa445.94420523
+FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Escherichia.s__Escherichia_coli3012.19970732
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa521.52168541
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Escherichia.s__Escherichia_coli3848.88745954
+PWY0-1296	purine ribonucleosides degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides238.27679029
+PWY-7409	phospholipid remodeling 2857.9817830399998
+PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Escherichia.s__Escherichia_coli556.96533101
+VALDEG-PWY	L valine degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa798.1197822400001
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus12896.65630605
+PWY-6168	flavin biosynthesis III |g__Escherichia.s__Escherichia_coli1076.61192214
+ORNARGDEG-PWY	superpathway of L arginine and L ornithine degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa792.3785689499999
+P185-PWY	formaldehyde assimilation III |g__Streptococcus.s__Streptococcus_agalactiae370.14671717
+PWY-6595	superpathway of guanosine nucleotides degradation |g__Staphylococcus.s__Staphylococcus_aureus1168.64104025
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae313.12173422999996
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Staphylococcus.s__Staphylococcus_epidermidis2558.08694352
+PWY-6385	peptidoglycan biosynthesis III |g__Streptococcus.s__Streptococcus_agalactiae370.69536959
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus12316.25590337
+PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa366.47566208
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Escherichia.s__Escherichia_coli3363.72493111
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides815.95986724
+PWY-5971	palmitate biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides12693.62857215
+DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa780.13280579
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Methanobrevibacter.s__Methanobrevibacter_smithii2572.4707898799998
+PWY-6182	superpathway of salicylate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides245.59689645999998
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa761.59860824
+PWY-7268	NAD NADP NADH NADPH cytosolic interconversion |g__Rhodobacter.s__Rhodobacter_sphaeroides894.2992754600001
+FERMENTATION-PWY	mixed acid fermentation|unclassified24.56707549
+PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa366.47566208
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Streptococcus.s__Streptococcus_agalactiae556.9326775100001
+PWY-6467	Kdo transfer to lipid IVA III |unclassified19.18837123
+PWY-5189	tetrapyrrole biosynthesis II |g__Methanobrevibacter.s__Methanobrevibacter_smithii1869.27843631
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae935.98894114
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae380.85681772000004
+PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Escherichia.s__Escherichia_coli956.52249796
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Escherichia.s__Escherichia_coli713.89846764
+PWY-6892	thiazole biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa337.34095461
+GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|g__Streptococcus.s__Streptococcus_agalactiae234.11186346
+GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Streptococcus.s__Streptococcus_agalactiae1410.06644622
+P108-PWY	pyruvate fermentation to propanoate I|g__Rhodobacter.s__Rhodobacter_sphaeroides15336.983377769999
+DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli1295.96739518
+PWY-7245	superpathway NAD NADP   NADH NADPH interconversion |g__Pseudomonas.s__Pseudomonas_aeruginosa429.70353580999995
+PWY-5742	L arginine degradation IX (arginine11.09282575
+PWY-7328	superpathway of UDP glucose derived O antigen building blocks biosynthesis|unclassified13.792676400000001
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus8629.38522048
+HISTSYN-PWY	L histidine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides435.72770397999994
+PWY-5994	palmitate biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa4058.97348728
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides225.77624728
+PWY-2941	L lysine biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii2455.36448795
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides659.5886506100001
+PWY-5431	aromatic compounds degradation via &beta; ketoadipate|g__Rhodobacter.s__Rhodobacter_sphaeroides211.99234581000002
+PWY-6608	guanosine nucleotides degradation III|g__Staphylococcus.s__Staphylococcus_aureus950.6312272600001
+PWY6666-2	dopamine degradation|unclassified16.87667991
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa2236.13084373
+PWY-7013	L 1,2 propanediol degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa860.88903442
+PWY-6837	fatty acid beta oxidation V |g__Rhodobacter.s__Rhodobacter_sphaeroides82.267447
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Pseudomonas.s__Pseudomonas_aeruginosa1047.41237573
+PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Staphylococcus.s__Staphylococcus_aureus9467.71157061
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Streptococcus.s__Streptococcus_agalactiae342.89864049
+PRPP-PWY	superpathway of histidine, purine, and pyrimidine biosynthesis|g__Escherichia.s__Escherichia_coli1402.8357170699999
+PWY-2942	L lysine biosynthesis III|g__Escherichia.s__Escherichia_coli3469.56543581
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii2841.86388666
+PWY-6901	superpathway of glucose and xylose degradation|unclassified48.67477474
+PWY-6609	adenine and adenosine salvage III|g__Pseudomonas.s__Pseudomonas_aeruginosa492.92811040000004
+PWY-5079	L phenylalanine degradation III7.147412879999999
+COA-PWY	coenzyme A biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa235.43260741999998
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Streptococcus.s__Streptococcus_agalactiae273.7110673
+METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa289.82858165
+PWY-7165	L ascorbate biosynthesis VI |g__Pseudomonas.s__Pseudomonas_aeruginosa411.57432708000005
+PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Streptococcus.s__Streptococcus_mutans1304.35796191
+PWY-6641	superpathway of sulfolactate degradation4418.04926048
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Staphylococcus.s__Staphylococcus_aureus15824.12483896
+PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides478.21587188
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae384.06128551
+OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Methanobrevibacter.s__Methanobrevibacter_smithii3062.91191006
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Staphylococcus.s__Staphylococcus_epidermidis6778.678636940001
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides806.0992777199999
+3-HYDROXYPHENYLACETATE-DEGRADATION-PWY	4 hydroxyphenylacetate degradation|g__Escherichia.s__Escherichia_coli1868.56730475
+PPGPPMET-PWY	ppGpp biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus12258.80734876
+PWY-6969	TCA cycle V (2 oxoglutarate346.96109280999997
+PWY-5345	superpathway of L methionine biosynthesis |g__Escherichia.s__Escherichia_coli837.3052943199999
+PWY-7654	 dodeca 8,10 dienol biosynthesis4.81757443
+PWYG-321	mycolate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa2987.621424
+PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa811.5405063000001
+FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Streptococcus.s__Streptococcus_mutans1726.15096165
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Staphylococcus.s__Staphylococcus_aureus10746.70127227
+P165-PWY	superpathway of purines degradation in plants|unclassified16.8571675
+ALL-CHORISMATE-PWY	superpathway of chorismate metabolism|g__Escherichia.s__Escherichia_coli3577.8833366599997
+PWY-6731	starch degradation III|g__Escherichia.s__Escherichia_coli2025.33248781
+PWY-1861	formaldehyde assimilation II |g__Streptococcus.s__Streptococcus_agalactiae839.53086925
+FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Pseudomonas.s__Pseudomonas_aeruginosa415.68053269
+PWY-5659	GDP mannose biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae279.37336394
+PWY-5154	L arginine biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides2117.76024295
+PWY-7413	dTDP 6 deoxy &alpha; D allose biosynthesis|unclassified11.88476851
+PWY-6630	superpathway of L tyrosine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides692.51463742
+LACTOSECAT-PWY	lactose and galactose degradation I|g__Streptococcus.s__Streptococcus_agalactiae857.48713873
+PWY0-862	 dodec 5 enoate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa4255.11825415
+PWY-6700	queuosine biosynthesis|unclassified90.6679617
+PWY-4321	L glutamate degradation IV|unclassified108.89195113000001
+RIBOSYN2-PWY	flavin biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides605.64694816
+PWY-5328	superpathway of L methionine salvage and degradation2843.85104088
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae292.79913109
+PWY-6606	guanosine nucleotides degradation II|g__Staphylococcus.s__Staphylococcus_aureus948.03016371
+ORNDEG-PWY	superpathway of ornithine degradation|unclassified56.40820653
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis2662.01915754
+PWY-561	superpathway of glyoxylate cycle and fatty acid degradation|g__Escherichia.s__Escherichia_coli5495.687018680001
+ARG+POLYAMINE-SYN	superpathway of arginine and polyamine biosynthesis|unclassified119.85975185
+PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|g__Streptococcus.s__Streptococcus_agalactiae270.24386472000003
+PWY-6305	putrescine biosynthesis IV|g__Pseudomonas.s__Pseudomonas_aeruginosa631.30755126
+GLYCOL-GLYOXDEG-PWY	superpathway of glycol metabolism and degradation|unclassified8.16336902
+PWY-5742	L arginine degradation IX (arginine4.722920960000001
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae638.03582997
+PWY-6672	cis genanyl CoA degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa246.74381202
+PWY-6167	flavin biosynthesis II |g__Methanobrevibacter.s__Methanobrevibacter_smithii1103.65774119
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Streptococcus.s__Streptococcus_agalactiae368.56944756
+HSERMETANA-PWY	L methionine biosynthesis III|g__Escherichia.s__Escherichia_coli258.04071557000003
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Escherichia.s__Escherichia_coli482.84908913000004
+PWY-4702	phytate degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides3002.94172663
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa767.05707833
+PWY-4702	phytate degradation I|g__Staphylococcus.s__Staphylococcus_aureus666.66666667
+ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast|g__Pseudomonas.s__Pseudomonas_aeruginosa466.00141981999997
+GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|g__Streptococcus.s__Streptococcus_agalactiae326.19047412
+HCAMHPDEG-PWY	3 phenylpropanoate and 3 propanoate degradation to 2 oxopent 4 enoate|unclassified1.42686388
+COA-PWY-1	coenzyme A biosynthesis II |g__Streptococcus.s__Streptococcus_agalactiae289.18872286
+POLYAMSYN-PWY	superpathway of polyamine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa1030.95103257
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae398.7914365
+PWY-6690	cinnamate and 3 hydroxycinnamate degradation to 2 oxopent 4 enoate|unclassified1.42686388
+PWY-6531	mannitol cycle|unclassified41.85342858
+PWY-6692	Fe oxidation|unclassified1591.0188921
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Streptococcus.s__Streptococcus_agalactiae367.16635154
+PWY-7242	D fructuronate degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa153.24610575
+PWY0-845	superpathway of pyridoxal 5 phosphate biosynthesis and salvage|g__Pseudomonas.s__Pseudomonas_aeruginosa955.5854827599999
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus8304.02365218
+GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|unclassified42.89806203
+PYRIDNUCSAL-PWY	NAD salvage pathway I|g__Streptococcus.s__Streptococcus_mutans2642.1276170399997
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Streptococcus.s__Streptococcus_agalactiae235.83321834
+P125-PWY	superpathway of  butanediol biosynthesis|unclassified50.56326117
+PWY-6969	TCA cycle V (2 oxoglutarate7590.86231693
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa1199.97356797
+PWY-7279	aerobic respiration II  (yeast)|unclassified1801.8367093900001
+HISTSYN-PWY	L histidine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii1132.62751532
+PWY-6435	4 hydroxybenzoate biosynthesis V|g__Pseudomonas.s__Pseudomonas_aeruginosa772.99518162
+PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus11666.162295799999
+PRPP-PWY	superpathway of histidine, purine, and pyrimidine biosynthesis|g__Streptococcus.s__Streptococcus_mutans6315.9831806
+PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides3961.1574612
+PWY-5989	stearate biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa2131.65064876
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Escherichia.s__Escherichia_coli1045.65243736
+PWY-5994	palmitate biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides2813.15818741
+PWY-4702	phytate degradation I|unclassified88.68668132
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Methanobrevibacter.s__Methanobrevibacter_smithii2067.88373435
+PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Escherichia.s__Escherichia_coli2664.37896826
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Streptococcus.s__Streptococcus_agalactiae388.54431864
+ARG+POLYAMINE-SYN	superpathway of arginine and polyamine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa675.87657286
+PPGPPMET-PWY	ppGpp biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa1017.9913798299999
+PWY-6317	galactose degradation I |g__Streptococcus.s__Streptococcus_agalactiae258.11350952
+PWY-6708	ubiquinol 8 biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa1800.40757215
+PWY-6700	queuosine biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae245.86046226
+PWY-6486	D galacturonate degradation II|unclassified6.12811943
+PWY-6117	spermine and spermidine degradation I10.27051153
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Methanobrevibacter.s__Methanobrevibacter_smithii2686.37433669
+PWY-6167	flavin biosynthesis II 4728.07707794
+PWY-5177	glutaryl CoA degradation|unclassified21.6079766
+PWY0-845	superpathway of pyridoxal 5 phosphate biosynthesis and salvage|unclassified275.19424212
+PWY-6859	all trans farnesol biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae318.54192069
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Rhodobacter.s__Rhodobacter_sphaeroides410.01617193
+PWY-7209	superpathway of pyrimidine ribonucleosides degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa477.24586993
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Streptococcus.s__Streptococcus_agalactiae269.36147124
+PWY-6151	S adenosyl L methionine cycle I|g__Escherichia.s__Escherichia_coli1866.01186462
+PWY0-845	superpathway of pyridoxal 5 phosphate biosynthesis and salvage|g__Rhodobacter.s__Rhodobacter_sphaeroides779.91889375
+PWY-3801	sucrose degradation II |unclassified43.29140831
+PWY-5188	tetrapyrrole biosynthesis I |g__Methanobrevibacter.s__Methanobrevibacter_smithii2357.7531962
+PWY-6435	4 hydroxybenzoate biosynthesis V|g__Staphylococcus.s__Staphylococcus_aureus9409.377336279998
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae361.12670274
+GLYCOL-GLYOXDEG-PWY	superpathway of glycol metabolism and degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa675.72913268
+PWY-7328	superpathway of UDP glucose derived O antigen building blocks biosynthesis|g__Escherichia.s__Escherichia_coli4028.06139814
+ARGORNPROST-PWY	arginine, ornithine and proline interconversion|unclassified119.95840720999999
+PWY66-409	superpathway of purine nucleotide salvage|g__Escherichia.s__Escherichia_coli1182.85263435
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Streptococcus.s__Streptococcus_mutans7532.211023569999
+POLYAMINSYN3-PWY	superpathway of polyamine biosynthesis II|unclassified90.36940174
+PWY-7345	superpathway of anaerobic sucrose degradation|unclassified45.12435388
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus11184.26078617
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae339.2748428
+P4-PWY	superpathway of L lysine, L threonine and L methionine biosynthesis I|g__Escherichia.s__Escherichia_coli4577.71445151
+PWY-5896	superpathway of menaquinol 10 biosynthesis|g__Escherichia.s__Escherichia_coli2086.15005453
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii2873.5374080300003
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae705.67950476
+PWY-7294	xylose degradation IV3457.0219687300005
+PWY-7268	NAD NADP NADH NADPH cytosolic interconversion |g__Pseudomonas.s__Pseudomonas_aeruginosa372.88456212
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae135.52417984000002
+3-HYDROXYPHENYLACETATE-DEGRADATION-PWY	4 hydroxyphenylacetate degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa605.3153391999999
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Pseudomonas.s__Pseudomonas_aeruginosa2201.63459789
+PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa242.42081316
+PWY-6737	starch degradation V|g__Streptococcus.s__Streptococcus_agalactiae127.82172243000001
+PWY-5154	L arginine biosynthesis III |g__Pseudomonas.s__Pseudomonas_aeruginosa386.2629909
+PWY-7654	 dodeca 8,10 dienol biosynthesis|unclassified4.5891778
+PWY-6703	preQ0 biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii2331.56995435
+GLUCONEO-PWY	gluconeogenesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa425.97302181
+PWY-2942	L lysine biosynthesis III|g__Pseudomonas.s__Pseudomonas_aeruginosa434.94384789
+PWY-7413	dTDP 6 deoxy &alpha; D allose biosynthesis12.26474527
+PWY-6803	phosphatidylcholine acyl editing|g__Escherichia.s__Escherichia_coli2729.04041723
+METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides828.8230023100001
+NAGLIPASYN-PWY	lipid IVA biosynthesis|unclassified25.03978499
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus11346.28260228
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Staphylococcus.s__Staphylococcus_aureus11880.58784133
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Streptococcus.s__Streptococcus_agalactiae616.19648266
+PWY-4984	urea cycle|g__Streptococcus.s__Streptococcus_agalactiae507.03486709
+NAD-BIOSYNTHESIS-II	NAD salvage pathway II|g__Pseudomonas.s__Pseudomonas_aeruginosa241.91089024000001
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa3900.59706637
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae190.25923237
+PWY66-400	glycolysis VI |g__Streptococcus.s__Streptococcus_agalactiae303.79411134000003
+PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides279.13563352
+PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |g__Rhodobacter.s__Rhodobacter_sphaeroides601.7711987700001
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Streptococcus.s__Streptococcus_agalactiae285.35629144
+PWY-6107	chlorosalicylate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides364.28828863999996
+P441-PWY	superpathway of N acetylneuraminate degradation|unclassified47.40694288
+PWY-5723	Rubisco shunt|g__Pseudomonas.s__Pseudomonas_aeruginosa200.37530766999998
+PWY-3841	folate transformations II|g__Pseudomonas.s__Pseudomonas_aeruginosa960.42756687
+PWY4LZ-257	superpathway of fermentation |unclassified36.52564193
+ANAEROFRUCAT-PWY	homolactic fermentation|g__Streptococcus.s__Streptococcus_agalactiae255.91042194
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli822.53175687
+P125-PWY	superpathway of  butanediol biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae185.03278491999998
+PWY-5097	L lysine biosynthesis VI|g__Pseudomonas.s__Pseudomonas_aeruginosa675.74728882
+PWY-6708	ubiquinol 8 biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides4984.47122955
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides847.14753882
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa2290.53648497
+GLUCARDEG-PWY	D glucarate degradation I|unclassified63.39553599
+PWY-5973	cis vaccenate biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae447.83907364
+PWY-6305	putrescine biosynthesis IV|g__Methanobrevibacter.s__Methanobrevibacter_smithii1780.0145269800003
+PWY-6307	L tryptophan degradation X |g__Pseudomonas.s__Pseudomonas_aeruginosa101.65391341
+PWY0-1277	3 phenylpropanoate and 3 propanoate degradation|unclassified4.74813034
+PWY-5686	UMP biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii2597.42400205
+PWY-6309	L tryptophan degradation XI |g__Pseudomonas.s__Pseudomonas_aeruginosa418.67439109
+PWY-6891	thiazole biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa287.90518208
+PWY0-881	superpathway of fatty acid biosynthesis I |unclassified246.44156082
+PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Escherichia.s__Escherichia_coli783.03367055
+PWY-2723	trehalose degradation V|g__Escherichia.s__Escherichia_coli3790.75559669
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa2538.97438594
+PWY-3941	&beta; alanine biosynthesis II|unclassified9.30942286
+PWY-5973	cis vaccenate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa1762.9121066
+URSIN-PWY	ureide biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa346.33151921
+PWY-5022	4 aminobutanoate degradation V|g__Escherichia.s__Escherichia_coli3151.52780911
+PWY-5415	catechol degradation I |g__Escherichia.s__Escherichia_coli253.23082455
+OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Streptococcus.s__Streptococcus_agalactiae240.17680805
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae384.06128551
+PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides406.57682288999996
+PWY-5862	superpathway of demethylmenaquinol 9 biosynthesis|g__Escherichia.s__Escherichia_coli1639.5406975899998
+PWY-6641	superpathway of sulfolactate degradation|unclassified13.21464842
+COA-PWY	coenzyme A biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides583.99570456
+PWY-5690	TCA cycle II |g__Pseudomonas.s__Pseudomonas_aeruginosa273.24886483
+PROTOCATECHUATE-ORTHO-CLEAVAGE-PWY	protocatechuate degradation II |g__Pseudomonas.s__Pseudomonas_aeruginosa266.54206526999997
+GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|unclassified179.77462326
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus8533.03496704
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Pseudomonas.s__Pseudomonas_aeruginosa264.59552702
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa1068.46904313
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae263.18388651000004
+TRNA-CHARGING-PWY	tRNA charging|g__Staphylococcus.s__Staphylococcus_aureus1635.82224797
+ARO-PWY	chorismate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides531.17556088
+PWY-621	sucrose degradation III |g__Streptococcus.s__Streptococcus_agalactiae112.79225549
+PYRIDNUCSAL-PWY	NAD salvage pathway I|g__Pseudomonas.s__Pseudomonas_aeruginosa314.33071124
+PWY-1541	superpathway of taurine degradation|unclassified58.7739116
+GLYCOLYSIS	glycolysis I |g__Streptococcus.s__Streptococcus_agalactiae246.23941276000002
+PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa505.74692227
+PWY-7200	superpathway of pyrimidine deoxyribonucleoside salvage|g__Escherichia.s__Escherichia_coli524.75222768
+COA-PWY	coenzyme A biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae323.6348991
+P105-PWY	TCA cycle IV |g__Pseudomonas.s__Pseudomonas_aeruginosa346.96109280999997
+PWY-7200	superpathway of pyrimidine deoxyribonucleoside salvage|g__Staphylococcus.s__Staphylococcus_aureus9664.74077711
+PWY-6519	8 amino 7 oxononanoate biosynthesis I|unclassified37.58644825
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |unclassified47.18774207
+PWY-4041	&gamma; glutamyl cycle|g__Streptococcus.s__Streptococcus_agalactiae357.22684804
+PWY-6117	spermine and spermidine degradation I|unclassified9.97625171
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Pseudomonas.s__Pseudomonas_aeruginosa263.3999058
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Streptococcus.s__Streptococcus_agalactiae301.65285339999997
+PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |unclassified125.63136519
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa2909.69565583
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Escherichia.s__Escherichia_coli708.4604707699999
+NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Pseudomonas.s__Pseudomonas_aeruginosa580.3736268499999
+PWY-6565	superpathway of polyamine biosynthesis III|unclassified65.06157163
+OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides617.65804587
+KETOGLUCONMET-PWY	ketogluconate metabolism|g__Rhodobacter.s__Rhodobacter_sphaeroides2086.77560891
+PWY-5484	glycolysis II |g__Streptococcus.s__Streptococcus_agalactiae230.80642089999998
+RUMP-PWY	formaldehyde oxidation I|g__Staphylococcus.s__Staphylococcus_aureus10207.43071166
+HCAMHPDEG-PWY	3 phenylpropanoate and 3 propanoate degradation to 2 oxopent 4 enoate|g__Escherichia.s__Escherichia_coli1403.43643815
+PWY-5417	catechol degradation III |g__Rhodobacter.s__Rhodobacter_sphaeroides211.99234581000002
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Staphylococcus.s__Staphylococcus_aureus11389.66331209
+PWY66-422	D galactose degradation V |g__Streptococcus.s__Streptococcus_agalactiae254.63203563
+PWY3O-19	ubiquinol 6 biosynthesis from 4 hydroxybenzoate |g__Rhodobacter.s__Rhodobacter_sphaeroides2645.8359955700003
+PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa869.1164710900001
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Streptococcus.s__Streptococcus_agalactiae324.2241648
+PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Staphylococcus.s__Staphylococcus_aureus10064.13020033
+CATECHOL-ORTHO-CLEAVAGE-PWY	catechol degradation to &beta; ketoadipate|g__Rhodobacter.s__Rhodobacter_sphaeroides480.71275029000003
+TEICHOICACID-PWY	teichoic acid  biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis7484.93061203
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa1554.97187132
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii3405.18193479
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/specific_to_sample2.txt	Mon Sep 14 13:50:30 2020 +0000
@@ -0,0 +1,1336 @@
+id	name	abundances
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Deinococcus.s__Deinococcus_radiodurans11045.646771369999
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus869.8459622199999
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Listeria.s__Listeria_monocytogenes957.31899135
+P221-PWY	octane oxidation|g__Clostridium.s__Clostridium_beijerinckii451.02308636000004
+PWY-3841	folate transformations II|g__Listeria.s__Listeria_monocytogenes825.20149758
+GLUTORN-PWY	L ornithine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii6249.9626888
+PWY-5345	superpathway of L methionine biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii5138.44802921
+RHAMCAT-PWY	L rhamnose degradation I|g__Bacteroides.s__Bacteroides_vulgatus2720.4624286400003
+P185-PWY	formaldehyde assimilation III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2799.70889862
+PYRIDNUCSAL-PWY	NAD salvage pathway I|unclassified48.01244259
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2326.16249888
+ANAEROFRUCAT-PWY	homolactic fermentation|g__Listeria.s__Listeria_monocytogenes1159.5063759500001
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Neisseria.s__Neisseria_meningitidis1177.5189052
+PWY-7185	UTP and CTP dephosphorylation I95.19614057
+PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis264.06357646
+HISTSYN-PWY	L histidine biosynthesis|g__Listeria.s__Listeria_monocytogenes622.7921232799999
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii3027.23954619
+PWY0-321	phenylacetate degradation I |unclassified95.84027976
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans819.0181925499999
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Neisseria.s__Neisseria_meningitidis1978.55815874
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii4876.52400545
+PWY0-1586	peptidoglycan maturation |g__Bacillus.s__Bacillus_cereus_thuringiensis2488.88961105
+PWY-5103	L isoleucine biosynthesis III|g__Actinomyces.s__Actinomyces_odontolyticus640.50375917
+PWY-5686	UMP biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus1155.0252265
+PWY-7338	10 trans heptadecenoyl CoA degradation |unclassified44.864782240000004
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Helicobacter.s__Helicobacter_pylori1193.87628964
+NAD-BIOSYNTHESIS-II	NAD salvage pathway II|g__Bacteroides.s__Bacteroides_vulgatus1561.82848783
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2904.45909841
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Propionibacterium.s__Propionibacterium_acnes3524.4272528899996
+NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Acinetobacter.s__Acinetobacter_baumannii3071.89162094
+PWY-4981	L proline biosynthesis II |g__Bacteroides.s__Bacteroides_vulgatus2337.74199143
+PWY66-400	glycolysis VI |g__Propionibacterium.s__Propionibacterium_acnes2923.04364527
+METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Enterococcus.s__Enterococcus_faecalis807.63764403
+ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast|g__Enterococcus.s__Enterococcus_faecalis362.21552207999997
+P185-PWY	formaldehyde assimilation III |g__Bacillus.s__Bacillus_cereus_thuringiensis189.13084629000002
+PWY0-1586	peptidoglycan maturation |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae6858.429670869999
+PWY-5973	cis vaccenate biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2600.36043229
+PWY-6527	stachyose degradation|g__Actinomyces.s__Actinomyces_odontolyticus711.43422479
+PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Deinococcus.s__Deinococcus_radiodurans4037.92854589
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Bacteroides.s__Bacteroides_vulgatus3051.45699566
+PWY-7371	1,4 dihydroxy 6 naphthoate biosynthesis II|unclassified188.73382486
+PWY-5871	ubiquinol 9 biosynthesis 4792.256502069999
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis447.28560835
+PWY-5857	ubiquinol 10 biosynthesis |g__Neisseria.s__Neisseria_meningitidis1287.84428004
+PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Bacteroides.s__Bacteroides_vulgatus2588.69310977
+PWY-7237	myo , chiro  and scillo inositol degradation|g__Enterococcus.s__Enterococcus_faecalis997.0417161400001
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis113.90438390999999
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Neisseria.s__Neisseria_meningitidis2373.4214166
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Neisseria.s__Neisseria_meningitidis3041.3094291
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans15625.93706344
+PWY-5484	glycolysis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1832.4880778200002
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans18155.77477658
+PWY-5430	meta cleavage pathway of aromatic compounds126.29316846
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Listeria.s__Listeria_monocytogenes1657.48374352
+PWY-6518	glycocholate metabolism 31.02285654
+GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|unclassified18.75528803
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii4043.67395185
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes2493.69623323
+GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|g__Bacteroides.s__Bacteroides_vulgatus2093.54249519
+PWY-7118	chitin degradation to ethanol|g__Acinetobacter.s__Acinetobacter_baumannii5378.28037933
+TCA	TCA cycle I |g__Bacillus.s__Bacillus_cereus_thuringiensis260.62613955
+PWY-5030	L histidine degradation III|unclassified66.80566085000001
+COA-PWY	coenzyme A biosynthesis I|g__Listeria.s__Listeria_monocytogenes236.80451457
+P4-PWY	superpathway of L lysine, L threonine and L methionine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii5332.80187908
+PWY-6708	ubiquinol 8 biosynthesis |unclassified80.68319092
+PWY-4702	phytate degradation I|g__Actinomyces.s__Actinomyces_odontolyticus1940.9257766300002
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus2166.0346274
+PWY0-1296	purine ribonucleosides degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4562.3093788
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Neisseria.s__Neisseria_meningitidis2600.28006272
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus1482.08811185
+PWY-3841	folate transformations II|g__Acinetobacter.s__Acinetobacter_baumannii4603.214169049999
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus896.0783382400001
+THISYN-PWY	superpathway of thiamin diphosphate biosynthesis I|unclassified98.07533218
+PWY-6385	peptidoglycan biosynthesis III |g__Acinetobacter.s__Acinetobacter_baumannii5127.6418564
+PWY-6385	peptidoglycan biosynthesis III |g__Listeria.s__Listeria_monocytogenes717.1837324200001
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Helicobacter.s__Helicobacter_pylori3084.59585039
+NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Deinococcus.s__Deinococcus_radiodurans11173.53070745
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii518.45151748
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Neisseria.s__Neisseria_meningitidis1043.6428686099998
+PWY0-1296	purine ribonucleosides degradation|g__Enterococcus.s__Enterococcus_faecalis1673.62776656
+PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae991.29148011
+PWY-5347	superpathway of L methionine biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4117.42517441
+PWY-6317	galactose degradation I |g__Bacteroides.s__Bacteroides_vulgatus3445.4702269400004
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3526.5804103900005
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus501.44719085
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Clostridium.s__Clostridium_beijerinckii545.99738042
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus1024.55480715
+PWY-6700	queuosine biosynthesis|g__Enterococcus.s__Enterococcus_faecalis338.91062933
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus3112.41953118
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Neisseria.s__Neisseria_meningitidis4169.69983143
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans886.61948329
+RIBOSYN2-PWY	flavin biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii4558.6996322899995
+PWY-3781	aerobic respiration I |g__Actinomyces.s__Actinomyces_odontolyticus2772.58262062
+NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Helicobacter.s__Helicobacter_pylori1985.27116196
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans18365.47487955
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis2900.26644536
+BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2486.11794381
+PWY66-400	glycolysis VI |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1172.75289719
+PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3193.85970099
+REDCITCYC	TCA cycle VIII |g__Helicobacter.s__Helicobacter_pylori2720.08839484
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Listeria.s__Listeria_monocytogenes408.07724703
+GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|g__Enterococcus.s__Enterococcus_faecalis544.45208647
+PWY-5188	tetrapyrrole biosynthesis I |g__Listeria.s__Listeria_monocytogenes781.8931766999999
+PWY-5097	L lysine biosynthesis VI|g__Actinomyces.s__Actinomyces_odontolyticus478.68352308000004
+PWY-6891	thiazole biosynthesis II |g__Bacillus.s__Bacillus_cereus_thuringiensis290.80786445
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans18402.84744208
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Helicobacter.s__Helicobacter_pylori1863.36166513
+PWY-5686	UMP biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes3143.87334323
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Listeria.s__Listeria_monocytogenes598.60229823
+PWY-5103	L isoleucine biosynthesis III|g__Bacillus.s__Bacillus_cereus_thuringiensis228.48253796
+SO4ASSIM-PWY	sulfate reduction I |g__Neisseria.s__Neisseria_meningitidis4105.97545595
+DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii5038.91461921
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Propionibacterium.s__Propionibacterium_acnes3000.7046417
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis247.36686200000003
+PWY-6936	seleno amino acid biosynthesis|g__Helicobacter.s__Helicobacter_pylori3340.0113812900004
+BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii6031.76648166
+PWY-621	sucrose degradation III |g__Bacteroides.s__Bacteroides_vulgatus2849.06607071
+GOLPDLCAT-PWY	superpathway of glycerol degradation to 1,3 propanediol|g__Listeria.s__Listeria_monocytogenes3131.6627692800002
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Actinomyces.s__Actinomyces_odontolyticus1717.02311501
+PWY-6936	seleno amino acid biosynthesis|g__Listeria.s__Listeria_monocytogenes2432.02258862
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes2197.89142067
+PWY-5030	L histidine degradation III|g__Bacteroides.s__Bacteroides_vulgatus2001.0903574499998
+PWY-5690	TCA cycle II |g__Bacillus.s__Bacillus_cereus_thuringiensis281.93525144
+PWY-7384	anaerobic energy metabolism |unclassified77.89029517
+PWY-5686	UMP biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2928.92741977
+PWY-6897	thiamin salvage II|g__Helicobacter.s__Helicobacter_pylori1295.70087326
+PWY-6700	queuosine biosynthesis|g__Listeria.s__Listeria_monocytogenes770.9043106400001
+DHGLUCONATE-PYR-CAT-PWY	glucose degradation |g__Pseudomonas.s__Pseudomonas_aeruginosa243.38139553999997
+PWY-6519	8 amino 7 oxononanoate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii9018.79169511
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Listeria.s__Listeria_monocytogenes913.1636705
+PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii5131.17065219
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Helicobacter.s__Helicobacter_pylori2855.0849404600003
+TRNA-CHARGING-PWY	tRNA charging|g__Deinococcus.s__Deinococcus_radiodurans16966.188347170002
+COA-PWY	coenzyme A biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii519.3618184
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Listeria.s__Listeria_monocytogenes189.69689549
+PWY490-3	nitrate reduction VI |g__Pseudomonas.s__Pseudomonas_aeruginosa106.11514238
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans26426.136250730004
+DENITRIFICATION-PWY	nitrate reduction I |g__Neisseria.s__Neisseria_meningitidis2149.83026387
+PWY-6432	curcuminoid biosynthesis7.6837259399999995
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Listeria.s__Listeria_monocytogenes1092.57112102
+PWY-3841	folate transformations II|g__Enterococcus.s__Enterococcus_faecalis329.59684996
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii5274.157441079999
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans1347.2718218900002
+PWY-6609	adenine and adenosine salvage III|g__Listeria.s__Listeria_monocytogenes1693.8145206899999
+RHAMCAT-PWY	L rhamnose degradation I|g__Listeria.s__Listeria_monocytogenes620.56760412
+PWY-4981	L proline biosynthesis II |g__Listeria.s__Listeria_monocytogenes1090.96344136
+PWY-6692	Fe oxidation|g__Helicobacter.s__Helicobacter_pylori5199.6751070499995
+ARO-PWY	chorismate biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans3953.8014927100003
+PWY-5347	superpathway of L methionine biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii4991.06518419
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2322.5572081
+PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|g__Clostridium.s__Clostridium_beijerinckii498.43989293000004
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans4230.35307534
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3694.5436984099997
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Neisseria.s__Neisseria_meningitidis2118.06005078
+PWYG-321	mycolate biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans12621.714694780001
+PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Listeria.s__Listeria_monocytogenes229.94001509
+ILEUDEG-PWY	L isoleucine degradation I|g__Acinetobacter.s__Acinetobacter_baumannii5914.0440875
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Listeria.s__Listeria_monocytogenes649.10119287
+SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Deinococcus.s__Deinococcus_radiodurans38000.306414390005
+PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii1611.13108421
+PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii355.24768044
+ARO-PWY	chorismate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii5469.177224810001
+PWY-5863	superpathway of phylloquinol biosynthesis|g__Enterococcus.s__Enterococcus_faecalis356.96050403
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis127.13881245
+PWY0-862	 dodec 5 enoate biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans10865.96351558
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Helicobacter.s__Helicobacter_pylori2089.9057090300003
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii4661.23493736
+PWY0-1586	peptidoglycan maturation |g__Enterococcus.s__Enterococcus_faecalis1740.8126440400001
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Neisseria.s__Neisseria_meningitidis2234.28018428
+PWY-6107	chlorosalicylate degradation|unclassified15.720931590000001
+PWY490-3	nitrate reduction VI |unclassified101.67461918000001
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Clostridium.s__Clostridium_beijerinckii862.66766177
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Listeria.s__Listeria_monocytogenes674.46552511
+PWY-5872	ubiquinol 10 biosynthesis 47.192090269999994
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans5186.98796106
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3258.21564899
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Propionibacterium.s__Propionibacterium_acnes3583.9320671899995
+PWY-6168	flavin biosynthesis III |g__Propionibacterium.s__Propionibacterium_acnes2701.2252453799997
+SO4ASSIM-PWY	sulfate reduction I |g__Deinococcus.s__Deinococcus_radiodurans13390.800976579998
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis271.55477416
+HISTSYN-PWY	L histidine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus1386.8974373600001
+PWY-5692	allantoin degradation to glyoxylate II|g__Enterococcus.s__Enterococcus_faecalis329.86545514
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis968.53544876
+PWY-6936	seleno amino acid biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes2221.81394709
+PWY-5004	superpathway of L citrulline metabolism|unclassified22.955839450000003
+PWY-621	sucrose degradation III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2057.50946908
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Helicobacter.s__Helicobacter_pylori2855.26098778
+PWY-6630	superpathway of L tyrosine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1478.0947277399998
+PWY-7400	L arginine biosynthesis IV |g__Bacteroides.s__Bacteroides_vulgatus2391.41189828
+GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans12450.925848699999
+PWY-5989	stearate biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii12107.905866590001
+PWY-7664	oleate biosynthesis IV |g__Bacteroides.s__Bacteroides_vulgatus2919.18453336
+GALACT-GLUCUROCAT-PWY	superpathway of hexuronide and hexuronate degradation|g__Clostridium.s__Clostridium_beijerinckii976.01685811
+PWY-6737	starch degradation V|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2230.93817399
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Deinococcus.s__Deinococcus_radiodurans12740.21075956
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Enterococcus.s__Enterococcus_faecalis460.21235450000006
+GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3676.2504909900003
+PWY-621	sucrose degradation III |g__Actinomyces.s__Actinomyces_odontolyticus953.82344175
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis1110.16380263
+PWY-6676	superpathway of sulfide oxidation |g__Acinetobacter.s__Acinetobacter_baumannii4507.6008928599995
+PWY-6737	starch degradation V|g__Actinomyces.s__Actinomyces_odontolyticus136.36873365
+PWY-5747	2 methylcitrate cycle II|g__Acinetobacter.s__Acinetobacter_baumannii2239.86221723
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Clostridium.s__Clostridium_beijerinckii529.09121521
+PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Helicobacter.s__Helicobacter_pylori2125.30015657
+PWY-5154	L arginine biosynthesis III |g__Bacteroides.s__Bacteroides_vulgatus2416.58707367
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Deinococcus.s__Deinococcus_radiodurans2604.81840157
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|unclassified47.20142162
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Helicobacter.s__Helicobacter_pylori1717.20475178
+PWY-6385	peptidoglycan biosynthesis III |g__Actinomyces.s__Actinomyces_odontolyticus273.98238845
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis1193.5804195599999
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3315.6292367200003
+PWY-6383	mono trans, poly cis decaprenyl phosphate biosynthesis|unclassified185.6534805
+OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Neisseria.s__Neisseria_meningitidis2048.47317818
+DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis1432.70805934
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus785.4847786099999
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4569.16166358
+PWY-6185	4 methylcatechol degradation |g__Acinetobacter.s__Acinetobacter_baumannii8249.54107307
+PWY-5870	ubiquinol 8 biosynthesis 4842.242473400001
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus1683.4908095199999
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Listeria.s__Listeria_monocytogenes464.82458008
+PWY66-409	superpathway of purine nucleotide salvage|g__Helicobacter.s__Helicobacter_pylori1779.8108926099999
+PWY-7237	myo , chiro  and scillo inositol degradation|g__Listeria.s__Listeria_monocytogenes2690.06231488
+PWY-7400	L arginine biosynthesis IV |g__Acinetobacter.s__Acinetobacter_baumannii4598.3795894899995
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Bacteroides.s__Bacteroides_vulgatus2591.83079993
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Acinetobacter.s__Acinetobacter_baumannii1515.52059389
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Propionibacterium.s__Propionibacterium_acnes3268.03588211
+DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3297.71482624
+PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Helicobacter.s__Helicobacter_pylori2012.73504376
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Acinetobacter.s__Acinetobacter_baumannii7044.7238519699995
+ARGSYN-PWY	L arginine biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii1004.5669610199999
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1570.10152878
+DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Neisseria.s__Neisseria_meningitidis1713.1791626599997
+PWY-5676	acetyl CoA fermentation to butanoate II|g__Bacillus.s__Bacillus_cereus_thuringiensis461.68965141999996
+PWY-5097	L lysine biosynthesis VI|g__Listeria.s__Listeria_monocytogenes1152.09373769
+NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Bacteroides.s__Bacteroides_vulgatus3383.81205644
+PWY-7312	dTDP D &beta; fucofuranose biosynthesis|unclassified49.18491014
+PWY-6700	queuosine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus773.71789786
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes2539.69292577
+PWY-6897	thiamin salvage II|g__Neisseria.s__Neisseria_meningitidis3523.63515029
+3-HYDROXYPHENYLACETATE-DEGRADATION-PWY	4 hydroxyphenylacetate degradation|g__Deinococcus.s__Deinococcus_radiodurans11558.12867124
+PWY-5918	superpathay of heme biosynthesis from glutamate|g__Acinetobacter.s__Acinetobacter_baumannii3739.7416448100003
+PWY-3781	aerobic respiration I |g__Acinetobacter.s__Acinetobacter_baumannii10661.254254039999
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Enterococcus.s__Enterococcus_faecalis256.90178056
+LACTOSECAT-PWY	lactose and galactose degradation I|g__Listeria.s__Listeria_monocytogenes4959.6737146000005
+PWY-4981	L proline biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii747.8314726799999
+VALSYN-PWY	L valine biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis394.39918979000004
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Listeria.s__Listeria_monocytogenes1110.92635079
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans2896.4478049
+GLYCOLYSIS	glycolysis I |g__Bacteroides.s__Bacteroides_vulgatus3462.4748991799997
+URDEGR-PWY	superpathway of allantoin degradation in plants|g__Enterococcus.s__Enterococcus_faecalis329.86545514
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus590.7529794000001
+PWY-5097	L lysine biosynthesis VI|g__Acinetobacter.s__Acinetobacter_baumannii4327.08456345
+PWY-5005	biotin biosynthesis II|unclassified107.08191215000001
+PWY-7046	4 coumarate degradation 20.234594859999998
+PWY-6897	thiamin salvage II|g__Listeria.s__Listeria_monocytogenes857.67432125
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Neisseria.s__Neisseria_meningitidis1185.1500227400002
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3492.8965325100003
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3334.83934901
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Listeria.s__Listeria_monocytogenes2154.6845783
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Neisseria.s__Neisseria_meningitidis1432.60950211
+GLUTORN-PWY	L ornithine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2134.93507841
+CENTFERM-PWY	pyruvate fermentation to butanoate|g__Bacillus.s__Bacillus_cereus_thuringiensis237.91906649999999
+PWY-5659	GDP mannose biosynthesis|g__Helicobacter.s__Helicobacter_pylori1792.8119306100002
+PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |unclassified58.58754289
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Enterococcus.s__Enterococcus_faecalis188.39572178
+PWY0-1479	tRNA processing|g__Acinetobacter.s__Acinetobacter_baumannii769.2103481400001
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Enterococcus.s__Enterococcus_faecalis413.84697579000004
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis1438.7793784599999
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus572.34440161
+PWY0-1296	purine ribonucleosides degradation|g__Listeria.s__Listeria_monocytogenes1662.84626817
+PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Neisseria.s__Neisseria_meningitidis1564.3131826899998
+PWY-5973	cis vaccenate biosynthesis|g__Enterococcus.s__Enterococcus_faecalis569.26858062
+PWY-5873	ubiquinol 7 biosynthesis 4088.6513370400003
+PWY-6151	S adenosyl L methionine cycle I|g__Listeria.s__Listeria_monocytogenes1215.1278429899999
+PWY-7431	aromatic biogenic amine degradation |g__Bacillus.s__Bacillus_cereus_thuringiensis424.38570517
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Listeria.s__Listeria_monocytogenes1159.31555616
+P562-PWY	myo inositol degradation I|g__Listeria.s__Listeria_monocytogenes373.53034793
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii4218.663367749999
+PWY66-389	phytol degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis891.1774319799999
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Neisseria.s__Neisseria_meningitidis1823.9549682
+PWY66-389	phytol degradation|g__Listeria.s__Listeria_monocytogenes853.87077686
+PWY-6700	queuosine biosynthesis|g__Neisseria.s__Neisseria_meningitidis1062.4483269300001
+PWY-7560	methylerythritol phosphate pathway II|g__Acinetobacter.s__Acinetobacter_baumannii3071.89162094
+PWY-5109	2 methylbutanoate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii4642.52154571
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Listeria.s__Listeria_monocytogenes371.08501746
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes2970.73534439
+PWY-6595	superpathway of guanosine nucleotides degradation |g__Deinococcus.s__Deinococcus_radiodurans1552.74588034
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Actinomyces.s__Actinomyces_odontolyticus229.86436462
+PWY0-1241	ADP L glycero &beta; D manno heptose biosynthesis|g__Helicobacter.s__Helicobacter_pylori1950.7806413899998
+PWY-3841	folate transformations II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3990.86337654
+PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Clostridium.s__Clostridium_beijerinckii558.33114648
+P621-PWY	nylon 6 oligomer degradation|unclassified51.25275506
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Actinomyces.s__Actinomyces_odontolyticus521.2808657
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus871.9616952299999
+PWY-7392	taxadiene biosynthesis |g__Propionibacterium.s__Propionibacterium_acnes2628.10374094
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Actinomyces.s__Actinomyces_odontolyticus448.77821278
+PWY-6609	adenine and adenosine salvage III|g__Bacteroides.s__Bacteroides_vulgatus4538.05042232
+PWY-4984	urea cycle|g__Enterococcus.s__Enterococcus_faecalis302.6527651
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus3863.72683273
+NONOXIPENT-PWY	pentose phosphate pathway |g__Propionibacterium.s__Propionibacterium_acnes3276.9715931100004
+URSIN-PWY	ureide biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans3065.51678709
+PWY-6383	mono trans, poly cis decaprenyl phosphate biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus304.27562067
+PWY-5857	ubiquinol 10 biosynthesis |unclassified80.68319092
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii5634.54050805
+PWY66-422	D galactose degradation V |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4800.99634371
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2788.62370201
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Deinococcus.s__Deinococcus_radiodurans10616.72323967
+PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Enterococcus.s__Enterococcus_faecalis1454.29897401
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes2880.5843570899997
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis327.25118449
+PWY66-400	glycolysis VI |g__Actinomyces.s__Actinomyces_odontolyticus829.42911402
+PWY-6936	seleno amino acid biosynthesis|g__Neisseria.s__Neisseria_meningitidis1734.34938129
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Helicobacter.s__Helicobacter_pylori1023.78497992
+PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Neisseria.s__Neisseria_meningitidis2177.86088983
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Deinococcus.s__Deinococcus_radiodurans4453.56148803
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii4710.41203706
+PWY-6700	queuosine biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis373.61665195999996
+PWY-5659	GDP mannose biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus2236.8896058699997
+PWY-5686	UMP biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1546.19718829
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis253.55009936
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis352.03509417
+PWY-7007	methyl ketone biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis260.40248644999997
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Listeria.s__Listeria_monocytogenes257.86807290999997
+PWY-6609	adenine and adenosine salvage III|g__Propionibacterium.s__Propionibacterium_acnes3903.4544711199997
+PWY-7337	10 cis heptadecenoyl CoA degradation |unclassified44.864782240000004
+PWY-6263	superpathway of menaquinol 8 biosynthesis II|unclassified97.69994365
+PWY-5973	cis vaccenate biosynthesis|g__Neisseria.s__Neisseria_meningitidis1425.32253163
+PWY-6270	isoprene biosynthesis I|g__Listeria.s__Listeria_monocytogenes580.14387218
+PWY-5659	GDP mannose biosynthesis|g__Enterococcus.s__Enterococcus_faecalis1348.71953082
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Neisseria.s__Neisseria_meningitidis1507.8159683499998
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Listeria.s__Listeria_monocytogenes846.16316362
+PWY-6182	superpathway of salicylate degradation|g__Acinetobacter.s__Acinetobacter_baumannii4104.56759161
+PWY-6519	8 amino 7 oxononanoate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2929.71604425
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Listeria.s__Listeria_monocytogenes551.4342183900001
+PWY-7254	TCA cycle VII |g__Bacillus.s__Bacillus_cereus_thuringiensis122.0950095
+PWY6666-2	dopamine degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis441.49880079999997
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus1517.85985996
+PWY0-1586	peptidoglycan maturation |g__Actinomyces.s__Actinomyces_odontolyticus1100.06511193
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Deinococcus.s__Deinococcus_radiodurans5064.81852501
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii929.2721818
+PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Acinetobacter.s__Acinetobacter_baumannii8100.55314436
+PWY-5873	ubiquinol 7 biosynthesis |unclassified30.82278484
+P125-PWY	superpathway of  butanediol biosynthesis|g__Neisseria.s__Neisseria_meningitidis1756.4837696299999
+PWY-6151	S adenosyl L methionine cycle I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4940.1797256
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Helicobacter.s__Helicobacter_pylori2379.36305452
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1803.47495706
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Neisseria.s__Neisseria_meningitidis1942.6586736499999
+PWY0-862	 dodec 5 enoate biosynthesis|g__Neisseria.s__Neisseria_meningitidis1210.4285645
+PWY-6700	queuosine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii3017.20477153
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3650.202291
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Neisseria.s__Neisseria_meningitidis1616.6662315500002
+P105-PWY	TCA cycle IV |g__Acinetobacter.s__Acinetobacter_baumannii6616.19714274
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Deinococcus.s__Deinococcus_radiodurans11861.70098695
+PWY-7111	pyruvate fermentation to isobutanol |g__Bacteroides.s__Bacteroides_vulgatus3824.74591187
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Listeria.s__Listeria_monocytogenes805.9987653300001
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4012.44114748
+ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast|g__Acinetobacter.s__Acinetobacter_baumannii3482.2073050900003
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Neisseria.s__Neisseria_meningitidis4361.62391022
+PWY-5686	UMP biosynthesis|g__Listeria.s__Listeria_monocytogenes924.81048861
+COA-PWY-1	coenzyme A biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii4582.59952926
+VALSYN-PWY	L valine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae5478.04779907
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Acinetobacter.s__Acinetobacter_baumannii940.06626776
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Listeria.s__Listeria_monocytogenes683.75223154
+P381-PWY	adenosylcobalamin biosynthesis II 590.24319852
+PWY-5918	superpathay of heme biosynthesis from glutamate|g__Listeria.s__Listeria_monocytogenes540.13146391
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Bacteroides.s__Bacteroides_vulgatus1630.54128348
+PWY-2942	L lysine biosynthesis III|g__Propionibacterium.s__Propionibacterium_acnes2451.58349149
+PWY-7279	aerobic respiration II  (yeast)|g__Neisseria.s__Neisseria_meningitidis3972.6774548500002
+GLUTORN-PWY	L ornithine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans7204.07623979
+PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Deinococcus.s__Deinococcus_radiodurans5457.4520327400005
+GLYOXYLATE-BYPASS	glyoxylate cycle|g__Bacillus.s__Bacillus_cereus_thuringiensis461.25410435000003
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Bacteroides.s__Bacteroides_vulgatus3847.7925586799997
+SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Neisseria.s__Neisseria_meningitidis2608.9348169200002
+PWY-4041	&gamma; glutamyl cycle|g__Acinetobacter.s__Acinetobacter_baumannii4294.632335939999
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Actinomyces.s__Actinomyces_odontolyticus467.34843910999996
+PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii2275.0912219700003
+PWY0-862	 dodec 5 enoate biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2316.65889918
+PWY-7664	oleate biosynthesis IV |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2246.2936632600004
+PWY-5189	tetrapyrrole biosynthesis II |g__Deinococcus.s__Deinococcus_radiodurans939.65853472
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis2900.26644536
+PWY-5484	glycolysis II |g__Bacteroides.s__Bacteroides_vulgatus3167.91509485
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4569.16166358
+PWY66-409	superpathway of purine nucleotide salvage|g__Actinomyces.s__Actinomyces_odontolyticus684.1632169000001
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii5640.53034458
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Neisseria.s__Neisseria_meningitidis1581.46043003
+PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis2291.27775587
+PWY-7663	gondoate biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2608.26127657
+PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii3642.66465324
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Neisseria.s__Neisseria_meningitidis1477.3256492799999
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Listeria.s__Listeria_monocytogenes865.5480145500001
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis1877.38281294
+PWY-5180	toluene degradation I  (via o cresol)|g__Deinococcus.s__Deinococcus_radiodurans25442.43208441
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans15291.38017483
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Listeria.s__Listeria_monocytogenes943.08991771
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Acinetobacter.s__Acinetobacter_baumannii1521.08471591
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Deinococcus.s__Deinococcus_radiodurans32697.02713606
+PWY66-422	D galactose degradation V |g__Listeria.s__Listeria_monocytogenes933.27532313
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Acinetobacter.s__Acinetobacter_baumannii1685.0257744699998
+PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Enterococcus.s__Enterococcus_faecalis264.06357646
+PWY-5136	fatty acid &beta; oxidation II |g__Bacillus.s__Bacillus_cereus_thuringiensis333.73616411999996
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes3419.4743584000003
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Propionibacterium.s__Propionibacterium_acnes3314.03923681
+GLYOXYLATE-BYPASS	glyoxylate cycle|g__Deinococcus.s__Deinococcus_radiodurans15456.254801809999
+PWY-5484	glycolysis II |g__Enterococcus.s__Enterococcus_faecalis610.58230526
+HISDEG-PWY	L histidine degradation I|g__Propionibacterium.s__Propionibacterium_acnes3254.94984635
+PWY-7664	oleate biosynthesis IV |g__Neisseria.s__Neisseria_meningitidis1542.7014671700001
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Acinetobacter.s__Acinetobacter_baumannii11709.252666710001
+PWY-2941	L lysine biosynthesis II|g__Listeria.s__Listeria_monocytogenes1147.13668705
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1365.5103232
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus1995.52087354
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii2611.50264245
+GLYCOLYSIS-TCA-GLYOX-BYPASS	superpathway of glycolysis, pyruvate dehydrogenase, TCA, and glyoxylate bypass|g__Bacillus.s__Bacillus_cereus_thuringiensis224.68964859999997
+PWY0-42	2 methylcitrate cycle I|g__Neisseria.s__Neisseria_meningitidis1851.4557164999999
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3694.5436984099997
+PWY-1861	formaldehyde assimilation II |g__Clostridium.s__Clostridium_beijerinckii2301.97474714
+PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Propionibacterium.s__Propionibacterium_acnes2759.64261694
+COA-PWY	coenzyme A biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans2921.74694522
+PWY-6471	peptidoglycan biosynthesis IV |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3509.16115161
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii3493.8400384700003
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii4210.36014702
+PWY-5973	cis vaccenate biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2689.51366998
+PWY-4981	L proline biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes3312.0019450900004
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis182.80840512
+PWY-6385	peptidoglycan biosynthesis III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3539.62748348
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis1351.86626275
+PWY-7199	pyrimidine deoxyribonucleosides salvage|unclassified634.5245056499999
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2560.0716502
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Neisseria.s__Neisseria_meningitidis1063.82344404
+PWY-6703	preQ0 biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii4224.76703949
+PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1924.67889517
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis1253.1079087
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Listeria.s__Listeria_monocytogenes1217.4708178199999
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Neisseria.s__Neisseria_meningitidis1849.8678758899998
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2016.22270772
+ARO-PWY	chorismate biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii980.4988274799999
+NAD-BIOSYNTHESIS-II	NAD salvage pathway II|unclassified467.26876238
+PWY-7013	L 1,2 propanediol degradation|g__Listeria.s__Listeria_monocytogenes6144.92482493
+ARGSYN-PWY	L arginine biosynthesis I |g__Listeria.s__Listeria_monocytogenes591.3593478600001
+PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Bacteroides.s__Bacteroides_vulgatus1116.61263871
+PWY-6609	adenine and adenosine salvage III|g__Enterococcus.s__Enterococcus_faecalis2972.97776369
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1540.1204721299998
+PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii355.24768044
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis1089.0636836800002
+PWY-7254	TCA cycle VII |g__Helicobacter.s__Helicobacter_pylori1445.7238316
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Neisseria.s__Neisseria_meningitidis3039.38100326
+FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1224.61562815
+TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA|g__Bacillus.s__Bacillus_cereus_thuringiensis254.11899317
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis356.69154802
+P23-PWY	reductive TCA cycle I|unclassified120.29745003000001
+PWY66-389	phytol degradation|g__Bacteroides.s__Bacteroides_vulgatus3589.65739105
+PWY0-1061	superpathway of L alanine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii6715.32451968
+PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Neisseria.s__Neisseria_meningitidis1988.6718631200001
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Helicobacter.s__Helicobacter_pylori1886.59194295
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Bacteroides.s__Bacteroides_vulgatus3955.2132921499997
+PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae7001.729367510001
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus1514.6877209
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Helicobacter.s__Helicobacter_pylori659.1660862
+PWY3O-355	stearate biosynthesis III |g__Acinetobacter.s__Acinetobacter_baumannii9682.188883550001
+COBALSYN-PWY	adenosylcobalamin salvage from cobinamide I|g__Acinetobacter.s__Acinetobacter_baumannii3892.1740654200003
+PWY-6595	superpathway of guanosine nucleotides degradation |g__Enterococcus.s__Enterococcus_faecalis503.82676896
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Listeria.s__Listeria_monocytogenes892.6889789
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2906.34521978
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Clostridium.s__Clostridium_beijerinckii333.74832579
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Enterococcus.s__Enterococcus_faecalis660.55978859
+PWY-6837	fatty acid beta oxidation V |g__Deinococcus.s__Deinococcus_radiodurans7305.906972549999
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Helicobacter.s__Helicobacter_pylori2339.85802285
+PWY-5104	L isoleucine biosynthesis IV|g__Bacillus.s__Bacillus_cereus_thuringiensis248.98176136
+PWY-3661	glycine betaine degradation I|unclassified7.15107345
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus1423.45740514
+COA-PWY	coenzyme A biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus1732.7717274699999
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Neisseria.s__Neisseria_meningitidis2259.09955197
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2332.91425386
+PWY-5188	tetrapyrrole biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii3721.17208828
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Actinomyces.s__Actinomyces_odontolyticus711.05039042
+PWY-6432	curcuminoid biosynthesis|unclassified6.4050150299999995
+PWY-7663	gondoate biosynthesis |g__Helicobacter.s__Helicobacter_pylori3583.60981274
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1590.88372057
+PWY-6612	superpathway of tetrahydrofolate biosynthesis|unclassified35.05681499
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3634.0552373299997
+PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Listeria.s__Listeria_monocytogenes229.94001509
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Bacillus.s__Bacillus_cereus_thuringiensis330.15368723
+PWY-6590	superpathway of Clostridium acetobutylicum acidogenic fermentation|g__Bacillus.s__Bacillus_cereus_thuringiensis219.54398806999998
+CITRULBIO-PWY	L citrulline biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2752.1521865699997
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Bacteroides.s__Bacteroides_vulgatus3946.0444758900003
+PWY-6588	pyruvate fermentation to acetone|unclassified33.20040553
+PWY-5189	tetrapyrrole biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii3493.99588639
+PWY-6309	L tryptophan degradation XI |g__Acinetobacter.s__Acinetobacter_baumannii4656.8427066799995
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Deinococcus.s__Deinococcus_radiodurans477.37041110999996
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3211.71845669
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Helicobacter.s__Helicobacter_pylori2519.3968790500003
+RUMP-PWY	formaldehyde oxidation I|unclassified30.08291548
+ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Neisseria.s__Neisseria_meningitidis3303.8293320000002
+PWY-5509	adenosylcobalamin biosynthesis from cobyrinate a,c diamide I|unclassified60.786013370000006
+PWY-7118	chitin degradation to ethanol|g__Pseudomonas.s__Pseudomonas_aeruginosa257.67431233
+PWY-5103	L isoleucine biosynthesis III|g__Propionibacterium.s__Propionibacterium_acnes3291.34876197
+PWY-5989	stearate biosynthesis II |g__Neisseria.s__Neisseria_meningitidis1639.78289262
+DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus454.56516364
+PWY-5103	L isoleucine biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3873.13594163
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Helicobacter.s__Helicobacter_pylori2256.50698827
+PWY-7663	gondoate biosynthesis |g__Propionibacterium.s__Propionibacterium_acnes3688.02537208
+PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Neisseria.s__Neisseria_meningitidis2177.86088983
+PWY-7376	cobyrinate a,c diamide biosynthesis II (late cobalt incorporation)731.72118045
+PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Neisseria.s__Neisseria_meningitidis1646.9158386699999
+PWY-6892	thiazole biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus3697.13917982
+PWY-5347	superpathway of L methionine biosynthesis |g__Bacteroides.s__Bacteroides_vulgatus3780.06974309
+GLUTORN-PWY	L ornithine biosynthesis|g__Listeria.s__Listeria_monocytogenes524.2422424599999
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii4474.32771701
+NONOXIPENT-PWY	pentose phosphate pathway |g__Helicobacter.s__Helicobacter_pylori2216.02212993
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Helicobacter.s__Helicobacter_pylori2317.59109897
+HISTSYN-PWY	L histidine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans8094.38299182
+ARO-PWY	chorismate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2155.90225826
+THISYN-PWY	superpathway of thiamin diphosphate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2038.3072711
+PWY-7268	NAD NADP NADH NADPH cytosolic interconversion |unclassified76.01809708
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans17970.81876788
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Listeria.s__Listeria_monocytogenes724.9534438999999
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis446.23917890999996
+HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae5148.01675772
+P101-PWY	ectoine biosynthesis488.42493718000003
+METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis287.24120408
+METSYN-PWY	L homoserine and L methionine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3688.41411995
+PWY3O-19	ubiquinol 6 biosynthesis from 4 hydroxybenzoate |unclassified30.82278484
+PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Helicobacter.s__Helicobacter_pylori1869.14043309
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii869.37459409
+PWY-1042	glycolysis IV |g__Propionibacterium.s__Propionibacterium_acnes4307.94946602
+P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate|g__Listeria.s__Listeria_monocytogenes859.88640122
+PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes2772.06628788
+PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|g__Enterococcus.s__Enterococcus_faecalis478.01050193
+PWY66-389	phytol degradation|g__Neisseria.s__Neisseria_meningitidis1919.90040023
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii4357.20326108
+PWY-6630	superpathway of L tyrosine biosynthesis|g__Enterococcus.s__Enterococcus_faecalis623.59318397
+UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |unclassified33.863270140000004
+COA-PWY-1	coenzyme A biosynthesis II |g__Bacteroides.s__Bacteroides_vulgatus2565.89100831
+GOLPDLCAT-PWY	superpathway of glycerol degradation to 1,3 propanediol|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae938.78660293
+HEMESYN2-PWY	heme biosynthesis II |g__Actinomyces.s__Actinomyces_odontolyticus468.67766323
+PWY-6703	preQ0 biosynthesis|g__Helicobacter.s__Helicobacter_pylori1604.9533917400001
+TRNA-CHARGING-PWY	tRNA charging|g__Enterococcus.s__Enterococcus_faecalis549.60954024
+PWY-6071	superpathway of phenylethylamine degradation|unclassified106.14250990000001
+LYSINE-AMINOAD-PWY	L lysine biosynthesis IV|unclassified24.98537656
+PWY-6471	peptidoglycan biosynthesis IV |g__Enterococcus.s__Enterococcus_faecalis424.11695223
+PWY-6936	seleno amino acid biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus822.84423683
+CITRULBIO-PWY	L citrulline biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans16325.9035764
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Neisseria.s__Neisseria_meningitidis602.97052842
+PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Listeria.s__Listeria_monocytogenes1327.26662345
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus1869.6361689900002
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3038.7791516400002
+ARO-PWY	chorismate biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis610.73358302
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Actinomyces.s__Actinomyces_odontolyticus268.6261334
+NONOXIPENT-PWY	pentose phosphate pathway |g__Enterococcus.s__Enterococcus_faecalis741.54553744
+PWY66-400	glycolysis VI |g__Bacillus.s__Bacillus_cereus_thuringiensis132.0751521
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Listeria.s__Listeria_monocytogenes957.31899135
+PWY-6168	flavin biosynthesis III |g__Deinococcus.s__Deinococcus_radiodurans8904.07875731
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus4452.561643020001
+DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes3017.8756785200003
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Bacillus.s__Bacillus_cereus_thuringiensis219.45056309
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Neisseria.s__Neisseria_meningitidis3660.4027848500004
+PWY-5384	sucrose degradation IV |unclassified98.4931877
+GLYCOLYSIS	glycolysis I |g__Neisseria.s__Neisseria_meningitidis1222.5398930200001
+PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Helicobacter.s__Helicobacter_pylori2171.40647194
+PWY66-422	D galactose degradation V |g__Enterococcus.s__Enterococcus_faecalis1346.93451983
+PWY-6151	S adenosyl L methionine cycle I|g__Bacteroides.s__Bacteroides_vulgatus1930.48481823
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes786.6136073499999
+PWY-6936	seleno amino acid biosynthesis|g__Enterococcus.s__Enterococcus_faecalis575.37669038
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Helicobacter.s__Helicobacter_pylori3534.84565337
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3600.079271
+FAO-PWY	fatty acid &beta; oxidation I|g__Bacillus.s__Bacillus_cereus_thuringiensis315.6713757
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Actinomyces.s__Actinomyces_odontolyticus410.76617025999997
+VALSYN-PWY	L valine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2437.7340308800003
+PWY-6700	queuosine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii441.31775422
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3233.78270657
+PWY-5686	UMP biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans3348.84088261
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii5337.770663140001
+MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3304.6541386999997
+PWYG-321	mycolate biosynthesis|g__Listeria.s__Listeria_monocytogenes727.33694636
+PWY-6588	pyruvate fermentation to acetone|g__Helicobacter.s__Helicobacter_pylori1842.0258638699997
+PWY-7371	1,4 dihydroxy 6 naphthoate biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans20409.24635855
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis225.61787840999997
+PWY-6313	serotonin degradation|g__Bacteroides.s__Bacteroides_vulgatus1881.1197174699998
+PWY-5189	tetrapyrrole biosynthesis II |g__Listeria.s__Listeria_monocytogenes631.96864874
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans24119.73956285
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii2245.4387836700002
+PWY0-1061	superpathway of L alanine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2801.26577532
+GLYCOLYSIS	glycolysis I |g__Bacillus.s__Bacillus_cereus_thuringiensis228.63518209999998
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes3888.6461964600003
+PWY-5791	1,4 dihydroxy 2 naphthoate biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis325.36182957
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3554.91366097
+ARO-PWY	chorismate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis2091.7266465800003
+PWY-6703	preQ0 biosynthesis|g__Neisseria.s__Neisseria_meningitidis1536.69973225
+PWY-7371	1,4 dihydroxy 6 naphthoate biosynthesis II|g__Helicobacter.s__Helicobacter_pylori1996.39432254
+PWY-5189	tetrapyrrole biosynthesis II |g__Neisseria.s__Neisseria_meningitidis1653.5872094
+PWY-5973	cis vaccenate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii7639.28643394
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2768.45019645
+PWY490-3	nitrate reduction VI |g__Acinetobacter.s__Acinetobacter_baumannii3869.15321071
+PPGPPMET-PWY	ppGpp biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus4296.44660508
+PWY-6151	S adenosyl L methionine cycle I|g__Helicobacter.s__Helicobacter_pylori1326.37834154
+PWY66-422	D galactose degradation V |g__Propionibacterium.s__Propionibacterium_acnes3629.85266072
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|unclassified104.03452488
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Propionibacterium.s__Propionibacterium_acnes3046.7808873900003
+PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Neisseria.s__Neisseria_meningitidis2580.52125405
+CENTFERM-PWY	pyruvate fermentation to butanoate|unclassified22.7761348
+PWY-7279	aerobic respiration II  (yeast)|g__Bacillus.s__Bacillus_cereus_thuringiensis526.2898180899999
+PWY-2942	L lysine biosynthesis III|g__Listeria.s__Listeria_monocytogenes812.62846392
+PWY-6608	guanosine nucleotides degradation III|g__Enterococcus.s__Enterococcus_faecalis432.01126854
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1052.52732835
+PWY-1042	glycolysis IV |g__Listeria.s__Listeria_monocytogenes1563.6784061
+PWY-6703	preQ0 biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus1694.0118266999998
+GLUDEG-I-PWY	GABA shunt|g__Bacillus.s__Bacillus_cereus_thuringiensis97.85981541
+UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii2824.56945048
+TCA	TCA cycle I |g__Neisseria.s__Neisseria_meningitidis2300.02836165
+PWY-7254	TCA cycle VII |g__Neisseria.s__Neisseria_meningitidis1771.6248297700001
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans27794.70447634
+PWY-7318	dTDP 3 acetamido 3,6 dideoxy &alpha; D glucose biosynthesis|g__Clostridium.s__Clostridium_beijerinckii1226.96188201
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2063.0371368399997
+PWY-2941	L lysine biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus1659.93834691
+SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii5539.6446928899995
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3510.57739774
+PWY-5004	superpathway of L citrulline metabolism|g__Deinococcus.s__Deinococcus_radiodurans7207.21097456
+PWY-7111	pyruvate fermentation to isobutanol |g__Listeria.s__Listeria_monocytogenes1849.0609262700002
+PYRIDNUCSAL-PWY	NAD salvage pathway I|g__Propionibacterium.s__Propionibacterium_acnes2364.47866594
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Bacillus.s__Bacillus_cereus_thuringiensis482.28522069
+PWY-6700	queuosine biosynthesis|g__Helicobacter.s__Helicobacter_pylori2655.07607868
+PWY-922	mevalonate pathway I|g__Listeria.s__Listeria_monocytogenes435.53966108
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Listeria.s__Listeria_monocytogenes648.03910126
+PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Enterococcus.s__Enterococcus_faecalis406.73179148
+PWY-5747	2 methylcitrate cycle II|g__Neisseria.s__Neisseria_meningitidis1851.4557164999999
+PWY-2942	L lysine biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2065.20808862
+PWY-5659	GDP mannose biosynthesis|g__Neisseria.s__Neisseria_meningitidis1506.4361728
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Bacillus.s__Bacillus_cereus_thuringiensis162.66634607999998
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes3029.41604745
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Listeria.s__Listeria_monocytogenes1010.4643341599999
+PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |g__Acinetobacter.s__Acinetobacter_baumannii8236.69153683
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Listeria.s__Listeria_monocytogenes1051.56655037
+PWY-6138	CMP N acetylneuraminate biosynthesis I |g__Neisseria.s__Neisseria_meningitidis588.50176473
+PWY-1042	glycolysis IV |g__Bacillus.s__Bacillus_cereus_thuringiensis200.08888543999998
+DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Helicobacter.s__Helicobacter_pylori2405.38579191
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus656.48352888
+PWY-5097	L lysine biosynthesis VI|g__Helicobacter.s__Helicobacter_pylori2213.9409849500003
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus2991.65214015
+PWY-4321	L glutamate degradation IV|g__Bacillus.s__Bacillus_cereus_thuringiensis114.52656436
+PWY-6859	all trans farnesol biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa244.3911918
+PWY-5659	GDP mannose biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1479.21878485
+PWY-4702	phytate degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa81.30081301
+P185-PWY	formaldehyde assimilation III |g__Enterococcus.s__Enterococcus_faecalis829.23998167
+PWY-622	starch biosynthesis76.84320984
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Neisseria.s__Neisseria_meningitidis1978.55815874
+PWY-5178	toluene degradation IV  (via catechol)|unclassified10.99339453
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii5271.8767020000005
+PWY0-1061	superpathway of L alanine biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis215.29563029
+OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Clostridium.s__Clostridium_beijerinckii485.31186564000006
+PWY-6385	peptidoglycan biosynthesis III |g__Bacteroides.s__Bacteroides_vulgatus2256.03670313
+GLYCOLYSIS	glycolysis I |g__Listeria.s__Listeria_monocytogenes919.06868193
+P108-PWY	pyruvate fermentation to propanoate I|g__Bacteroides.s__Bacteroides_vulgatus638.38123666
+PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus3236.23215836
+PWY-6859	all trans farnesol biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes2277.93495433
+PWY-7389	superpathway of anaerobic energy metabolism |unclassified95.22735418
+NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Neisseria.s__Neisseria_meningitidis2354.85936337
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans1152.1858233
+PWY-7385	1,3 propanediol biosynthesis |g__Listeria.s__Listeria_monocytogenes304.84468158000004
+PWY-6519	8 amino 7 oxononanoate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis1979.89944847
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2439.3441849799997
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Enterococcus.s__Enterococcus_faecalis1039.65107419
+PWY-5837	1,4 dihydroxy 2 naphthoate biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis325.36182957
+PWY-6897	thiamin salvage II|g__Enterococcus.s__Enterococcus_faecalis720.61185672
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis246.05363508
+NONOXIPENT-PWY	pentose phosphate pathway |g__Listeria.s__Listeria_monocytogenes5326.38566827
+PWY-7664	oleate biosynthesis IV |g__Listeria.s__Listeria_monocytogenes702.92830383
+PWY-6317	galactose degradation I |g__Listeria.s__Listeria_monocytogenes918.92772969
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Acinetobacter.s__Acinetobacter_baumannii5640.402489120001
+RIBOSYN2-PWY	flavin biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus1755.11205966
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Listeria.s__Listeria_monocytogenes615.08911013
+PWY0-862	 dodec 5 enoate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii10624.66190223
+PWY-6143	CMP pseudaminate biosynthesis|g__Helicobacter.s__Helicobacter_pylori2316.27428647
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes3633.0450423400002
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Enterococcus.s__Enterococcus_faecalis758.81838047
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii5022.943370929999
+PWY-6969	TCA cycle V (2 oxoglutarate6661.27149826
+PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Helicobacter.s__Helicobacter_pylori1869.14043309
+PWY-4041	&gamma; glutamyl cycle|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae757.61750124
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Listeria.s__Listeria_monocytogenes943.08991771
+COA-PWY-1	coenzyme A biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis268.28229262
+PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis2625.62032344
+PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii3392.3394651800004
+PWY-7383	anaerobic energy metabolism |g__Acinetobacter.s__Acinetobacter_baumannii6224.64112071
+PWY-5941	glycogen degradation II |g__Bacteroides.s__Bacteroides_vulgatus2825.30293218
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus2174.3617357000003
+GLUCONEO-PWY	gluconeogenesis I|g__Listeria.s__Listeria_monocytogenes924.59155057
+P164-PWY	purine nucleobases degradation I |g__Enterococcus.s__Enterococcus_faecalis283.12988518000003
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Helicobacter.s__Helicobacter_pylori3547.3549154499997
+PWY-5484	glycolysis II |g__Neisseria.s__Neisseria_meningitidis1200.06400315
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |unclassified100.54547128
+P42-PWY	incomplete reductive TCA cycle|unclassified120.51624639
+PWY-1861	formaldehyde assimilation II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1543.74547434
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Deinococcus.s__Deinococcus_radiodurans10004.54621138
+PWY-5097	L lysine biosynthesis VI|g__Enterococcus.s__Enterococcus_faecalis366.92784336
+PWY-6692	Fe oxidation|g__Listeria.s__Listeria_monocytogenes2129.88577958
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Listeria.s__Listeria_monocytogenes1057.79662774
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii1970.22142565
+LACTOSECAT-PWY	lactose and galactose degradation I|g__Enterococcus.s__Enterococcus_faecalis1134.16719881
+PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|g__Acinetobacter.s__Acinetobacter_baumannii6144.30410529
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Deinococcus.s__Deinococcus_radiodurans2746.7295222899997
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Neisseria.s__Neisseria_meningitidis1703.07371128
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Enterococcus.s__Enterococcus_faecalis871.8332934099999
+PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii814.4853197
+PWY-922	mevalonate pathway I|g__Enterococcus.s__Enterococcus_faecalis316.45347369999996
+PWY-7200	superpathway of pyrimidine deoxyribonucleoside salvage|unclassified55.499301960000004
+PWY-7400	L arginine biosynthesis IV |g__Propionibacterium.s__Propionibacterium_acnes2986.12437976
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Listeria.s__Listeria_monocytogenes408.30408098
+COA-PWY-1	coenzyme A biosynthesis II |g__Bacillus.s__Bacillus_cereus_thuringiensis212.93224172
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Bacteroides.s__Bacteroides_vulgatus2676.68898356
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Propionibacterium.s__Propionibacterium_acnes3089.26224286
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii613.3704752799999
+PWY-6307	L tryptophan degradation X |g__Bacillus.s__Bacillus_cereus_thuringiensis496.30763067
+COA-PWY	coenzyme A biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis189.88556864
+PWY66-400	glycolysis VI |g__Enterococcus.s__Enterococcus_faecalis656.31986706
+PWY-7242	D fructuronate degradation|g__Bacteroides.s__Bacteroides_vulgatus4462.45438141
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Listeria.s__Listeria_monocytogenes543.64005545
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Helicobacter.s__Helicobacter_pylori1543.56538931
+PWY-3841	folate transformations II|g__Propionibacterium.s__Propionibacterium_acnes2816.89004594
+PWY-6284	superpathway of unsaturated fatty acids biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2290.81890268
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Listeria.s__Listeria_monocytogenes594.3167834799999
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae5478.04779907
+PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Helicobacter.s__Helicobacter_pylori3306.5442179100005
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Enterococcus.s__Enterococcus_faecalis756.18452129
+PWY-7401	crotonate fermentation 2596.8402211499997
+PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii2469.92901398
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus2638.4733954400003
+PWY-1042	glycolysis IV |g__Bacteroides.s__Bacteroides_vulgatus6063.94405517
+COA-PWY-1	coenzyme A biosynthesis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2715.2663343
+PWY-6317	galactose degradation I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4329.04505843
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis175.6805476
+PWY-7560	methylerythritol phosphate pathway II|g__Propionibacterium.s__Propionibacterium_acnes3245.38709518
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Enterococcus.s__Enterococcus_faecalis785.5267535300001
+PWY-6803	phosphatidylcholine acyl editing|unclassified188.31453208
+PWY-1861	formaldehyde assimilation II |g__Enterococcus.s__Enterococcus_faecalis555.35837536
+PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Clostridium.s__Clostridium_beijerinckii627.87783768
+METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Acinetobacter.s__Acinetobacter_baumannii3825.8050293700003
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1682.74645344
+PWY-5659	GDP mannose biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus5067.97426256
+PWY-3781	aerobic respiration I |g__Listeria.s__Listeria_monocytogenes1963.07167087
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii454.78410567000003
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Neisseria.s__Neisseria_meningitidis1248.87254256
+P108-PWY	pyruvate fermentation to propanoate I|g__Propionibacterium.s__Propionibacterium_acnes4083.37128235
+GALACT-GLUCUROCAT-PWY	superpathway of hexuronide and hexuronate degradation|g__Bacteroides.s__Bacteroides_vulgatus2806.8847141799997
+PWY-1042	glycolysis IV |g__Enterococcus.s__Enterococcus_faecalis766.4597577300001
+PWY-5265	peptidoglycan biosynthesis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3243.0112498500002
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus632.35178259
+TRNA-CHARGING-PWY	tRNA charging|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2645.56732006
+GLUTORN-PWY	L ornithine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii931.2624167399999
+HSERMETANA-PWY	L methionine biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae529.30612432
+PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2350.87466711
+PWY-5686	UMP biosynthesis|g__Helicobacter.s__Helicobacter_pylori2198.45138731
+PWY-5871	ubiquinol 9 biosynthesis |unclassified30.82278484
+PWY-2941	L lysine biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis393.61655046
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Listeria.s__Listeria_monocytogenes1071.71634204
+PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Bacillus.s__Bacillus_cereus_thuringiensis600.82529737
+PWY-241	C4 photosynthetic carbon assimilation cycle, NADP ME type|g__Enterococcus.s__Enterococcus_faecalis376.84546738
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes3419.4743584000003
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Enterococcus.s__Enterococcus_faecalis811.47075606
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Deinococcus.s__Deinococcus_radiodurans2245.91715426
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii6644.12143014
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus638.47594243
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes3404.14373264
+PWY-4984	urea cycle|g__Deinococcus.s__Deinococcus_radiodurans16281.14510385
+PWY-7560	methylerythritol phosphate pathway II|g__Helicobacter.s__Helicobacter_pylori1985.27116196
+PWY-5855	ubiquinol 7 biosynthesis |g__Neisseria.s__Neisseria_meningitidis1287.84428004
+TRNA-CHARGING-PWY	tRNA charging|g__Propionibacterium.s__Propionibacterium_acnes3304.34189904
+PWY-5188	tetrapyrrole biosynthesis I |g__Actinomyces.s__Actinomyces_odontolyticus182.17501416
+PWY-5104	L isoleucine biosynthesis IV|g__Listeria.s__Listeria_monocytogenes697.94796423
+PWY-6876	isopropanol biosynthesis|unclassified13.37483633
+PWY-5705	allantoin degradation to glyoxylate III|g__Enterococcus.s__Enterococcus_faecalis505.30548539
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus437.87470702
+PWY-6876	isopropanol biosynthesis|g__Clostridium.s__Clostridium_beijerinckii785.51879058
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Listeria.s__Listeria_monocytogenes938.2274715
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Acinetobacter.s__Acinetobacter_baumannii5476.26314845
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus3161.26099242
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Listeria.s__Listeria_monocytogenes1065.4996650799999
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii386.81457205
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Bacillus.s__Bacillus_cereus_thuringiensis235.5226059
+PWY-6700	queuosine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1974.10098045
+PWY-5690	TCA cycle II |g__Acinetobacter.s__Acinetobacter_baumannii7574.04416326
+PWY-7560	methylerythritol phosphate pathway II|g__Deinococcus.s__Deinococcus_radiodurans11173.53070745
+PWY-6151	S adenosyl L methionine cycle I|g__Actinomyces.s__Actinomyces_odontolyticus2074.89787029
+PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus1828.39826573
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Enterococcus.s__Enterococcus_faecalis634.03974448
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Helicobacter.s__Helicobacter_pylori3226.32252327
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Listeria.s__Listeria_monocytogenes1827.8855125500002
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Neisseria.s__Neisseria_meningitidis1233.5721145999998
+PWY-5097	L lysine biosynthesis VI|g__Bacteroides.s__Bacteroides_vulgatus2906.70871254
+PWY-5392	reductive TCA cycle II|unclassified13.94276095
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Enterococcus.s__Enterococcus_faecalis776.86229121
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes3582.76775485
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus2160.13104462
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Neisseria.s__Neisseria_meningitidis1824.60974025
+PWY-6527	stachyose degradation|g__Enterococcus.s__Enterococcus_faecalis957.9092040800001
+ARGORNPROST-PWY	arginine, ornithine and proline interconversion|g__Enterococcus.s__Enterococcus_faecalis229.86451776
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Neisseria.s__Neisseria_meningitidis3273.42533276
+PWY-5367	petroselinate biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2665.0040821000002
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans14335.86811719
+COA-PWY	coenzyme A biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus1577.9780493800001
+PWY-6936	seleno amino acid biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus3228.8717297499998
+PWYG-321	mycolate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii13749.65830404
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Deinococcus.s__Deinococcus_radiodurans2401.85536336
+METSYN-PWY	L homoserine and L methionine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii4363.14275065
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis1264.65018972
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Neisseria.s__Neisseria_meningitidis2288.34277634
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans16290.469502470001
+HISDEG-PWY	L histidine degradation I|g__Bacteroides.s__Bacteroides_vulgatus1711.35052183
+PWY-3841	folate transformations II|g__Neisseria.s__Neisseria_meningitidis2310.682919
+PWY-5918	superpathay of heme biosynthesis from glutamate|g__Neisseria.s__Neisseria_meningitidis1691.83225145
+GLYCOLYSIS	glycolysis I |g__Enterococcus.s__Enterococcus_faecalis688.9962693900001
+PWY-5104	L isoleucine biosynthesis IV|g__Bacteroides.s__Bacteroides_vulgatus2752.89165233
+PWY0-1296	purine ribonucleosides degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis728.11960343
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis394.39918979000004
+PPGPPMET-PWY	ppGpp biosynthesis|g__Helicobacter.s__Helicobacter_pylori2628.5944911
+PWY-6737	starch degradation V|g__Propionibacterium.s__Propionibacterium_acnes2410.9626533
+PWY-4981	L proline biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis157.26884794
+PWY0-1586	peptidoglycan maturation |g__Listeria.s__Listeria_monocytogenes2507.99823245
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Propionibacterium.s__Propionibacterium_acnes4036.7977981400004
+PWY-2942	L lysine biosynthesis III|g__Neisseria.s__Neisseria_meningitidis1048.79899213
+PWY-7560	methylerythritol phosphate pathway II|g__Neisseria.s__Neisseria_meningitidis2354.85936337
+VALDEG-PWY	L valine degradation I|g__Bacillus.s__Bacillus_cereus_thuringiensis198.82859204000002
+COBALSYN-PWY	adenosylcobalamin salvage from cobinamide I|g__Bacteroides.s__Bacteroides_vulgatus2061.10774563
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Enterococcus.s__Enterococcus_faecalis1735.8151961
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Listeria.s__Listeria_monocytogenes1719.63205427
+PWY-4981	L proline biosynthesis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2016.12588576
+PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae973.0400078700001
+VALSYN-PWY	L valine biosynthesis|g__Neisseria.s__Neisseria_meningitidis4169.69983143
+PWY-6859	all trans farnesol biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus295.76188033
+PWY-7111	pyruvate fermentation to isobutanol |g__Bacillus.s__Bacillus_cereus_thuringiensis614.53647514
+HSERMETANA-PWY	L methionine biosynthesis III|g__Bacteroides.s__Bacteroides_vulgatus3812.82018369
+PWY-6151	S adenosyl L methionine cycle I|g__Neisseria.s__Neisseria_meningitidis2231.41328599
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Enterococcus.s__Enterococcus_faecalis883.9300786700001
+PWYG-321	mycolate biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus3474.61580676
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans16996.91150724
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Listeria.s__Listeria_monocytogenes709.39108205
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3919.43241173
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3239.5570203299994
+OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Enterococcus.s__Enterococcus_faecalis1246.58227109
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4089.5408607500003
+PWY-5913	TCA cycle VI |g__Neisseria.s__Neisseria_meningitidis7220.948835839999
+PWY66-398	TCA cycle III |g__Acinetobacter.s__Acinetobacter_baumannii6394.60829047
+PWY-6385	peptidoglycan biosynthesis III |g__Enterococcus.s__Enterococcus_faecalis462.48782690999997
+PWY-621	sucrose degradation III |g__Enterococcus.s__Enterococcus_faecalis576.34647923
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes2829.07681544
+P441-PWY	superpathway of N acetylneuraminate degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2096.22292169
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3995.17197201
+PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes3099.29029743
+PWY-5676	acetyl CoA fermentation to butanoate II|g__Deinococcus.s__Deinococcus_radiodurans22572.09646336
+FERMENTATION-PWY	mixed acid fermentation|g__Neisseria.s__Neisseria_meningitidis2090.08061142
+PWY-5384	sucrose degradation IV |g__Propionibacterium.s__Propionibacterium_acnes2235.7331555799997
+PWY-2941	L lysine biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1632.7000918100002
+COBALSYN-PWY	adenosylcobalamin salvage from cobinamide I|unclassified107.08229348
+PWY0-1241	ADP L glycero &beta; D manno heptose biosynthesis|unclassified85.07549469
+PWY66-400	glycolysis VI |g__Listeria.s__Listeria_monocytogenes824.9649956200001
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii414.66961139
+UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans17118.93412323
+KETOGLUCONMET-PWY	ketogluconate metabolism|g__Acinetobacter.s__Acinetobacter_baumannii4879.21971687
+PWY-5973	cis vaccenate biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans11241.5652532
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis962.22305399
+PWY-6737	starch degradation V|g__Bacteroides.s__Bacteroides_vulgatus3423.89669392
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Helicobacter.s__Helicobacter_pylori1535.34368012
+PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes1329.30189898
+PWY-6383	mono trans, poly cis decaprenyl phosphate biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes3275.6162132900004
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Helicobacter.s__Helicobacter_pylori2187.8829487099997
+PWY66-422	D galactose degradation V |g__Bacteroides.s__Bacteroides_vulgatus3445.4702269400004
+PWY-5028	L histidine degradation II|g__Acinetobacter.s__Acinetobacter_baumannii5443.72177929
+PWY-6936	seleno amino acid biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii6980.34109317
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Helicobacter.s__Helicobacter_pylori3229.2140177999995
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3468.0978136
+PWY-6590	superpathway of Clostridium acetobutylicum acidogenic fermentation|unclassified28.863440439999998
+PWY-7560	methylerythritol phosphate pathway II|g__Listeria.s__Listeria_monocytogenes764.21860024
+PWY-5989	stearate biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis538.05412867
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis582.95545746
+PENTOSE-P-PWY	pentose phosphate pathway|g__Enterococcus.s__Enterococcus_faecalis672.54643518
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2819.88190725
+PWY-7400	L arginine biosynthesis IV |g__Clostridium.s__Clostridium_beijerinckii1006.02191784
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Propionibacterium.s__Propionibacterium_acnes640.34891279
+ANAEROFRUCAT-PWY	homolactic fermentation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1679.80086076
+PWY-6168	flavin biosynthesis III |g__Acinetobacter.s__Acinetobacter_baumannii2824.41834145
+PWY-6305	putrescine biosynthesis IV|g__Neisseria.s__Neisseria_meningitidis1468.02297349
+P241-PWY	coenzyme B biosynthesis|unclassified79.24405734999999
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Helicobacter.s__Helicobacter_pylori4205.54671787
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Listeria.s__Listeria_monocytogenes902.33827889
+PWY-7383	anaerobic energy metabolism |unclassified138.33469461
+PWY-6385	peptidoglycan biosynthesis III |g__Propionibacterium.s__Propionibacterium_acnes3446.61878373
+GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Enterococcus.s__Enterococcus_faecalis1746.83710226
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Listeria.s__Listeria_monocytogenes1018.9157648400001
+PWY-6895	superpathway of thiamin diphosphate biosynthesis II|unclassified64.56529023
+GLUCONEO-PWY	gluconeogenesis I|g__Enterococcus.s__Enterococcus_faecalis573.43354197
+PWY-5941	glycogen degradation II 6008.66416468
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Neisseria.s__Neisseria_meningitidis1016.73003305
+PWY-7663	gondoate biosynthesis |g__Neisseria.s__Neisseria_meningitidis4680.40950351
+PWY0-1261	anhydromuropeptides recycling|g__Neisseria.s__Neisseria_meningitidis2536.13348689
+PWY-7003	glycerol degradation to butanol|unclassified77.73337386
+PWY-6692	Fe oxidation|g__Bacillus.s__Bacillus_cereus_thuringiensis705.66946551
+PWY-5182	toluene degradation II  (via 4 methylcatechol)|g__Deinococcus.s__Deinococcus_radiodurans25442.43208441
+GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|g__Bacteroides.s__Bacteroides_vulgatus3288.91968366
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Actinomyces.s__Actinomyces_odontolyticus388.51319454
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Neisseria.s__Neisseria_meningitidis2601.57208585
+PWY-7318	dTDP 3 acetamido 3,6 dideoxy &alpha; D glucose biosynthesis1749.9474758600002
+VALDEG-PWY	L valine degradation I|g__Acinetobacter.s__Acinetobacter_baumannii10233.03398665
+PWY-6396	superpathway of 2,3 butanediol biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii5538.41674722
+GLUCONEO-PWY	gluconeogenesis I|g__Neisseria.s__Neisseria_meningitidis1500.25755619
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii3278.3838893
+PWY-6609	adenine and adenosine salvage III|g__Actinomyces.s__Actinomyces_odontolyticus2284.09762464
+PWY-7383	anaerobic energy metabolism |g__Actinomyces.s__Actinomyces_odontolyticus186.75591441999998
+PWY-5030	L histidine degradation III6335.53967079
+PWY-5431	aromatic compounds degradation via &beta; ketoadipate|g__Acinetobacter.s__Acinetobacter_baumannii5840.29024826
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Bacillus.s__Bacillus_cereus_thuringiensis192.06414662
+PWY-6837	fatty acid beta oxidation V |g__Bacillus.s__Bacillus_cereus_thuringiensis164.98391315
+PWY-5989	stearate biosynthesis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2115.66746999
+PWY-7111	pyruvate fermentation to isobutanol |g__Actinomyces.s__Actinomyces_odontolyticus1185.33298694
+PWY0-1061	superpathway of L alanine biosynthesis|g__Neisseria.s__Neisseria_meningitidis2817.77583385
+PWY-6859	all trans farnesol biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis153.20736804999999
+ARO-PWY	chorismate biosynthesis I|g__Listeria.s__Listeria_monocytogenes756.73018875
+GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Propionibacterium.s__Propionibacterium_acnes2849.08250393
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2232.35229499
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis238.98263374
+ARGSYN-PWY	L arginine biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus2387.40919394
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Listeria.s__Listeria_monocytogenes1225.94354329
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Propionibacterium.s__Propionibacterium_acnes1657.57389233
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Helicobacter.s__Helicobacter_pylori3074.40860677
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans4405.81935013
+PWY-6318	L phenylalanine degradation IV |g__Clostridium.s__Clostridium_beijerinckii530.61378177
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus896.0764428599999
+PWY-2941	L lysine biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii4679.05222193
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Enterococcus.s__Enterococcus_faecalis1023.63028583
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis1938.2925238999999
+PWY-6353	purine nucleotides degradation II |g__Deinococcus.s__Deinococcus_radiodurans11348.75644596
+GLUCONEO-PWY	gluconeogenesis I|g__Bacteroides.s__Bacteroides_vulgatus3386.55089198
+COA-PWY-1	coenzyme A biosynthesis II |g__Actinomyces.s__Actinomyces_odontolyticus1895.63595374
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae5454.84941625
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes2633.1294405400004
+PWY-6629	superpathway of L tryptophan biosynthesis|unclassified179.05261417
+PWY-5989	stearate biosynthesis II |g__Bacteroides.s__Bacteroides_vulgatus3082.2147356
+HSERMETANA-PWY	L methionine biosynthesis III|g__Listeria.s__Listeria_monocytogenes1613.77353311
+PWY-6859	all trans farnesol biosynthesis|g__Enterococcus.s__Enterococcus_faecalis710.67893753
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Actinomyces.s__Actinomyces_odontolyticus467.51764445
+VALSYN-PWY	L valine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans23044.843169879998
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Neisseria.s__Neisseria_meningitidis1880.76234706
+ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus3820.12139671
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Clostridium.s__Clostridium_beijerinckii434.89832699
+PWY-5188	tetrapyrrole biosynthesis I |g__Neisseria.s__Neisseria_meningitidis1805.4768743099999
+PWY-6151	S adenosyl L methionine cycle I|g__Enterococcus.s__Enterococcus_faecalis606.35482629
+PWY0-42	2 methylcitrate cycle I|g__Acinetobacter.s__Acinetobacter_baumannii2239.86221723
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus4452.561643020001
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans15291.38017483
+PWY-922	mevalonate pathway I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae993.6640760099999
+PENTOSE-P-PWY	pentose phosphate pathway|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2060.84210003
+PWY-5505	L glutamate and L glutamine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus4705.82596976
+PWY-6630	superpathway of L tyrosine biosynthesis|g__Neisseria.s__Neisseria_meningitidis1966.8984989599999
+PWY-5173	superpathway of acetyl CoA biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2519.87744949
+FUCCAT-PWY	fucose degradation|unclassified27.77262243
+TRNA-CHARGING-PWY	tRNA charging|g__Listeria.s__Listeria_monocytogenes978.4633150599999
+GLYCOLYSIS	glycolysis I |g__Deinococcus.s__Deinococcus_radiodurans19497.11806684
+PWY-6897	thiamin salvage II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4004.38301192
+HSERMETANA-PWY	L methionine biosynthesis III|g__Bacillus.s__Bacillus_cereus_thuringiensis111.72297395999999
+OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Actinomyces.s__Actinomyces_odontolyticus871.4448023099999
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes639.78816326
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes3538.7926598900003
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Actinomyces.s__Actinomyces_odontolyticus1338.6920242
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Helicobacter.s__Helicobacter_pylori1177.95162052
+PWY66-400	glycolysis VI |g__Bacteroides.s__Bacteroides_vulgatus4528.16969487
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus1995.52087354
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Listeria.s__Listeria_monocytogenes1430.81949626
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus762.51635045
+PWY-5534	propylene degradation16.54024753
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes1973.5755884
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2896.33459591
+VALSYN-PWY	L valine biosynthesis|g__Listeria.s__Listeria_monocytogenes1430.81949626
+PWY-6168	flavin biosynthesis III |g__Neisseria.s__Neisseria_meningitidis2066.25493912
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Propionibacterium.s__Propionibacterium_acnes1810.8272941999999
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans7660.73356751
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes2577.84779196
+PWY66-409	superpathway of purine nucleotide salvage|g__Propionibacterium.s__Propionibacterium_acnes2451.34108681
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Deinococcus.s__Deinococcus_radiodurans6085.75885018
+DENITRIFICATION-PWY	nitrate reduction I |unclassified22.35489484
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes3135.15338755
+PWY0-1586	peptidoglycan maturation |g__Propionibacterium.s__Propionibacterium_acnes4202.16626725
+PWY-5028	L histidine degradation II|g__Propionibacterium.s__Propionibacterium_acnes3251.4358231300002
+GLUCONEO-PWY	gluconeogenesis I|g__Acinetobacter.s__Acinetobacter_baumannii5372.38543995
+PWY66-399	gluconeogenesis III|unclassified147.95127462
+PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Neisseria.s__Neisseria_meningitidis1036.31913203
+PWY0-1061	superpathway of L alanine biosynthesis|g__Enterococcus.s__Enterococcus_faecalis606.8067743500001
+PWY0-1586	peptidoglycan maturation |g__Bacteroides.s__Bacteroides_vulgatus3085.21503554
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Acinetobacter.s__Acinetobacter_baumannii2323.39260416
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Helicobacter.s__Helicobacter_pylori6005.02798696
+PWY-7373	superpathway of demethylmenaquinol 6 biosynthesis II|g__Helicobacter.s__Helicobacter_pylori1006.8123872399999
+GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|g__Bacillus.s__Bacillus_cereus_thuringiensis216.94424982
+PWY-7046	4 coumarate degradation |unclassified19.45543615
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3427.00569546
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae4124.24308505
+PWY-6630	superpathway of L tyrosine biosynthesis|unclassified182.79663693999998
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus572.34440161
+PWY-5100	pyruvate fermentation to acetate and lactate II|g__Bacteroides.s__Bacteroides_vulgatus3128.88063002
+PWY-2942	L lysine biosynthesis III|g__Helicobacter.s__Helicobacter_pylori2483.79311831
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus503.30244913
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans23044.843169879998
+PWY-5181	toluene degradation III  (via p cresol)|g__Acinetobacter.s__Acinetobacter_baumannii7379.305426489999
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae932.7576432600001
+PWY-7374	1,4 dihydroxy 6 naphthoate biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans425.64087175000003
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1326.7708619500002
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Neisseria.s__Neisseria_meningitidis1260.63658127
+PWY-5690	TCA cycle II |g__Propionibacterium.s__Propionibacterium_acnes4521.68538515
+PWY-5973	cis vaccenate biosynthesis|g__Listeria.s__Listeria_monocytogenes568.4853208
+P125-PWY	superpathway of  butanediol biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1493.4846307500002
+PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Neisseria.s__Neisseria_meningitidis2033.49873338
+PWY-7663	gondoate biosynthesis |g__Deinococcus.s__Deinococcus_radiodurans13766.50899814
+ARGSYN-PWY	L arginine biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes2921.01536384
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3315.6292367200003
+ARGSYN-PWY	L arginine biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans14018.578093529999
+PWY-3841	folate transformations II|g__Deinococcus.s__Deinococcus_radiodurans1267.2621287900001
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Enterococcus.s__Enterococcus_faecalis275.3604165
+PWY-4041	&gamma; glutamyl cycle|g__Listeria.s__Listeria_monocytogenes690.63472246
+PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Propionibacterium.s__Propionibacterium_acnes796.16961711
+GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|g__Listeria.s__Listeria_monocytogenes1193.18193769
+ARGSYN-PWY	L arginine biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii4607.52866605
+PWY-7664	oleate biosynthesis IV |g__Acinetobacter.s__Acinetobacter_baumannii11687.120141379999
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans8674.35478181
+COA-PWY	coenzyme A biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis240.10585729
+PWY-6269	adenosylcobalamin salvage from cobinamide II6121.565319310001
+TYRFUMCAT-PWY	L tyrosine degradation I|g__Acinetobacter.s__Acinetobacter_baumannii5063.21481038
+PWY-1042	glycolysis IV |g__Actinomyces.s__Actinomyces_odontolyticus1977.14244911
+GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2877.2822288400002
+PWY-6145	superpathway of sialic acids and CMP sialic acids biosynthesis1043.9076551399999
+PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Neisseria.s__Neisseria_meningitidis1174.59267824
+PWY0-862	 dodec 5 enoate biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2147.9599976599998
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus2224.77868866
+PWY-5420	catechol degradation II |unclassified77.54697596
+POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Actinomyces.s__Actinomyces_odontolyticus469.09209273999994
+COA-PWY	coenzyme A biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2145.77462112
+ARO-PWY	chorismate biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes1900.49602384
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Enterococcus.s__Enterococcus_faecalis615.5721109
+P161-PWY	acetylene degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3051.81508343
+PWY-5154	L arginine biosynthesis III |g__Clostridium.s__Clostridium_beijerinckii693.39315525
+PWY-6969	TCA cycle V (2 oxoglutarate343.21062356
+COA-PWY	coenzyme A biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii4751.5446953
+METSYN-PWY	L homoserine and L methionine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus3353.06461612
+PWY-5104	L isoleucine biosynthesis IV|g__Deinococcus.s__Deinococcus_radiodurans23645.26426325
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii1405.32076754
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Bacteroides.s__Bacteroides_vulgatus3626.59960449
+PWY-1042	glycolysis IV |g__Deinococcus.s__Deinococcus_radiodurans18117.07517504
+P164-PWY	purine nucleobases degradation I 15114.21555199
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1168.58718155
+PWY-3001	superpathway of L isoleucine biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2459.51268668
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1540.1204721299998
+PWY-4041	&gamma; glutamyl cycle|g__Enterococcus.s__Enterococcus_faecalis813.17944374
+PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2026.8653144200002
+HISTSYN-PWY	L histidine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes2043.73456185
+RIBOSYN2-PWY	flavin biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes3216.08535141
+P108-PWY	pyruvate fermentation to propanoate I|unclassified80.78380624
+PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Bacillus.s__Bacillus_cereus_thuringiensis618.80437147
+LACTOSECAT-PWY	lactose and galactose degradation I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae10589.61177492
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Acinetobacter.s__Acinetobacter_baumannii1808.74836507
+PWY-6609	adenine and adenosine salvage III|g__Deinococcus.s__Deinococcus_radiodurans24247.041198119998
+GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|g__Neisseria.s__Neisseria_meningitidis1262.0048735599999
+SO4ASSIM-PWY	sulfate reduction I |g__Acinetobacter.s__Acinetobacter_baumannii4870.92429481
+PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii4417.6214039100005
+PWY0-1479	tRNA processing|g__Neisseria.s__Neisseria_meningitidis670.56108389
+RUMP-PWY	formaldehyde oxidation I|g__Enterococcus.s__Enterococcus_faecalis349.48256718
+PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Helicobacter.s__Helicobacter_pylori1873.05183074
+FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Neisseria.s__Neisseria_meningitidis1826.8689350599998
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Deinococcus.s__Deinococcus_radiodurans5857.776760649999
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus1047.3630038
+P105-PWY	TCA cycle IV |g__Bacillus.s__Bacillus_cereus_thuringiensis343.21062356
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii426.81375832
+PWY-5417	catechol degradation III |g__Acinetobacter.s__Acinetobacter_baumannii5840.29024826
+PWY-6168	flavin biosynthesis III |g__Bacteroides.s__Bacteroides_vulgatus1701.72415374
+PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Neisseria.s__Neisseria_meningitidis907.1378689
+COA-PWY-1	coenzyme A biosynthesis II |g__Deinococcus.s__Deinococcus_radiodurans2920.61584988
+UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |g__Neisseria.s__Neisseria_meningitidis1397.53333368
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Listeria.s__Listeria_monocytogenes602.0224203
+FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Propionibacterium.s__Propionibacterium_acnes1675.37062714
+PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Listeria.s__Listeria_monocytogenes609.03684917
+PWY-5188	tetrapyrrole biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans1190.94487215
+PWY-5097	L lysine biosynthesis VI|g__Neisseria.s__Neisseria_meningitidis1099.5077351
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Listeria.s__Listeria_monocytogenes189.69689549
+PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |g__Bacillus.s__Bacillus_cereus_thuringiensis488.35873546000005
+PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus4320.1069873999995
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Neisseria.s__Neisseria_meningitidis920.02950616
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus2437.7340308800003
+PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Bacteroides.s__Bacteroides_vulgatus2083.2892056799997
+PWY-6318	L phenylalanine degradation IV |g__Bacillus.s__Bacillus_cereus_thuringiensis378.11788589
+PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1701.75332817
+PWY-5913	TCA cycle VI |g__Deinococcus.s__Deinococcus_radiodurans11494.060772230001
+PWY-2942	L lysine biosynthesis III|g__Bacteroides.s__Bacteroides_vulgatus3062.88078839
+PWY-7237	myo , chiro  and scillo inositol degradation|g__Streptococcus.s__Streptococcus_agalactiae520.40090345
+PWY-5856	ubiquinol 9 biosynthesis |unclassified27.68465255
+PWY-6936	seleno amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2651.76646832
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus5144.30297306
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Propionibacterium.s__Propionibacterium_acnes2325.02905507
+PWY-5384	sucrose degradation IV |g__Listeria.s__Listeria_monocytogenes1058.36282468
+PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Enterococcus.s__Enterococcus_faecalis1071.50932666
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis428.33414302
+PWY0-1586	peptidoglycan maturation |g__Neisseria.s__Neisseria_meningitidis4108.00004989
+PWY-5384	sucrose degradation IV |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2501.07935426
+PWY-2723	trehalose degradation V|g__Propionibacterium.s__Propionibacterium_acnes2297.0483113
+HSERMETANA-PWY	L methionine biosynthesis III|g__Actinomyces.s__Actinomyces_odontolyticus1680.8446914899998
+PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3451.4086057500003
+PWY-7117	C4 photosynthetic carbon assimilation cycle, PEPCK type|g__Deinococcus.s__Deinococcus_radiodurans15750.572196120002
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3304.58847604
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2223.0671763699997
+HEMESYN2-PWY	heme biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes2774.20790535
+PWY-6143	CMP pseudaminate biosynthesis3086.066238
+PWY-6309	L tryptophan degradation XI |g__Bacillus.s__Bacillus_cereus_thuringiensis260.21741406
+PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Enterococcus.s__Enterococcus_faecalis1204.24140381
+TYRFUMCAT-PWY	L tyrosine degradation I|g__Bacillus.s__Bacillus_cereus_thuringiensis172.65182334
+PWY-5103	L isoleucine biosynthesis III|g__Listeria.s__Listeria_monocytogenes996.3277871600001
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii2112.4257598100003
+GALACTUROCAT-PWY	D galacturonate degradation I|g__Bacteroides.s__Bacteroides_vulgatus2575.59801926
+PWY-2942	L lysine biosynthesis III|g__Enterococcus.s__Enterococcus_faecalis425.29782158999996
+PWY-6859	all trans farnesol biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1570.10152878
+ANAEROFRUCAT-PWY	homolactic fermentation|g__Bacillus.s__Bacillus_cereus_thuringiensis263.03633579
+PWY-6527	stachyose degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae5297.7167296200005
+HEXITOLDEGSUPER-PWY	superpathway of hexitol degradation |g__Clostridium.s__Clostridium_beijerinckii913.2037938
+PWY-7400	L arginine biosynthesis IV |g__Deinococcus.s__Deinococcus_radiodurans14350.71301748
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis243.47618763
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Enterococcus.s__Enterococcus_faecalis1346.65822693
+PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Bacteroides.s__Bacteroides_vulgatus2031.4957877000002
+PWY-3481	superpathway of L phenylalanine and L tyrosine biosynthesis|unclassified6.1783799
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes4046.8476223499997
+PWY-7400	L arginine biosynthesis IV |g__Listeria.s__Listeria_monocytogenes590.3225181
+P161-PWY	acetylene degradation|g__Listeria.s__Listeria_monocytogenes2320.4147351700003
+ANAEROFRUCAT-PWY	homolactic fermentation|g__Enterococcus.s__Enterococcus_faecalis684.0976374
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Actinomyces.s__Actinomyces_odontolyticus273.99668027
+PWY-5188	tetrapyrrole biosynthesis I |g__Helicobacter.s__Helicobacter_pylori2107.65455025
+PWY-5918	superpathay of heme biosynthesis from glutamate|g__Helicobacter.s__Helicobacter_pylori2094.16313855
+PWY-7242	D fructuronate degradation|g__Enterococcus.s__Enterococcus_faecalis786.7415130100001
+GLUCONEO-PWY	gluconeogenesis I|g__Clostridium.s__Clostridium_beijerinckii938.08672748
+PWY-5855	ubiquinol 7 biosynthesis |unclassified80.68319092
+PWY-5367	petroselinate biosynthesis|g__Enterococcus.s__Enterococcus_faecalis482.05732588999996
+PWY-5857	ubiquinol 10 biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii3461.49933469
+PWY-6269	adenosylcobalamin salvage from cobinamide II|unclassified40.29083544
+GLUTORN-PWY	L ornithine biosynthesis|g__Neisseria.s__Neisseria_meningitidis1306.8770118099999
+PWY-4984	urea cycle|g__Bacteroides.s__Bacteroides_vulgatus2013.6775861899998
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Neisseria.s__Neisseria_meningitidis2153.13257971
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2823.82176382
+PWY-6151	S adenosyl L methionine cycle I|g__Bacillus.s__Bacillus_cereus_thuringiensis737.49522185
+PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1060.08050763
+PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis1023.63028583
+GLYCOLYSIS	glycolysis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2356.22834974
+PWY-6168	flavin biosynthesis III |g__Helicobacter.s__Helicobacter_pylori1058.49638514
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus465.21642024
+PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis192.06414662
+KETOGLUCONMET-PWY	ketogluconate metabolism|g__Bacillus.s__Bacillus_cereus_thuringiensis282.94979761999997
+COA-PWY-1	coenzyme A biosynthesis II |g__Listeria.s__Listeria_monocytogenes392.38718854
+NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Listeria.s__Listeria_monocytogenes764.21860024
+PWY-5989	stearate biosynthesis II |g__Listeria.s__Listeria_monocytogenes579.68173423
+PWY-7312	dTDP D &beta; fucofuranose biosynthesis58.804451300000004
+PWY-5109	2 methylbutanoate biosynthesis|unclassified16.6390177
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Enterococcus.s__Enterococcus_faecalis715.1767802200001
+PWY-3781	aerobic respiration I |g__Bacteroides.s__Bacteroides_vulgatus2372.93286574
+ARO-PWY	chorismate biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1539.56277951
+PWY-6313	serotonin degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis620.09661321
+VALSYN-PWY	L valine biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus1163.89622401
+RIBOSYN2-PWY	flavin biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis184.27194729
+PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Deinococcus.s__Deinococcus_radiodurans17898.80703023
+P185-PWY	formaldehyde assimilation III |g__Listeria.s__Listeria_monocytogenes2893.64755634
+DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Listeria.s__Listeria_monocytogenes576.05328467
+PWY-5415	catechol degradation I |g__Deinococcus.s__Deinococcus_radiodurans9119.20300567
+PWY66-389	phytol degradation|g__Enterococcus.s__Enterococcus_faecalis637.76203668
+PWY-5103	L isoleucine biosynthesis III|g__Bacteroides.s__Bacteroides_vulgatus2045.38743152
+PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2225.35962611
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes2880.5843570899997
+PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Acinetobacter.s__Acinetobacter_baumannii3461.26486112
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii1405.32076754
+PWY0-1241	ADP L glycero &beta; D manno heptose biosynthesis|g__Neisseria.s__Neisseria_meningitidis2643.00414993
+PWY-6270	isoprene biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes2846.92097767
+PWY-5686	UMP biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii5028.97439041
+PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes2460.51497329
+ANAEROFRUCAT-PWY	homolactic fermentation|g__Bacteroides.s__Bacteroides_vulgatus3188.13113711
+PWY-7242	D fructuronate degradation|g__Propionibacterium.s__Propionibacterium_acnes3859.30523447
+PANTO-PWY	phosphopantothenate biosynthesis I|g__Helicobacter.s__Helicobacter_pylori809.93937834
+PWY-7663	gondoate biosynthesis |g__Bacteroides.s__Bacteroides_vulgatus7945.94300312
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Helicobacter.s__Helicobacter_pylori2187.8829487099997
+PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Listeria.s__Listeria_monocytogenes640.24399241
+NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Propionibacterium.s__Propionibacterium_acnes3245.38709518
+PWY-1042	glycolysis IV |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1420.68211795
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Propionibacterium.s__Propionibacterium_acnes1872.9956217400002
+PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Listeria.s__Listeria_monocytogenes660.01711034
+PWY-5508	adenosylcobalamin biosynthesis from cobyrinate a,c diamide II|unclassified86.58867118
+PWY-7663	gondoate biosynthesis |g__Listeria.s__Listeria_monocytogenes1719.63205427
+PENTOSE-P-PWY	pentose phosphate pathway|g__Propionibacterium.s__Propionibacterium_acnes2788.36551396
+PWY-3481	superpathway of L phenylalanine and L tyrosine biosynthesis6.5929065499999995
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Helicobacter.s__Helicobacter_pylori3525.0525446799998
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2455.4527036100003
+NONOXIPENT-PWY	pentose phosphate pathway |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae5152.7376122900005
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Enterococcus.s__Enterococcus_faecalis889.10221331
+PWY-6936	seleno amino acid biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis231.04452431
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Clostridium.s__Clostridium_beijerinckii1067.5112181
+PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Deinococcus.s__Deinococcus_radiodurans1284.61250001
+P185-PWY	formaldehyde assimilation III |g__Acinetobacter.s__Acinetobacter_baumannii3527.4294784
+PPGPPMET-PWY	ppGpp biosynthesis|g__Listeria.s__Listeria_monocytogenes842.4890356300001
+VALSYN-PWY	L valine biosynthesis|g__Helicobacter.s__Helicobacter_pylori1576.17203155
+COA-PWY-1	coenzyme A biosynthesis II |g__Helicobacter.s__Helicobacter_pylori1573.89240385
+PWY-6609	adenine and adenosine salvage III|g__Bacillus.s__Bacillus_cereus_thuringiensis453.44234505000003
+PWY-5104	L isoleucine biosynthesis IV|g__Acinetobacter.s__Acinetobacter_baumannii2196.85305716
+PWY3O-355	stearate biosynthesis III |g__Neisseria.s__Neisseria_meningitidis1110.5892141
+P161-PWY	acetylene degradation|g__Deinococcus.s__Deinococcus_radiodurans2709.71225087
+PWY-5667	CDP diacylglycerol biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus1514.6877209
+FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|unclassified40.21408071
+PWY-5532	adenosine nucleotides degradation IV33.844524920000005
+PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Listeria.s__Listeria_monocytogenes1010.22162267
+PWY-7664	oleate biosynthesis IV |g__Deinococcus.s__Deinococcus_radiodurans11863.23989373
+PWY-5430	meta cleavage pathway of aromatic compounds|unclassified18.94157642
+PWY-5675	nitrate reduction V |g__Deinococcus.s__Deinococcus_radiodurans26753.07038438
+PWY-5686	UMP biosynthesis|g__Enterococcus.s__Enterococcus_faecalis1001.7080308400001
+PWY-5994	palmitate biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii11676.50452289
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2070.44281109
+PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii2507.5904953
+PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis458.05813135
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1045.47945312
+THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Bacteroides.s__Bacteroides_vulgatus2837.31635477
+PWY-5419	catechol degradation to 2 oxopent 4 enoate II|unclassified50.380027520000006
+PWY-3841	folate transformations II|g__Bacteroides.s__Bacteroides_vulgatus2237.54454055
+PWY-6309	L tryptophan degradation XI |g__Deinococcus.s__Deinococcus_radiodurans17586.57421945
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis280.47160498
+GLUCONEO-PWY	gluconeogenesis I|g__Deinococcus.s__Deinococcus_radiodurans21397.64397371
+PWY-6588	pyruvate fermentation to acetone|g__Bacillus.s__Bacillus_cereus_thuringiensis351.41462810999997
+TRNA-CHARGING-PWY	tRNA charging|g__Bacillus.s__Bacillus_cereus_thuringiensis189.75017562
+PWY-6609	adenine and adenosine salvage III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae9005.45456049
+AST-PWY	L arginine degradation II |g__Acinetobacter.s__Acinetobacter_baumannii5080.1514385
+SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2896.52791818
+PWY66-422	D galactose degradation V |g__Actinomyces.s__Actinomyces_odontolyticus1083.83131289
+PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Bacteroides.s__Bacteroides_vulgatus1548.6728508
+HEMESYN2-PWY	heme biosynthesis II |g__Helicobacter.s__Helicobacter_pylori2379.36305452
+PWY-5484	glycolysis II |g__Bacillus.s__Bacillus_cereus_thuringiensis271.90425715000003
+PWY-6124	inosine 5 phosphate biosynthesis II|g__Neisseria.s__Neisseria_meningitidis2532.49898004
+PWY-6892	thiazole biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis368.03057218
+PWY-5870	ubiquinol 8 biosynthesis |unclassified21.93332693
+PWY-6606	guanosine nucleotides degradation II|g__Enterococcus.s__Enterococcus_faecalis423.8400113
+NONOXIPENT-PWY	pentose phosphate pathway |g__Bacteroides.s__Bacteroides_vulgatus3729.10109579
+FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Acinetobacter.s__Acinetobacter_baumannii12634.71681069
+PWY-6168	flavin biosynthesis III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1906.3790524600001
+HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Listeria.s__Listeria_monocytogenes369.10390205
+PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|unclassified88.60951960999999
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Propionibacterium.s__Propionibacterium_acnes3345.0637913
+PWY-6385	peptidoglycan biosynthesis III |g__Deinococcus.s__Deinococcus_radiodurans887.1289718
+PWY-561	superpathway of glyoxylate cycle and fatty acid degradation|g__Deinococcus.s__Deinococcus_radiodurans24053.57470234
+PWY-6385	peptidoglycan biosynthesis III |g__Helicobacter.s__Helicobacter_pylori1879.6388736600002
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii1902.0456340300002
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Acinetobacter.s__Acinetobacter_baumannii6218.25342518
+ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans2556.04783364
+PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III|g__Bacillus.s__Bacillus_cereus_thuringiensis323.98215177
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Neisseria.s__Neisseria_meningitidis2270.18019442
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Neisseria.s__Neisseria_meningitidis1167.6310682600001
+COA-PWY-1	coenzyme A biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii482.07129106
+PWY-7111	pyruvate fermentation to isobutanol |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae7136.11057394
+THRESYN-PWY	superpathway of L threonine biosynthesis|g__Listeria.s__Listeria_monocytogenes1004.2436828599999
+GLUCONEO-PWY	gluconeogenesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis256.77231987
+P441-PWY	superpathway of N acetylneuraminate degradation|g__Listeria.s__Listeria_monocytogenes1172.9653693799999
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Bacteroides.s__Bacteroides_vulgatus3218.9149216700002
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii1713.14891968
+FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Acinetobacter.s__Acinetobacter_baumannii5164.2707274800005
+GLUTORN-PWY	L ornithine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes1444.09710987
+PWY-6897	thiamin salvage II|g__Acinetobacter.s__Acinetobacter_baumannii2072.7933036900004
+PWY-5103	L isoleucine biosynthesis III|g__Deinococcus.s__Deinococcus_radiodurans15090.10436394
+PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii2850.79604203
+PWY0-862	 dodec 5 enoate biosynthesis|g__Listeria.s__Listeria_monocytogenes613.70819443
+PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Bacteroides.s__Bacteroides_vulgatus1638.76800692
+ILEUSYN-PWY	L isoleucine biosynthesis I |g__Actinomyces.s__Actinomyces_odontolyticus1163.89622401
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Neisseria.s__Neisseria_meningitidis2325.31672002
+PWY-6151	S adenosyl L methionine cycle I|g__Propionibacterium.s__Propionibacterium_acnes3870.1826690700004
+PWY-6305	putrescine biosynthesis IV|g__Deinococcus.s__Deinococcus_radiodurans5729.23318798
+PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Deinococcus.s__Deinococcus_radiodurans1615.1629543999998
+PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii2466.2348637699997
+PWY-5989	stearate biosynthesis II |g__Deinococcus.s__Deinococcus_radiodurans12467.68339536
+PWY-5505	L glutamate and L glutamine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans15848.42048374
+COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus2332.71157831
+PWY-6385	peptidoglycan biosynthesis III |g__Neisseria.s__Neisseria_meningitidis1913.07898701
+FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Deinococcus.s__Deinococcus_radiodurans9778.40841625
+PWY-5484	glycolysis II |g__Listeria.s__Listeria_monocytogenes1211.0371368899998
+PWY-7237	myo , chiro  and scillo inositol degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis568.7198714
+PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus3112.41953118
+PWY0-1319	CDP diacylglycerol biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis246.05363508
+PWY-5101	L isoleucine biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus2342.3468678100003
+PWY-6703	preQ0 biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis329.45200201
+PWY-5855	ubiquinol 7 biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii3461.49933469
+RIBOSYN2-PWY	flavin biosynthesis I |g__Neisseria.s__Neisseria_meningitidis2121.6199590799997
+PWY0-41	allantoin degradation IV |g__Enterococcus.s__Enterococcus_faecalis519.74607257
+PWY-6317	galactose degradation I |g__Enterococcus.s__Enterococcus_faecalis1268.33069375
+PWY-7234	inosine 5 phosphate biosynthesis III|g__Bacillus.s__Bacillus_cereus_thuringiensis261.30673747
+PWY-7392	taxadiene biosynthesis |g__Listeria.s__Listeria_monocytogenes528.8369378
+CALVIN-PWY	Calvin Benson Bassham cycle|g__Bacillus.s__Bacillus_cereus_thuringiensis225.32971238
+PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Propionibacterium.s__Propionibacterium_acnes3016.7514106199997
+DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes2786.3360794
+PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus2244.5134557
+PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes3119.5836733
+PWY-6628	superpathway of L phenylalanine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1613.17515885
+PWY-7279	aerobic respiration II  (yeast)|g__Helicobacter.s__Helicobacter_pylori2519.6268709600004
+1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii4808.4455859
+PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus442.66859580000005
+PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii3392.3394651800004
+BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I|g__Neisseria.s__Neisseria_meningitidis2053.00506977
+PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Listeria.s__Listeria_monocytogenes995.12300353
+ANAGLYCOLYSIS-PWY	glycolysis III |g__Neisseria.s__Neisseria_meningitidis1258.80571029
+ARGSYN-PWY	L arginine biosynthesis I |g__Neisseria.s__Neisseria_meningitidis2700.1655864500003
+HISDEG-PWY	L histidine degradation I|g__Deinococcus.s__Deinococcus_radiodurans8089.41985009
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Listeria.s__Listeria_monocytogenes507.22180871999996
+PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis947.77913253
+HEMESYN2-PWY	heme biosynthesis II |g__Bacillus.s__Bacillus_cereus_thuringiensis322.00293305
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii3746.82815929
+HEMESYN2-PWY	heme biosynthesis II |g__Listeria.s__Listeria_monocytogenes369.10390205
+PWY-7118	chitin degradation to ethanol|g__Bacillus.s__Bacillus_cereus_thuringiensis400.33401129000003
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Listeria.s__Listeria_monocytogenes187.61090748
+PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes3194.01708626
+PWY-7663	gondoate biosynthesis |g__Enterococcus.s__Enterococcus_faecalis1735.8151961
+PWY-3781	aerobic respiration I |g__Bacillus.s__Bacillus_cereus_thuringiensis740.84156305
+KETOGLUCONMET-PWY	ketogluconate metabolism|g__Propionibacterium.s__Propionibacterium_acnes3498.2123751000004
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Helicobacter.s__Helicobacter_pylori4205.54671787
+PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae2318.0237892600003
+PWY-7185	UTP and CTP dephosphorylation I|unclassified86.86345616999999
+PWY-2942	L lysine biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii4184.39331209
+DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus1602.39397488
+PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae1522.60994915
+PWY-7400	L arginine biosynthesis IV |g__Neisseria.s__Neisseria_meningitidis2661.7116863
+PWY0-1061	superpathway of L alanine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans17207.619728309997
+PWY-6151	S adenosyl L methionine cycle I|g__Acinetobacter.s__Acinetobacter_baumannii3884.9562603800005
+BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3873.13594163
+PWY-6703	preQ0 biosynthesis|g__Clostridium.s__Clostridium_beijerinckii456.48187263000005
+PWY-6307	L tryptophan degradation X |g__Bacteroides.s__Bacteroides_vulgatus1665.5719701100002
+PWY-5103	L isoleucine biosynthesis III|g__Neisseria.s__Neisseria_meningitidis2998.96553709
+PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis1253.1079087
+VALSYN-PWY	L valine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes3111.11632972
+PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Listeria.s__Listeria_monocytogenes465.60089664
+PWY-6123	inosine 5 phosphate biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii293.81784981
+GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae3029.53758634
+PWY-6608	guanosine nucleotides degradation III|g__Bacteroides.s__Bacteroides_vulgatus1761.75460692
+PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Listeria.s__Listeria_monocytogenes430.81396281
+PWY-7111	pyruvate fermentation to isobutanol |g__Helicobacter.s__Helicobacter_pylori1895.1322225
+PWY-6859	all trans farnesol biosynthesis|g__Listeria.s__Listeria_monocytogenes514.9571508500001
+PWY0-781	aspartate superpathway|g__Acinetobacter.s__Acinetobacter_baumannii5029.55209128
+GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|g__Propionibacterium.s__Propionibacterium_acnes3236.09786158
+PWY-6385	peptidoglycan biosynthesis III |g__Bacillus.s__Bacillus_cereus_thuringiensis504.30027838000007
+PWY0-1296	purine ribonucleosides degradation|g__Deinococcus.s__Deinococcus_radiodurans19916.5017068
+PWY-5659	GDP mannose biosynthesis|g__Listeria.s__Listeria_monocytogenes632.43764388
--- a/test-data/more_abundant_pathways.tabular	Wed Apr 20 09:15:27 2016 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-id	name	sample1	sample2
-PWY-3781	aerobic respiration I |g__Escherichia.s__Escherichia_coli	11428.460877	3504.59201375
-PWY-3781	aerobic respiration I |g__Neisseria.s__Neisseria_meningitidis	142.20887339	6845.43838944
-PWY-3781	aerobic respiration I |g__Staphylococcus.s__Staphylococcus_aureus	31496.0304037	2108.46546528
-PWY-3781	aerobic respiration I |g__Acinetobacter.s__Acinetobacter_baumannii	0	10661.254254
-PWY-3781	aerobic respiration I |g__Deinococcus.s__Deinococcus_radiodurans	243.95473535	51964.0681305
-PWY66-389	phytol degradation|g__Staphylococcus.s__Staphylococcus_aureus	31048.8482071	3743.72936189
-PWY-3781	aerobic respiration I |g__Helicobacter.s__Helicobacter_pylori	475.85206385	7486.51278743
-PWY66-389	phytol degradation	97948.0570109	126799.82205
-PWY-3781	aerobic respiration I |unclassified	3699.62755214	1118.9863796
-PWY-3781	aerobic respiration I |g__Actinomyces.s__Actinomyces_odontolyticus	0	2772.58262062
-PWY-3781	aerobic respiration I |g__Pseudomonas.s__Pseudomonas_aeruginosa	7491.56572789	2317.68361723
-PWY-3781	aerobic respiration I |g__Rhodobacter.s__Rhodobacter_sphaeroides	45855.0506957	7356.87095282
-PWY-3781	aerobic respiration I |g__Staphylococcus.s__Staphylococcus_epidermidis	29048.5287092	8522.11671136
-PWY-3781	aerobic respiration I |g__Propionibacterium.s__Propionibacterium_acnes	307.60781448	14416.0404018
-PWY-3781	aerobic respiration I 	146949.349575	137931.175616
--- a/test-data/sample_1_specific_pathways.txt	Wed Apr 20 09:15:27 2016 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,393 +0,0 @@
-id	name	abundances
-GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Streptococcus.s__Streptococcus_agalactiae	1410.06644622
-PWY-621	sucrose degradation III |g__Streptococcus.s__Streptococcus_agalactiae	112.79225549
-PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	478.21587188
-GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|unclassified	179.77462326
-PWY-6731	starch degradation III|g__Escherichia.s__Escherichia_coli	2025.33248781
-PWY-6897	thiamin salvage II|g__Staphylococcus.s__Staphylococcus_epidermidis	6943.50315533
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	3608.12319483
-PWY-5860	superpathway of demethylmenaquinol 6 biosynthesis I|g__Escherichia.s__Escherichia_coli	1639.54069759
-PWY-1861	formaldehyde assimilation II |g__Streptococcus.s__Streptococcus_agalactiae	839.53086925
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Streptococcus.s__Streptococcus_agalactiae	301.6528534
-ARGORNPROST-PWY	arginine, ornithine and proline interconversion|unclassified	119.95840721
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Pseudomonas.s__Pseudomonas_aeruginosa	2355.29776195
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	361.12670274
-P4-PWY	superpathway of L lysine, L threonine and L methionine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	677.11766653
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	384.06128551
-GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|unclassified	42.89806203
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus	8533.03496704
-PWY-621	sucrose degradation III |g__Escherichia.s__Escherichia_coli	3150.29450022
-PWY-7413	dTDP 6 deoxy &alpha; D allose biosynthesis	12.26474527
-PWY-5345	superpathway of L methionine biosynthesis |g__Escherichia.s__Escherichia_coli	837.30529432
-PWY-5154	L arginine biosynthesis III |g__Pseudomonas.s__Pseudomonas_aeruginosa	386.2629909
-PWY-6690	cinnamate and 3 hydroxycinnamate degradation to 2 oxopent 4 enoate|unclassified	1.42686388
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	603.00195694
-HCAMHPDEG-PWY	3 phenylpropanoate and 3 propanoate degradation to 2 oxopent 4 enoate|g__Escherichia.s__Escherichia_coli	1403.43643815
-PWY-6859	all trans farnesol biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	318.54192069
-PWY66-400	glycolysis VI |g__Streptococcus.s__Streptococcus_agalactiae	303.79411134
-PWY-5973	cis vaccenate biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	447.83907364
-PWY-6672	cis genanyl CoA degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	246.74381202
-P105-PWY	TCA cycle IV |g__Pseudomonas.s__Pseudomonas_aeruginosa	346.96109281
-PWY-4702	phytate degradation I|unclassified	88.68668132
-PWY-7242	D fructuronate degradation|g__Streptococcus.s__Streptococcus_agalactiae	202.56826561
-PWY-6609	adenine and adenosine salvage III|g__Pseudomonas.s__Pseudomonas_aeruginosa	492.9281104
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3405.18193479
-PWY-6562	norspermidine biosynthesis|unclassified	70.22305715
-NAGLIPASYN-PWY	lipid IVA biosynthesis|unclassified	25.03978499
-PWY0-1277	3 phenylpropanoate and 3 propanoate degradation|g__Escherichia.s__Escherichia_coli	2473.1533402
-GLYCOL-GLYOXDEG-PWY	superpathway of glycol metabolism and degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	675.72913268
-PWY-6969	TCA cycle V (2 oxoglutarate	7590.86231693
-PWY-5686	UMP biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2597.42400205
-PWY-7294	xylose degradation IV	3457.02196873
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	2538.97438594
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides	588.51493777
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Streptococcus.s__Streptococcus_agalactiae	279.20454692
-VALDEG-PWY	L valine degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	798.11978224
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2873.53740803
-PWY-5659	GDP mannose biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	279.37336394
-PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|g__Streptococcus.s__Streptococcus_agalactiae	270.24386472
-HISTSYN-PWY	L histidine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	435.72770398
-PWY-6608	guanosine nucleotides degradation III|g__Staphylococcus.s__Staphylococcus_aureus	950.63122726
-PWY-1042	glycolysis IV |g__Streptococcus.s__Streptococcus_agalactiae	992.32275176
-PWY-6107	chlorosalicylate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	364.28828864
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Staphylococcus.s__Staphylococcus_aureus	11880.5878413
-PWY-6630	superpathway of L tyrosine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	692.51463742
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Streptococcus.s__Streptococcus_agalactiae	556.93267751
-PWY-6151	S adenosyl L methionine cycle I|g__Escherichia.s__Escherichia_coli	1866.01186462
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Escherichia.s__Escherichia_coli	713.89846764
-UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	1457.87125511
-PWY-5097	L lysine biosynthesis VI|g__Pseudomonas.s__Pseudomonas_aeruginosa	675.74728882
-PWY0-1296	purine ribonucleosides degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	238.27679029
-GLYCOLYSIS	glycolysis I |g__Streptococcus.s__Streptococcus_agalactiae	246.23941276
-PWY-6703	preQ0 biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2331.56995435
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Pseudomonas.s__Pseudomonas_aeruginosa	1047.41237573
-P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate|unclassified	33.16446605
-ALL-CHORISMATE-PWY	superpathway of chorismate metabolism|g__Escherichia.s__Escherichia_coli	3577.88333666
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	1160.28005357
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	2290.53648497
-PWY-7345	superpathway of anaerobic sucrose degradation|unclassified	45.12435388
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Rhodobacter.s__Rhodobacter_sphaeroides	633.07313992
-PWY-6892	thiazole biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	337.34095461
-KETOGLUCONMET-PWY	ketogluconate metabolism|g__Rhodobacter.s__Rhodobacter_sphaeroides	2086.77560891
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Streptococcus.s__Streptococcus_agalactiae	367.16635154
-TEICHOICACID-PWY	teichoic acid  biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	7484.93061203
-PWY-6708	ubiquinol 8 biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	1800.40757215
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Escherichia.s__Escherichia_coli	708.46047077
-PWY-7209	superpathway of pyrimidine ribonucleosides degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	477.24586993
-PWY-2941	L lysine biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2455.36448795
-ORNDEG-PWY	superpathway of ornithine degradation|unclassified	56.40820653
-PWY-7209	superpathway of pyrimidine ribonucleosides degradation|unclassified	14.16006766
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	801.3771946
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	806.09927772
-ARGDEG-PWY	superpathway of L arginine, putrescine, and 4 aminobutanoate degradation|unclassified	67.59290738
-PWY-6700	queuosine biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	245.86046226
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	761.59860824
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	12316.2559034
-PWY-6641	superpathway of sulfolactate degradation	4418.04926048
-FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Staphylococcus.s__Staphylococcus_aureus	5666.17436329
-P4-PWY	superpathway of L lysine, L threonine and L methionine biosynthesis I|g__Escherichia.s__Escherichia_coli	4577.71445151
-PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Streptococcus.s__Streptococcus_mutans	1304.35796191
-PWY-5896	superpathway of menaquinol 10 biosynthesis|g__Escherichia.s__Escherichia_coli	2086.15005453
-PWY-1541	superpathway of taurine degradation|unclassified	58.7739116
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	930.61469304
-PWY-3941	&beta; alanine biosynthesis II|unclassified	9.30942286
-METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	828.82300231
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Staphylococcus.s__Staphylococcus_aureus	1142.2860582
-POLYAMSYN-PWY	superpathway of polyamine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1030.95103257
-ARG+POLYAMINE-SYN	superpathway of arginine and polyamine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	675.87657286
-PWY-4221	pantothenate and coenzyme A biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	935.46980828
-PWY-5177	glutaryl CoA degradation|unclassified	21.6079766
-GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Streptococcus.s__Streptococcus_agalactiae	472.78172629
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Escherichia.s__Escherichia_coli	3848.88745954
-ARG+POLYAMINE-SYN	superpathway of arginine and polyamine biosynthesis|unclassified	119.85975185
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	8304.02365218
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Streptococcus.s__Streptococcus_agalactiae	273.7110673
-PRPP-PWY	superpathway of histidine, purine, and pyrimidine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6315.9831806
-ORNARGDEG-PWY	superpathway of L arginine and L ornithine degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	792.37856895
-TRNA-CHARGING-PWY	tRNA charging|g__Staphylococcus.s__Staphylococcus_aureus	1635.82224797
-LACTOSECAT-PWY	lactose and galactose degradation I|g__Streptococcus.s__Streptococcus_agalactiae	857.48713873
-PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	3961.1574612
-PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	11666.1622958
-PWY-5971	palmitate biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	12693.6285722
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	12896.656306
-PWY-7409	phospholipid remodeling |g__Escherichia.s__Escherichia_coli	2324.0578138
-PWY-561	superpathway of glyoxylate cycle and fatty acid degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	395.39499627
-PRPP-PWY	superpathway of histidine, purine, and pyrimidine biosynthesis|g__Escherichia.s__Escherichia_coli	1402.83571707
-COA-PWY	coenzyme A biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	323.6348991
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Escherichia.s__Escherichia_coli	444.7271163
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	521.52168541
-PWY4LZ-257	superpathway of fermentation |unclassified	36.52564193
-PWY-7268	NAD NADP NADH NADPH cytosolic interconversion |g__Pseudomonas.s__Pseudomonas_aeruginosa	372.88456212
-PWY-5154	L arginine biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides	2117.76024295
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	767.05707833
-PWY-5431	aromatic compounds degradation via &beta; ketoadipate|g__Rhodobacter.s__Rhodobacter_sphaeroides	211.99234581
-PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	366.47566208
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Escherichia.s__Escherichia_coli	623.18471424
-PWY-7165	L ascorbate biosynthesis VI |g__Pseudomonas.s__Pseudomonas_aeruginosa	411.57432708
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	659.58865061
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Staphylococcus.s__Staphylococcus_aureus	15824.124839
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Escherichia.s__Escherichia_coli	3363.72493111
-PWY-6737	starch degradation V|g__Streptococcus.s__Streptococcus_agalactiae	127.82172243
-PWY-4321	L glutamate degradation IV|unclassified	108.89195113
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Rhodobacter.s__Rhodobacter_sphaeroides	204.82784482
-PWY-6803	phosphatidylcholine acyl editing|g__Escherichia.s__Escherichia_coli	2729.04041723
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Streptococcus.s__Streptococcus_agalactiae	342.89864049
-P125-PWY	superpathway of  butanediol biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	185.03278492
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Streptococcus.s__Streptococcus_agalactiae	453.58757378
-DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli	1295.96739518
-PWY-6901	superpathway of glucose and xylose degradation|unclassified	48.67477474
-PWY-6117	spermine and spermidine degradation I	10.27051153
-RIBOSYN2-PWY	flavin biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	605.64694816
-PWY-3841	folate transformations II|g__Pseudomonas.s__Pseudomonas_aeruginosa	960.42756687
-PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Escherichia.s__Escherichia_coli	956.52249796
-PWY-5022	4 aminobutanoate degradation V|g__Escherichia.s__Escherichia_coli	3151.52780911
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Escherichia.s__Escherichia_coli	1303.34457778
-P108-PWY	pyruvate fermentation to propanoate I|g__Rhodobacter.s__Rhodobacter_sphaeroides	15336.9833778
-GLUCONEO-PWY	gluconeogenesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	425.97302181
-PWY-6527	stachyose degradation|unclassified	53.55128382
-PWY-5989	stearate biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	2131.65064876
-PWY-6182	superpathway of salicylate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	245.59689646
-PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |unclassified	125.63136519
-ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast|g__Pseudomonas.s__Pseudomonas_aeruginosa	466.00141982
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	225.77624728
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Escherichia.s__Escherichia_coli	482.84908913
-PWY-6948	sitosterol degradation to androstenedione|g__Pseudomonas.s__Pseudomonas_aeruginosa	409.72758898
-P441-PWY	superpathway of N acetylneuraminate degradation|unclassified	47.40694288
-PYRIDNUCSAL-PWY	NAD salvage pathway I|g__Pseudomonas.s__Pseudomonas_aeruginosa	314.33071124
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Pseudomonas.s__Pseudomonas_aeruginosa	2201.63459789
-PWY-7111	pyruvate fermentation to isobutanol |g__Streptococcus.s__Streptococcus_agalactiae	203.74459516
-PWY-6519	8 amino 7 oxononanoate biosynthesis I|unclassified	37.58644825
-PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |g__Rhodobacter.s__Rhodobacter_sphaeroides	601.77119877
-PWY-6581	spirilloxanthin and 2,2 diketo spirilloxanthin biosynthesis|unclassified	93.25005511
-PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Escherichia.s__Escherichia_coli	783.03367055
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Streptococcus.s__Streptococcus_agalactiae	324.2241648
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	398.7914365
-PWY-6595	superpathway of guanosine nucleotides degradation |g__Staphylococcus.s__Staphylococcus_aureus	1168.64104025
-COA-PWY	coenzyme A biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	235.43260742
-PWY-6353	purine nucleotides degradation II |g__Pseudomonas.s__Pseudomonas_aeruginosa	619.71336512
-GLYCOL-GLYOXDEG-PWY	superpathway of glycol metabolism and degradation|unclassified	8.16336902
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	190.25923237
-PYRIDNUCSAL-PWY	NAD salvage pathway I|g__Streptococcus.s__Streptococcus_mutans	2642.12761704
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Rhodobacter.s__Rhodobacter_sphaeroides	410.01617193
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |unclassified	47.18774207
-3-HYDROXYPHENYLACETATE-DEGRADATION-PWY	4 hydroxyphenylacetate degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	605.3153392
-PWYG-321	mycolate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	2987.621424
-PWY-7654	 dodeca 8,10 dienol biosynthesis|unclassified	4.58917789
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	638.03582997
-PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	242.42081316
-OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	617.65804587
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Escherichia.s__Escherichia_coli	2980.83193002
-POLYAMINSYN3-PWY	superpathway of polyamine biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	612.71654659
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1764.16489648
-PWY-7200	superpathway of pyrimidine deoxyribonucleoside salvage|g__Staphylococcus.s__Staphylococcus_aureus	9664.74077711
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	2236.13084373
-PWY66-422	D galactose degradation V |g__Streptococcus.s__Streptococcus_agalactiae	254.63203563
-PWY0-1277	3 phenylpropanoate and 3 propanoate degradation|unclassified	4.74813034
-PWY3O-19	ubiquinol 6 biosynthesis from 4 hydroxybenzoate |g__Rhodobacter.s__Rhodobacter_sphaeroides	2645.83599557
-UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	2584.80254865
-PWY-7268	NAD NADP NADH NADPH cytosolic interconversion |g__Rhodobacter.s__Rhodobacter_sphaeroides	894.29927546
-DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	11654.727113
-PWY-7204	pyridoxal 5 phosphate salvage II |unclassified	167.17715566
-PWY-6317	galactose degradation I |unclassified	27.43425146
-PWY-2201	folate transformations I|unclassified	115.80586462
-PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	811.5405063
-PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Escherichia.s__Escherichia_coli	2664.37896826
-PWY-7663	gondoate biosynthesis |g__Streptococcus.s__Streptococcus_agalactiae	495.11402348
-PWY-6467	Kdo transfer to lipid IVA III |unclassified	19.18837123
-PWY0-881	superpathway of fatty acid biosynthesis I |unclassified	246.44156082
-PWY-6606	guanosine nucleotides degradation II|g__Staphylococcus.s__Staphylococcus_aureus	948.03016371
-PWY-6700	queuosine biosynthesis|unclassified	90.6679617
-PWY-6317	galactose degradation I |g__Streptococcus.s__Streptococcus_agalactiae	258.11350952
-PWY-7013	L 1,2 propanediol degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	860.88903442
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Pseudomonas.s__Pseudomonas_aeruginosa	264.59552702
-ENTBACSYN-PWY	enterobactin biosynthesis|unclassified	227.27044588
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae	705.67950476
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Streptococcus.s__Streptococcus_agalactiae	368.56944756
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	1689.31799097
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae	384.06128551
-METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	289.82858165
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Streptococcus.s__Streptococcus_agalactiae	285.35629144
-PWY-6151	S adenosyl L methionine cycle I|g__Streptococcus.s__Streptococcus_agalactiae	409.98697536
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae	380.85681772
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2067.88373435
-PWY-7200	superpathway of pyrimidine deoxyribonucleoside salvage|g__Escherichia.s__Escherichia_coli	524.75222768
-PWY-2942	L lysine biosynthesis III|g__Pseudomonas.s__Pseudomonas_aeruginosa	434.94384789
-PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	320.96477039
-PWY-6891	thiazole biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	287.90518208
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae	705.67950476
-PWY-7560	methylerythritol phosphate pathway II|g__Pseudomonas.s__Pseudomonas_aeruginosa	580.37362685
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Streptococcus.s__Streptococcus_agalactiae	269.36147124
-PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Staphylococcus.s__Staphylococcus_aureus	9467.71157061
-PWY-6385	peptidoglycan biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides	812.03316179
-PWY-6837	fatty acid beta oxidation V |g__Rhodobacter.s__Rhodobacter_sphaeroides	82.267447
-FERMENTATION-PWY	mixed acid fermentation|unclassified	24.56707549
-PWY-4984	urea cycle|g__Streptococcus.s__Streptococcus_agalactiae	507.03486709
-PWY-7279	aerobic respiration II  (yeast)|unclassified	1801.83670939
-POLYAMINSYN3-PWY	superpathway of polyamine biosynthesis II|unclassified	90.36940174
-PWY-2201	folate transformations I	207.35386067
-PWY-7413	dTDP 6 deoxy &alpha; D allose biosynthesis|unclassified	11.88476851
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	7532.21102357
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	186.2324897
-PROTOCATECHUATE-ORTHO-CLEAVAGE-PWY	protocatechuate degradation II |g__Pseudomonas.s__Pseudomonas_aeruginosa	266.54206527
-PWY0-781	aspartate superpathway|g__Escherichia.s__Escherichia_coli	3852.39517438
-FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Escherichia.s__Escherichia_coli	3012.19970732
-PWY-5484	glycolysis II |g__Streptococcus.s__Streptococcus_agalactiae	230.8064209
-GLUCARDEG-PWY	D glucarate degradation I|unclassified	63.39553599
-P165-PWY	superpathway of purines degradation in plants|unclassified	16.8571675
-PWY-5690	TCA cycle II |g__Pseudomonas.s__Pseudomonas_aeruginosa	273.24886483
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1767.64033441
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	2909.69565583
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1199.97356797
-PWY0-862	 dodec 5 enoate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	4255.11825415
-PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	279.13563352
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	484.81259198
-PWY-2942	L lysine biosynthesis III|g__Escherichia.s__Escherichia_coli	3469.56543581
-PWY-6167	flavin biosynthesis II |g__Methanobrevibacter.s__Methanobrevibacter_smithii	1103.65774119
-FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Streptococcus.s__Streptococcus_mutans	1726.15096165
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1554.97187132
-PWY-4041	&gamma; glutamyl cycle|g__Streptococcus.s__Streptococcus_agalactiae	357.22684804
-GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|g__Streptococcus.s__Streptococcus_agalactiae	234.11186346
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Escherichia.s__Escherichia_coli	1045.65243736
-NONOXIPENT-PWY	pentose phosphate pathway |g__Streptococcus.s__Streptococcus_agalactiae	1256.57046857
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Staphylococcus.s__Staphylococcus_aureus	10746.7012723
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2572.47078988
-PWY-5367	petroselinate biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	479.83416606
-PWY-7328	superpathway of UDP glucose derived O antigen building blocks biosynthesis|g__Escherichia.s__Escherichia_coli	4028.06139814
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1068.46904313
-PWY-6435	4 hydroxybenzoate biosynthesis V|g__Pseudomonas.s__Pseudomonas_aeruginosa	772.99518162
-COA-PWY	coenzyme A biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	583.99570456
-PWY-6117	spermine and spermidine degradation I|unclassified	9.97625171
-PWY-2723	trehalose degradation V|g__Escherichia.s__Escherichia_coli	3790.75559669
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	292.79913109
-GLYCOL-GLYOXDEG-PWY	superpathway of glycol metabolism and degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	294.74365918
-PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	869.11647109
-PWY-7242	D fructuronate degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	153.24610575
-PWY-5417	catechol degradation III |g__Rhodobacter.s__Rhodobacter_sphaeroides	211.99234581
-PWY-7245	superpathway NAD NADP   NADH NADPH interconversion |g__Pseudomonas.s__Pseudomonas_aeruginosa	429.70353581
-PWY-7654	 dodeca 8,10 dienol biosynthesis	4.81757443
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	815.95986724
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	135.52417984
-PWY-5994	palmitate biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	4058.97348728
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae	313.12173423
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	502.26578072
-PWY66-201	nicotine degradation IV|g__Rhodobacter.s__Rhodobacter_sphaeroides	1097.74670735
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	2860.34862539
-PWY-5079	L phenylalanine degradation III|unclassified	6.5206192
-PPGPPMET-PWY	ppGpp biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12258.8073488
-PWY-6708	ubiquinol 8 biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	4984.47122955
-PWY-5189	tetrapyrrole biosynthesis II |g__Methanobrevibacter.s__Methanobrevibacter_smithii	1869.27843631
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2686.37433669
-PWY-5856	ubiquinol 9 biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	1603.70380768
-PWY-6641	superpathway of sulfolactate degradation|unclassified	13.21464842
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	3900.59706637
-PWY-4702	phytate degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	3002.94172663
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Escherichia.s__Escherichia_coli	565.06704451
-PWY-5690	TCA cycle II |g__Methanobrevibacter.s__Methanobrevibacter_smithii	2245.54201886
-PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	406.57682289
-HISDEG-PWY	L histidine degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	1146.39844454
-PWY-7328	superpathway of UDP glucose derived O antigen building blocks biosynthesis|unclassified	13.7926764
-PWY-5188	tetrapyrrole biosynthesis I |g__Methanobrevibacter.s__Methanobrevibacter_smithii	2357.7531962
-PWY-6309	L tryptophan degradation XI |g__Pseudomonas.s__Pseudomonas_aeruginosa	418.67439109
-PWY-2941	L lysine biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	489.10250936
-PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	505.74692227
-NAD-BIOSYNTHESIS-II	NAD salvage pathway II|g__Pseudomonas.s__Pseudomonas_aeruginosa	241.91089024
-PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	891.11025077
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	381.06191748
-P185-PWY	formaldehyde assimilation III |g__Streptococcus.s__Streptococcus_agalactiae	370.14671717
-PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	445.94420523
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Staphylococcus.s__Staphylococcus_epidermidis	6778.67863694
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	263.18388651
-PWY-5415	catechol degradation I |g__Escherichia.s__Escherichia_coli	253.23082455
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	752.81237337
-PWY-5862	superpathway of demethylmenaquinol 9 biosynthesis|g__Escherichia.s__Escherichia_coli	1639.54069759
-PWY-561	superpathway of glyoxylate cycle and fatty acid degradation|g__Escherichia.s__Escherichia_coli	5495.68701868
-PWY-6385	peptidoglycan biosynthesis III |g__Streptococcus.s__Streptococcus_agalactiae	370.69536959
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Pseudomonas.s__Pseudomonas_aeruginosa	263.3999058
-TYRFUMCAT-PWY	L tyrosine degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	691.32788023
-OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Streptococcus.s__Streptococcus_agalactiae	240.17680805
-PWY-6936	seleno amino acid biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	431.15933468
-PWY-5994	palmitate biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	2813.15818741
-GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|g__Streptococcus.s__Streptococcus_agalactiae	326.19047412
-PWY-6305	putrescine biosynthesis IV|g__Pseudomonas.s__Pseudomonas_aeruginosa	631.30755126
-HISTSYN-PWY	L histidine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1132.62751532
-PWY-6307	L tryptophan degradation X |g__Pseudomonas.s__Pseudomonas_aeruginosa	101.65391341
-PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Escherichia.s__Escherichia_coli	556.96533101
-PWY-5328	superpathway of L methionine salvage and degradation	2843.85104088
-PWY-6531	mannitol cycle|unclassified	41.85342858
-PWY-5742	L arginine degradation IX (arginine	11.09282575
-PWY0-781	aspartate superpathway|unclassified	35.58050169
-RUMP-PWY	formaldehyde oxidation I|g__Staphylococcus.s__Staphylococcus_aureus	10207.4307117
-PWY0-845	superpathway of pyridoxal 5 phosphate biosynthesis and salvage|unclassified	275.19424212
-PWY-6692	Fe oxidation|unclassified	1591.0188921
-PWY-6486	D galacturonate degradation II|unclassified	6.12811943
-PWY0-845	superpathway of pyridoxal 5 phosphate biosynthesis and salvage|g__Pseudomonas.s__Pseudomonas_aeruginosa	955.58548276
-PWY-6565	superpathway of polyamine biosynthesis III|unclassified	65.06157163
-COA-PWY-1	coenzyme A biosynthesis II |g__Streptococcus.s__Streptococcus_agalactiae	289.18872286
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Staphylococcus.s__Staphylococcus_aureus	11389.6633121
-ARGDEG-IV-PWY	L arginine degradation VIII 	413.14165669
-PWY-6700	queuosine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	447.95699648
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli	822.53175687
-NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Pseudomonas.s__Pseudomonas_aeruginosa	580.37362685
-HSERMETANA-PWY	L methionine biosynthesis III|g__Escherichia.s__Escherichia_coli	258.04071557
-PPGPPMET-PWY	ppGpp biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1017.99137983
-PWY-6837	fatty acid beta oxidation V |g__Pseudomonas.s__Pseudomonas_aeruginosa	1113.28921821
-PWY6666-2	dopamine degradation|unclassified	16.87667991
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2841.86388666
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	935.98894114
-PWY-5973	cis vaccenate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1762.9121066
-ANAEROFRUCAT-PWY	homolactic fermentation|g__Streptococcus.s__Streptococcus_agalactiae	255.91042194
-PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	4844.43695908
-PWY-5723	Rubisco shunt|g__Pseudomonas.s__Pseudomonas_aeruginosa	200.37530767
-PWY-5856	ubiquinol 9 biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	2839.19231516
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Streptococcus.s__Streptococcus_agalactiae	235.83321834
-COLANSYN-PWY	colanic acid building blocks biosynthesis|g__Escherichia.s__Escherichia_coli	3813.86057052
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	847.14753882
-PWY-6690	cinnamate and 3 hydroxycinnamate degradation to 2 oxopent 4 enoate|g__Escherichia.s__Escherichia_coli	1403.43643815
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Staphylococcus.s__Staphylococcus_epidermidis	2558.08694352
-PWY-5742	L arginine degradation IX (arginine	4.72292096
-PWY-5845	superpathway of menaquinol 9 biosynthesis|g__Escherichia.s__Escherichia_coli	2086.15005453
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	869.41608143
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	2662.01915754
-ARGDEG-IV-PWY	L arginine degradation VIII |unclassified	4.72292096
-PWY-3801	sucrose degradation II |unclassified	43.29140831
-ORNARGDEG-PWY	superpathway of L arginine and L ornithine degradation|unclassified	67.59290738
-PWY-6168	flavin biosynthesis III |g__Escherichia.s__Escherichia_coli	1076.61192214
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	339.2748428
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	8629.38522048
-PWY-7664	oleate biosynthesis IV |g__Pseudomonas.s__Pseudomonas_aeruginosa	2728.84413265
-DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	780.13280579
-ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast|unclassified	184.58699889
-P125-PWY	superpathway of  butanediol biosynthesis|unclassified	50.56326117
-PWY-7118	chitin degradation to ethanol|unclassified	179.48569416
-PWY-6167	flavin biosynthesis II 	4728.07707794
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	11184.2607862
-HCAMHPDEG-PWY	3 phenylpropanoate and 3 propanoate degradation to 2 oxopent 4 enoate|unclassified	1.42686388
-PWY-5850	superpathway of menaquinol 6 biosynthesis I|g__Escherichia.s__Escherichia_coli	2086.15005453
-PWY-7409	phospholipid remodeling 	2857.98178304
-FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Pseudomonas.s__Pseudomonas_aeruginosa	415.68053269
-PWY-6969	TCA cycle V (2 oxoglutarate	346.96109281
-SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Staphylococcus.s__Staphylococcus_aureus	796.46617638
-PWY66-409	superpathway of purine nucleotide salvage|g__Escherichia.s__Escherichia_coli	1182.85263435
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	600.76339368
-URSIN-PWY	ureide biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	346.33151921
-PENTOSE-P-PWY	pentose phosphate pathway|g__Pseudomonas.s__Pseudomonas_aeruginosa	232.40561581
-PWY0-1061	superpathway of L alanine biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	629.81986142
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Streptococcus.s__Streptococcus_agalactiae	388.54431864
-ARGDEG-PWY	superpathway of L arginine, putrescine, and 4 aminobutanoate degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	792.37856895
-PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	366.47566208
-OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Methanobrevibacter.s__Methanobrevibacter_smithii	3062.91191006
-3-HYDROXYPHENYLACETATE-DEGRADATION-PWY	4 hydroxyphenylacetate degradation|g__Escherichia.s__Escherichia_coli	1868.56730475
-ARO-PWY	chorismate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	531.17556088
-PWY-5079	L phenylalanine degradation III	7.14741288
-PWY-6305	putrescine biosynthesis IV|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1780.01452698
-CATECHOL-ORTHO-CLEAVAGE-PWY	catechol degradation to &beta; ketoadipate|g__Rhodobacter.s__Rhodobacter_sphaeroides	480.71275029
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	11346.2826023
-PWY-5857	ubiquinol 10 biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	1649.4470132
-PWY-4702	phytate degradation I|g__Staphylococcus.s__Staphylococcus_aureus	666.66666667
-PWY-6703	preQ0 biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	796.05490757
-PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Streptococcus.s__Streptococcus_agalactiae	223.47351181
-PWY-6435	4 hydroxybenzoate biosynthesis V|g__Staphylococcus.s__Staphylococcus_aureus	9409.37733628
-PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Staphylococcus.s__Staphylococcus_aureus	10064.1302003
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Streptococcus.s__Streptococcus_agalactiae	616.19648266
-PWY-5855	ubiquinol 7 biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	1649.4470132
-PWY0-845	superpathway of pyridoxal 5 phosphate biosynthesis and salvage|g__Rhodobacter.s__Rhodobacter_sphaeroides	779.91889375
--- a/test-data/sample_2_specific_pathways.txt	Wed Apr 20 09:15:27 2016 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1336 +0,0 @@
-id	name	abundances
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3694.54369841
-PWY-7111	pyruvate fermentation to isobutanol |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	7136.11057394
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	1482.08811185
-PWY-5392	reductive TCA cycle II|unclassified	13.94276095
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	1351.86626275
-PWY-5855	ubiquinol 7 biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	3461.49933469
-PWY0-1061	superpathway of L alanine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2801.26577532
-ARGORNPROST-PWY	arginine, ornithine and proline interconversion|g__Enterococcus.s__Enterococcus_faecalis	229.86451776
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3239.55702033
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	1264.65018972
-PWY-5918	superpathay of heme biosynthesis from glutamate|g__Acinetobacter.s__Acinetobacter_baumannii	3739.74164481
-PWY-5189	tetrapyrrole biosynthesis II |g__Deinococcus.s__Deinococcus_radiodurans	939.65853472
-PWY-1042	glycolysis IV |g__Propionibacterium.s__Propionibacterium_acnes	4307.94946602
-HISDEG-PWY	L histidine degradation I|g__Propionibacterium.s__Propionibacterium_acnes	3254.94984635
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2519.87744949
-FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Propionibacterium.s__Propionibacterium_acnes	1675.37062714
-PWY-6895	superpathway of thiamin diphosphate biosynthesis II|unclassified	64.56529023
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1522.60994915
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus	2160.13104462
-PWY-4984	urea cycle|g__Bacteroides.s__Bacteroides_vulgatus	2013.67758619
-3-HYDROXYPHENYLACETATE-DEGRADATION-PWY	4 hydroxyphenylacetate degradation|g__Deinococcus.s__Deinococcus_radiodurans	11558.1286712
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Enterococcus.s__Enterococcus_faecalis	256.90178056
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3873.13594163
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Listeria.s__Listeria_monocytogenes	724.9534439
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2896.52791818
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3526.58041039
-PWY-6151	S adenosyl L methionine cycle I|g__Acinetobacter.s__Acinetobacter_baumannii	3884.95626038
-COA-PWY	coenzyme A biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2145.77462112
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Enterococcus.s__Enterococcus_faecalis	413.84697579
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2788.62370201
-PWY0-1296	purine ribonucleosides degradation|g__Listeria.s__Listeria_monocytogenes	1662.84626817
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Helicobacter.s__Helicobacter_pylori	2256.50698827
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii	5271.876702
-PWY-6317	galactose degradation I |g__Listeria.s__Listeria_monocytogenes	918.92772969
-PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Enterococcus.s__Enterococcus_faecalis	406.73179148
-PWY-6168	flavin biosynthesis III |g__Acinetobacter.s__Acinetobacter_baumannii	2824.41834145
-PWY-6612	superpathway of tetrahydrofolate biosynthesis|unclassified	35.05681499
-GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2877.28222884
-METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Enterococcus.s__Enterococcus_faecalis	807.63764403
-PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	991.29148011
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2904.45909841
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	2187.88294871
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	639.78816326
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Helicobacter.s__Helicobacter_pylori	1873.05183074
-GLYCOLYSIS	glycolysis I |g__Deinococcus.s__Deinococcus_radiodurans	19497.1180668
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Listeria.s__Listeria_monocytogenes	189.69689549
-SO4ASSIM-PWY	sulfate reduction I |g__Neisseria.s__Neisseria_meningitidis	4105.97545595
-HSERMETANA-PWY	L methionine biosynthesis III|g__Bacillus.s__Bacillus_cereus_thuringiensis	111.72297396
-PWY-5690	TCA cycle II |g__Propionibacterium.s__Propionibacterium_acnes	4521.68538515
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	1602.39397488
-PWY-5676	acetyl CoA fermentation to butanoate II|g__Bacillus.s__Bacillus_cereus_thuringiensis	461.68965142
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	3493.84003847
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	4230.35307534
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	3278.3838893
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	3161.26099242
-PWY-6518	glycocholate metabolism 	31.02285654
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Deinococcus.s__Deinococcus_radiodurans	4453.56148803
-PWY-1042	glycolysis IV |g__Listeria.s__Listeria_monocytogenes	1563.6784061
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Propionibacterium.s__Propionibacterium_acnes	3345.0637913
-PWY-6385	peptidoglycan biosynthesis III |g__Helicobacter.s__Helicobacter_pylori	1879.63887366
-PWY-6703	preQ0 biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	329.45200201
-PWY-6737	starch degradation V|g__Actinomyces.s__Actinomyces_odontolyticus	136.36873365
-PWY-7279	aerobic respiration II  (yeast)|g__Helicobacter.s__Helicobacter_pylori	2519.62687096
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	785.52675353
-PWY-5659	GDP mannose biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1479.21878485
-VALDEG-PWY	L valine degradation I|g__Acinetobacter.s__Acinetobacter_baumannii	10233.0339866
-PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	814.4853197
-PWY-5973	cis vaccenate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	7639.28643394
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Propionibacterium.s__Propionibacterium_acnes	3583.93206719
-PWY3O-19	ubiquinol 6 biosynthesis from 4 hydroxybenzoate |unclassified	30.82278484
-PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	3392.33946518
-PWY-5103	L isoleucine biosynthesis III|g__Neisseria.s__Neisseria_meningitidis	2998.96553709
-P164-PWY	purine nucleobases degradation I 	15114.215552
-PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii	355.24768044
-PWY-6859	all trans farnesol biosynthesis|g__Listeria.s__Listeria_monocytogenes	514.95715085
-PWY-5154	L arginine biosynthesis III |g__Clostridium.s__Clostridium_beijerinckii	693.39315525
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis	968.53544876
-PPGPPMET-PWY	ppGpp biosynthesis|g__Helicobacter.s__Helicobacter_pylori	2628.5944911
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Listeria.s__Listeria_monocytogenes	615.08911013
-PWY0-862	 dodec 5 enoate biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2147.95999766
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	632.35178259
-PWY-6700	queuosine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1974.10098045
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3211.71845669
-COA-PWY	coenzyme A biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	2921.74694522
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	869.37459409
-PWY-6876	isopropanol biosynthesis|unclassified	13.37483633
-PWY-5419	catechol degradation to 2 oxopent 4 enoate II|unclassified	50.38002752
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	4661.23493736
-PWY66-389	phytol degradation|g__Enterococcus.s__Enterococcus_faecalis	637.76203668
-PWY-6837	fatty acid beta oxidation V |g__Deinococcus.s__Deinococcus_radiodurans	7305.90697255
-PWY-6432	curcuminoid biosynthesis	7.68372594
-PWY-7237	myo , chiro  and scillo inositol degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis	568.7198714
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3315.62923672
-VALSYN-PWY	L valine biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	394.39918979
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Clostridium.s__Clostridium_beijerinckii	434.89832699
-PWY-7400	L arginine biosynthesis IV |g__Neisseria.s__Neisseria_meningitidis	2661.7116863
-COA-PWY-1	coenzyme A biosynthesis II |g__Bacillus.s__Bacillus_cereus_thuringiensis	212.93224172
-NONOXIPENT-PWY	pentose phosphate pathway |g__Listeria.s__Listeria_monocytogenes	5326.38566827
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	1849.86787589
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2819.88190725
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	2600.28006272
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Actinomyces.s__Actinomyces_odontolyticus	1338.6920242
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Bacteroides.s__Bacteroides_vulgatus	3128.88063002
-PWY66-400	glycolysis VI |g__Bacillus.s__Bacillus_cereus_thuringiensis	132.0751521
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	24119.7395629
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	889.10221331
-PWY-7118	chitin degradation to ethanol|g__Bacillus.s__Bacillus_cereus_thuringiensis	400.33401129
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Deinococcus.s__Deinococcus_radiodurans	17898.8070302
-BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2486.11794381
-PWY-6383	mono trans, poly cis decaprenyl phosphate biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	304.27562067
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	3419.4743584
-PWY-7400	L arginine biosynthesis IV |g__Deinococcus.s__Deinococcus_radiodurans	14350.7130175
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Helicobacter.s__Helicobacter_pylori	2339.85802285
-PWY-7118	chitin degradation to ethanol|g__Acinetobacter.s__Acinetobacter_baumannii	5378.28037933
-PWY-2723	trehalose degradation V|g__Propionibacterium.s__Propionibacterium_acnes	2297.0483113
-PWY-922	mevalonate pathway I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	993.66407601
-PWY-5871	ubiquinol 9 biosynthesis 	4792.25650207
-PWY-5675	nitrate reduction V |g__Deinococcus.s__Deinococcus_radiodurans	26753.0703844
-DENITRIFICATION-PWY	nitrate reduction I |unclassified	22.35489484
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	3194.01708626
-PWY66-400	glycolysis VI |g__Propionibacterium.s__Propionibacterium_acnes	2923.04364527
-PWY-6630	superpathway of L tyrosine biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1966.89849896
-PWY-6269	adenosylcobalamin salvage from cobinamide II|unclassified	40.29083544
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	2577.84779196
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Listeria.s__Listeria_monocytogenes	1071.71634204
-PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Bacillus.s__Bacillus_cereus_thuringiensis	600.82529737
-PWY-6700	queuosine biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	338.91062933
-PWY66-389	phytol degradation|g__Neisseria.s__Neisseria_meningitidis	1919.90040023
-PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus	1828.39826573
-ILEUDEG-PWY	L isoleucine degradation I|g__Acinetobacter.s__Acinetobacter_baumannii	5914.0440875
-PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	355.24768044
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Helicobacter.s__Helicobacter_pylori	2855.08494046
-NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Bacteroides.s__Bacteroides_vulgatus	3383.81205644
-PWY-6936	seleno amino acid biosynthesis|g__Listeria.s__Listeria_monocytogenes	2432.02258862
-PWY66-422	D galactose degradation V |g__Bacteroides.s__Bacteroides_vulgatus	3445.47022694
-PWY-6859	all trans farnesol biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1570.10152878
-PWY-5705	allantoin degradation to glyoxylate III|g__Enterococcus.s__Enterococcus_faecalis	505.30548539
-GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Propionibacterium.s__Propionibacterium_acnes	2849.08250393
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Acinetobacter.s__Acinetobacter_baumannii	5476.26314845
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis	1089.06368368
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	5022.94337093
-ANAEROFRUCAT-PWY	homolactic fermentation|g__Bacillus.s__Bacillus_cereus_thuringiensis	263.03633579
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	4405.81935013
-PWY0-862	 dodec 5 enoate biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1210.4285645
-P185-PWY	formaldehyde assimilation III |g__Listeria.s__Listeria_monocytogenes	2893.64755634
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	5144.30297306
-PWYG-321	mycolate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	13749.658304
-PWY-5109	2 methylbutanoate biosynthesis|unclassified	16.6390177
-PWY-5659	GDP mannose biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	1348.71953082
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	2829.07681544
-THISYN-PWY	superpathway of thiamin diphosphate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2038.3072711
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Deinococcus.s__Deinococcus_radiodurans	10616.7232397
-PWY-7663	gondoate biosynthesis |g__Propionibacterium.s__Propionibacterium_acnes	3688.02537208
-PWY66-409	superpathway of purine nucleotide salvage|g__Helicobacter.s__Helicobacter_pylori	1779.81089261
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Bacteroides.s__Bacteroides_vulgatus	2676.68898356
-PWY-6590	superpathway of Clostridium acetobutylicum acidogenic fermentation|g__Bacillus.s__Bacillus_cereus_thuringiensis	219.54398807
-VALSYN-PWY	L valine biosynthesis|g__Neisseria.s__Neisseria_meningitidis	4169.69983143
-PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |unclassified	58.58754289
-PWY66-409	superpathway of purine nucleotide salvage|g__Actinomyces.s__Actinomyces_odontolyticus	684.1632169
-PWY-7374	1,4 dihydroxy 6 naphthoate biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	425.64087175
-PWY-7111	pyruvate fermentation to isobutanol |g__Helicobacter.s__Helicobacter_pylori	1895.1322225
-PWY-6897	thiamin salvage II|g__Helicobacter.s__Helicobacter_pylori	1295.70087326
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Deinococcus.s__Deinococcus_radiodurans	12740.2107596
-PWY0-1586	peptidoglycan maturation |g__Actinomyces.s__Actinomyces_odontolyticus	1100.06511193
-GALACT-GLUCUROCAT-PWY	superpathway of hexuronide and hexuronate degradation|g__Bacteroides.s__Bacteroides_vulgatus	2806.88471418
-GALACT-GLUCUROCAT-PWY	superpathway of hexuronide and hexuronate degradation|g__Clostridium.s__Clostridium_beijerinckii	976.01685811
-PWY-922	mevalonate pathway I|g__Listeria.s__Listeria_monocytogenes	435.53966108
-PWY-5097	L lysine biosynthesis VI|g__Acinetobacter.s__Acinetobacter_baumannii	4327.08456345
-PWY-5659	GDP mannose biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	2236.88960587
-VALSYN-PWY	L valine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	23044.8431699
-FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|unclassified	40.21408071
-PWY-6630	superpathway of L tyrosine biosynthesis|unclassified	182.79663694
-PWY0-862	 dodec 5 enoate biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2316.65889918
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	188.39572178
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Acinetobacter.s__Acinetobacter_baumannii	6218.25342518
-GLYCOLYSIS	glycolysis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2356.22834974
-PWY-7003	glycerol degradation to butanol|unclassified	77.73337386
-PWY-6318	L phenylalanine degradation IV |g__Clostridium.s__Clostridium_beijerinckii	530.61378177
-PWY-2942	L lysine biosynthesis III|g__Enterococcus.s__Enterococcus_faecalis	425.29782159
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Deinococcus.s__Deinococcus_radiodurans	11045.6467714
-PWY0-1261	anhydromuropeptides recycling|g__Neisseria.s__Neisseria_meningitidis	2536.13348689
-PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	2625.62032344
-P241-PWY	coenzyme B biosynthesis|unclassified	79.24405735
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3919.43241173
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Acinetobacter.s__Acinetobacter_baumannii	5640.40248912
-PWY-6519	8 amino 7 oxononanoate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2929.71604425
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1803.47495706
-PWY-5004	superpathway of L citrulline metabolism|unclassified	22.95583945
-PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2318.02378926
-GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Enterococcus.s__Enterococcus_faecalis	1746.83710226
-PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Listeria.s__Listeria_monocytogenes	229.94001509
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis	447.28560835
-PWY-6897	thiamin salvage II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4004.38301192
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1045.47945312
-NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Acinetobacter.s__Acinetobacter_baumannii	3071.89162094
-PWY-6138	CMP N acetylneuraminate biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	588.50176473
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis	327.25118449
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Deinococcus.s__Deinococcus_radiodurans	2604.81840157
-PWY-6385	peptidoglycan biosynthesis III |g__Acinetobacter.s__Acinetobacter_baumannii	5127.6418564
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	293.81784981
-PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III|g__Bacillus.s__Bacillus_cereus_thuringiensis	323.98215177
-PWY-6385	peptidoglycan biosynthesis III |g__Neisseria.s__Neisseria_meningitidis	1913.07898701
-PWY-7268	NAD NADP NADH NADPH cytosolic interconversion |unclassified	76.01809708
-PWY66-400	glycolysis VI |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1172.75289719
-PWY-5347	superpathway of L methionine biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	4991.06518419
-ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast|g__Acinetobacter.s__Acinetobacter_baumannii	3482.20730509
-DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	2405.38579191
-PWY-5484	glycolysis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1832.48807782
-PWY-6609	adenine and adenosine salvage III|g__Enterococcus.s__Enterococcus_faecalis	2972.97776369
-HEMESYN2-PWY	heme biosynthesis II |g__Listeria.s__Listeria_monocytogenes	369.10390205
-PWY-6936	seleno amino acid biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	822.84423683
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Enterococcus.s__Enterococcus_faecalis	460.2123545
-DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	2786.3360794
-PWY-7663	gondoate biosynthesis |g__Listeria.s__Listeria_monocytogenes	1719.63205427
-PWY-5508	adenosylcobalamin biosynthesis from cobyrinate a,c diamide II|unclassified	86.58867118
-PWY-6703	preQ0 biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	4224.76703949
-GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3676.25049099
-RHAMCAT-PWY	L rhamnose degradation I|g__Listeria.s__Listeria_monocytogenes	620.56760412
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Listeria.s__Listeria_monocytogenes	257.86807291
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	5274.15744108
-ARO-PWY	chorismate biosynthesis I|g__Listeria.s__Listeria_monocytogenes	756.73018875
-METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Acinetobacter.s__Acinetobacter_baumannii	3825.80502937
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Listeria.s__Listeria_monocytogenes	649.10119287
-PWY-5989	stearate biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis	538.05412867
-PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Enterococcus.s__Enterococcus_faecalis	264.06357646
-PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Clostridium.s__Clostridium_beijerinckii	627.87783768
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Neisseria.s__Neisseria_meningitidis	2288.34277634
-PWY-6151	S adenosyl L methionine cycle I|g__Listeria.s__Listeria_monocytogenes	1215.12784299
-PWY-7383	anaerobic energy metabolism |unclassified	138.33469461
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Bacteroides.s__Bacteroides_vulgatus	3218.91492167
-DHGLUCONATE-PYR-CAT-PWY	glucose degradation |g__Pseudomonas.s__Pseudomonas_aeruginosa	243.38139554
-P185-PWY	formaldehyde assimilation III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2799.70889862
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans	886.61948329
-P381-PWY	adenosylcobalamin biosynthesis II 	590.24319852
-GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans	12450.9258487
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Actinomyces.s__Actinomyces_odontolyticus	467.34843911
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	2466.23486377
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3650.202291
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4569.16166358
-SO4ASSIM-PWY	sulfate reduction I |g__Acinetobacter.s__Acinetobacter_baumannii	4870.92429481
-PWY490-3	nitrate reduction VI |g__Acinetobacter.s__Acinetobacter_baumannii	3869.15321071
-HISTSYN-PWY	L histidine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	1386.89743736
-PWY-6151	S adenosyl L methionine cycle I|g__Actinomyces.s__Actinomyces_odontolyticus	2074.89787029
-PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Bacteroides.s__Bacteroides_vulgatus	1116.61263871
-PWY-241	C4 photosynthetic carbon assimilation cycle, NADP ME type|g__Enterococcus.s__Enterococcus_faecalis	376.84546738
-PWY-6071	superpathway of phenylethylamine degradation|unclassified	106.1425099
-PWY-6859	all trans farnesol biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	710.67893753
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2332.71157831
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Listeria.s__Listeria_monocytogenes	430.81396281
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Deinococcus.s__Deinococcus_radiodurans	2401.85536336
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Listeria.s__Listeria_monocytogenes	1719.63205427
-RUMP-PWY	formaldehyde oxidation I|unclassified	30.08291548
-P161-PWY	acetylene degradation|g__Listeria.s__Listeria_monocytogenes	2320.41473517
-PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Helicobacter.s__Helicobacter_pylori	3306.54421791
-PWY-5690	TCA cycle II |g__Bacillus.s__Bacillus_cereus_thuringiensis	281.93525144
-PWY-7560	methylerythritol phosphate pathway II|g__Listeria.s__Listeria_monocytogenes	764.21860024
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus	2437.73403088
-GLUCONEO-PWY	gluconeogenesis I|g__Neisseria.s__Neisseria_meningitidis	1500.25755619
-PWY-4981	L proline biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis	157.26884794
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	4474.32771701
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	14335.8681172
-PWY-6527	stachyose degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	5297.71672962
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Propionibacterium.s__Propionibacterium_acnes	3000.7046417
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	426.81375832
-ANAEROFRUCAT-PWY	homolactic fermentation|g__Listeria.s__Listeria_monocytogenes	1159.50637595
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	758.81838047
-PWY-7560	methylerythritol phosphate pathway II|g__Neisseria.s__Neisseria_meningitidis	2354.85936337
-LYSINE-AMINOAD-PWY	L lysine biosynthesis IV|unclassified	24.98537656
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Neisseria.s__Neisseria_meningitidis	1942.65867365
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Acinetobacter.s__Acinetobacter_baumannii	11709.2526667
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Acinetobacter.s__Acinetobacter_baumannii	1685.02577447
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Listeria.s__Listeria_monocytogenes	189.69689549
-PWY66-422	D galactose degradation V |g__Enterococcus.s__Enterococcus_faecalis	1346.93451983
-PWY0-321	phenylacetate degradation I |unclassified	95.84027976
-PWY-7242	D fructuronate degradation|g__Bacteroides.s__Bacteroides_vulgatus	4462.45438141
-PWY0-1586	peptidoglycan maturation |g__Propionibacterium.s__Propionibacterium_acnes	4202.16626725
-PWY-5686	UMP biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2928.92741977
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	1405.32076754
-GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|g__Bacteroides.s__Bacteroides_vulgatus	3288.91968366
-FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Neisseria.s__Neisseria_meningitidis	1826.86893506
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Neisseria.s__Neisseria_meningitidis	920.02950616
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Propionibacterium.s__Propionibacterium_acnes	1810.8272942
-PWY-6609	adenine and adenosine salvage III|g__Listeria.s__Listeria_monocytogenes	1693.81452069
-PWY-5692	allantoin degradation to glyoxylate II|g__Enterococcus.s__Enterococcus_faecalis	329.86545514
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Actinomyces.s__Actinomyces_odontolyticus	1717.02311501
-PWY-7111	pyruvate fermentation to isobutanol |g__Bacillus.s__Bacillus_cereus_thuringiensis	614.53647514
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2244.5134557
-ARGSYN-PWY	L arginine biosynthesis I |g__Listeria.s__Listeria_monocytogenes	591.35934786
-PWY-6859	all trans farnesol biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	295.76188033
-URDEGR-PWY	superpathway of allantoin degradation in plants|g__Enterococcus.s__Enterococcus_faecalis	329.86545514
-PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Neisseria.s__Neisseria_meningitidis	1988.67186312
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	896.07644286
-PENTOSE-P-PWY	pentose phosphate pathway|g__Propionibacterium.s__Propionibacterium_acnes	2788.36551396
-PWY-6936	seleno amino acid biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	3228.87172975
-PWY-3661	glycine betaine degradation I|unclassified	7.15107345
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Listeria.s__Listeria_monocytogenes	1217.47081782
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis	1023.63028583
-P108-PWY	pyruvate fermentation to propanoate I|g__Propionibacterium.s__Propionibacterium_acnes	4083.37128235
-COA-PWY	coenzyme A biosynthesis I|g__Listeria.s__Listeria_monocytogenes	236.80451457
-PWY-5097	L lysine biosynthesis VI|g__Actinomyces.s__Actinomyces_odontolyticus	478.68352308
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	414.66961139
-HSERMETANA-PWY	L methionine biosynthesis III|g__Actinomyces.s__Actinomyces_odontolyticus	1680.84469149
-PWY-6700	queuosine biosynthesis|g__Helicobacter.s__Helicobacter_pylori	2655.07607868
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis	113.90438391
-THISYN-PWY	superpathway of thiamin diphosphate biosynthesis I|unclassified	98.07533218
-PWY-6897	thiamin salvage II|g__Acinetobacter.s__Acinetobacter_baumannii	2072.79330369
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Bacteroides.s__Bacteroides_vulgatus	3955.21329215
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Listeria.s__Listeria_monocytogenes	408.30408098
-PWY-5870	ubiquinol 8 biosynthesis |unclassified	21.93332693
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Propionibacterium.s__Propionibacterium_acnes	3046.78088739
-PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Propionibacterium.s__Propionibacterium_acnes	796.16961711
-PWY-6700	queuosine biosynthesis|g__Listeria.s__Listeria_monocytogenes	770.90431064
-NONOXIPENT-PWY	pentose phosphate pathway |g__Enterococcus.s__Enterococcus_faecalis	741.54553744
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	3135.15338755
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Helicobacter.s__Helicobacter_pylori	3547.35491545
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Listeria.s__Listeria_monocytogenes	408.07724703
-COA-PWY-1	coenzyme A biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii	4582.59952926
-PWY-6168	flavin biosynthesis III |g__Helicobacter.s__Helicobacter_pylori	1058.49638514
-PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Deinococcus.s__Deinococcus_radiodurans	5457.45203274
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Bacillus.s__Bacillus_cereus_thuringiensis	192.06414662
-PWY-6692	Fe oxidation|g__Helicobacter.s__Helicobacter_pylori	5199.67510705
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Acinetobacter.s__Acinetobacter_baumannii	1808.74836507
-PWY-6309	L tryptophan degradation XI |g__Bacillus.s__Bacillus_cereus_thuringiensis	260.21741406
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Deinococcus.s__Deinococcus_radiodurans	9778.40841625
-BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	2053.00506977
-PWY-5659	GDP mannose biosynthesis|g__Helicobacter.s__Helicobacter_pylori	1792.81193061
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Clostridium.s__Clostridium_beijerinckii	862.66766177
-PWY-4981	L proline biosynthesis II |g__Bacteroides.s__Bacteroides_vulgatus	2337.74199143
-PWY-5686	UMP biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	1001.70803084
-PWY-5189	tetrapyrrole biosynthesis II |g__Listeria.s__Listeria_monocytogenes	631.96864874
-PWY-5505	L glutamate and L glutamine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	15848.4204837
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2906.34521978
-DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	3017.87567852
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Helicobacter.s__Helicobacter_pylori	1177.95162052
-PWY-5104	L isoleucine biosynthesis IV|g__Bacteroides.s__Bacteroides_vulgatus	2752.89165233
-PWY0-1479	tRNA processing|g__Neisseria.s__Neisseria_meningitidis	670.56108389
-PWY66-400	glycolysis VI |g__Actinomyces.s__Actinomyces_odontolyticus	829.42911402
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	5454.84941625
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	1877.38281294
-COA-PWY	coenzyme A biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis	240.10585729
-P161-PWY	acetylene degradation|g__Deinococcus.s__Deinococcus_radiodurans	2709.71225087
-NONOXIPENT-PWY	pentose phosphate pathway |g__Helicobacter.s__Helicobacter_pylori	2216.02212993
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes	3582.76775485
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis	1110.16380263
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Listeria.s__Listeria_monocytogenes	846.16316362
-URSIN-PWY	ureide biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	3065.51678709
-CENTFERM-PWY	pyruvate fermentation to butanoate|unclassified	22.7761348
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	4710.41203706
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Bacteroides.s__Bacteroides_vulgatus	1638.76800692
-PWY-7312	dTDP D &beta; fucofuranose biosynthesis	58.8044513
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Actinomyces.s__Actinomyces_odontolyticus	268.6261334
-PWY-4041	&gamma; glutamyl cycle|g__Acinetobacter.s__Acinetobacter_baumannii	4294.63233594
-PWY-3841	folate transformations II|g__Listeria.s__Listeria_monocytogenes	825.20149758
-PWY-6383	mono trans, poly cis decaprenyl phosphate biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	3275.61621329
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	4210.36014702
-NONOXIPENT-PWY	pentose phosphate pathway |g__Propionibacterium.s__Propionibacterium_acnes	3276.97159311
-PWY66-400	glycolysis VI |g__Enterococcus.s__Enterococcus_faecalis	656.31986706
-PWY-5857	ubiquinol 10 biosynthesis |g__Neisseria.s__Neisseria_meningitidis	1287.84428004
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Acinetobacter.s__Acinetobacter_baumannii	1521.08471591
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	2245.43878367
-PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Acinetobacter.s__Acinetobacter_baumannii	8100.55314436
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes	3538.79265989
-PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1924.67889517
-PWY-5030	L histidine degradation III|g__Bacteroides.s__Bacteroides_vulgatus	2001.09035745
-HISDEG-PWY	L histidine degradation I|g__Bacteroides.s__Bacteroides_vulgatus	1711.35052183
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Deinococcus.s__Deinococcus_radiodurans	1615.1629544
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2439.34418498
-PWY-7185	UTP and CTP dephosphorylation I	95.19614057
-ANAEROFRUCAT-PWY	homolactic fermentation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1679.80086076
-DENITRIFICATION-PWY	nitrate reduction I |g__Neisseria.s__Neisseria_meningitidis	2149.83026387
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4124.24308505
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Neisseria.s__Neisseria_meningitidis	602.97052842
-PPGPPMET-PWY	ppGpp biosynthesis|g__Listeria.s__Listeria_monocytogenes	842.48903563
-P185-PWY	formaldehyde assimilation III |g__Bacillus.s__Bacillus_cereus_thuringiensis	189.13084629
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3315.62923672
-PWY66-409	superpathway of purine nucleotide salvage|g__Propionibacterium.s__Propionibacterium_acnes	2451.34108681
-PWY-2941	L lysine biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis	393.61655046
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	5478.04779907
-PWY-5918	superpathay of heme biosynthesis from glutamate|g__Neisseria.s__Neisseria_meningitidis	1691.83225145
-PWY-1861	formaldehyde assimilation II |g__Clostridium.s__Clostridium_beijerinckii	2301.97474714
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	2275.09122197
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2350.87466711
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	1995.52087354
-PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Enterococcus.s__Enterococcus_faecalis	1454.29897401
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Listeria.s__Listeria_monocytogenes	1010.46433416
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	896.07833824
-PWY-7663	gondoate biosynthesis |g__Helicobacter.s__Helicobacter_pylori	3583.60981274
-NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Helicobacter.s__Helicobacter_pylori	1985.27116196
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Neisseria.s__Neisseria_meningitidis	1177.5189052
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	1902.04563403
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis	225.61787841
-ARO-PWY	chorismate biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	3953.80149271
-PWY-6145	superpathway of sialic acids and CMP sialic acids biosynthesis	1043.90765514
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	386.81457205
-PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Helicobacter.s__Helicobacter_pylori	1869.14043309
-PWY0-1586	peptidoglycan maturation |g__Enterococcus.s__Enterococcus_faecalis	1740.81264404
-PWY-5989	stearate biosynthesis II |g__Listeria.s__Listeria_monocytogenes	579.68173423
-GLUTORN-PWY	L ornithine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	931.26241674
-PWY-7392	taxadiene biosynthesis |g__Listeria.s__Listeria_monocytogenes	528.8369378
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Listeria.s__Listeria_monocytogenes	369.10390205
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	2224.77868866
-PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|g__Clostridium.s__Clostridium_beijerinckii	498.43989293
-COA-PWY	coenzyme A biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	519.3618184
-PWY-2942	L lysine biosynthesis III|g__Listeria.s__Listeria_monocytogenes	812.62846392
-ARO-PWY	chorismate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	2091.72664658
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	1886.59194295
-PWY-6892	thiazole biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis	368.03057218
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Neisseria.s__Neisseria_meningitidis	4361.62391022
-PWY-3841	folate transformations II|g__Enterococcus.s__Enterococcus_faecalis	329.59684996
-PWY-6107	chlorosalicylate degradation|unclassified	15.72093159
-PWY-1042	glycolysis IV |g__Bacteroides.s__Bacteroides_vulgatus	6063.94405517
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes	3029.41604745
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	15291.3801748
-PWY0-1061	superpathway of L alanine biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	215.29563029
-ARO-PWY	chorismate biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	980.49882748
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis	1253.1079087
-PWY-6307	L tryptophan degradation X |g__Bacillus.s__Bacillus_cereus_thuringiensis	496.30763067
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	1973.5755884
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Listeria.s__Listeria_monocytogenes	1827.88551255
-GLUTORN-PWY	L ornithine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2134.93507841
-COBALSYN-PWY	adenosylcobalamin salvage from cobinamide I|g__Bacteroides.s__Bacteroides_vulgatus	2061.10774563
-PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	2291.27775587
-GLYCOLYSIS-TCA-GLYOX-BYPASS	superpathway of glycolysis, pyruvate dehydrogenase, TCA, and glyoxylate bypass|g__Bacillus.s__Bacillus_cereus_thuringiensis	224.6896486
-PWY0-1296	purine ribonucleosides degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4562.3093788
-PWY-5028	L histidine degradation II|g__Propionibacterium.s__Propionibacterium_acnes	3251.43582313
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Acinetobacter.s__Acinetobacter_baumannii	2323.39260416
-GLUTORN-PWY	L ornithine biosynthesis|g__Listeria.s__Listeria_monocytogenes	524.24224246
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3038.77915164
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Neisseria.s__Neisseria_meningitidis	1880.76234706
-PWY-6519	8 amino 7 oxononanoate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	1979.89944847
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Listeria.s__Listeria_monocytogenes	640.24399241
-PWY-7389	superpathway of anaerobic energy metabolism |unclassified	95.22735418
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3600.079271
-BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	6031.76648166
-PWY-5913	TCA cycle VI |g__Neisseria.s__Neisseria_meningitidis	7220.94883584
-PWY-6897	thiamin salvage II|g__Neisseria.s__Neisseria_meningitidis	3523.63515029
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Helicobacter.s__Helicobacter_pylori	659.1660862
-PWY-6588	pyruvate fermentation to acetone|g__Bacillus.s__Bacillus_cereus_thuringiensis	351.41462811
-PWY-6270	isoprene biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	2846.92097767
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|unclassified	104.03452488
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3634.05523733
-PWY-7384	anaerobic energy metabolism |unclassified	77.89029517
-PWY-6143	CMP pseudaminate biosynthesis|g__Helicobacter.s__Helicobacter_pylori	2316.27428647
-PWY-6892	thiazole biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus	3697.13917982
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Listeria.s__Listeria_monocytogenes	1004.24368286
-PWY-6471	peptidoglycan biosynthesis IV |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3509.16115161
-HISTSYN-PWY	L histidine biosynthesis|g__Listeria.s__Listeria_monocytogenes	622.79212328
-VALSYN-PWY	L valine biosynthesis|g__Helicobacter.s__Helicobacter_pylori	1576.17203155
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	1514.6877209
-PWY-6151	S adenosyl L methionine cycle I|g__Neisseria.s__Neisseria_meningitidis	2231.41328599
-PWY-5420	catechol degradation II |unclassified	77.54697596
-PWY0-1586	peptidoglycan maturation |g__Listeria.s__Listeria_monocytogenes	2507.99823245
-PWY-5973	cis vaccenate biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	569.26858062
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Listeria.s__Listeria_monocytogenes	648.03910126
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Enterococcus.s__Enterococcus_faecalis	811.47075606
-PWY-5109	2 methylbutanoate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	4642.52154571
-PWY-6936	seleno amino acid biosynthesis|g__Helicobacter.s__Helicobacter_pylori	3340.01138129
-PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Helicobacter.s__Helicobacter_pylori	1869.14043309
-PWY-6269	adenosylcobalamin salvage from cobinamide II	6121.56531931
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans	8674.35478181
-KETOGLUCONMET-PWY	ketogluconate metabolism|g__Acinetobacter.s__Acinetobacter_baumannii	4879.21971687
-PWY-5659	GDP mannose biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1506.4361728
-COBALSYN-PWY	adenosylcobalamin salvage from cobinamide I|g__Acinetobacter.s__Acinetobacter_baumannii	3892.17406542
-PWY-5103	L isoleucine biosynthesis III|g__Bacteroides.s__Bacteroides_vulgatus	2045.38743152
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis	352.03509417
-HSERMETANA-PWY	L methionine biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	529.30612432
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Listeria.s__Listeria_monocytogenes	865.54801455
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	2556.04783364
-PWY3O-355	stearate biosynthesis III |g__Acinetobacter.s__Acinetobacter_baumannii	9682.18888355
-PWY-6519	8 amino 7 oxononanoate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	9018.79169511
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Bacteroides.s__Bacteroides_vulgatus	2083.28920568
-PWY6666-2	dopamine degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis	441.4988008
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Actinomyces.s__Actinomyces_odontolyticus	1163.89622401
-PWY-7046	4 coumarate degradation |unclassified	19.45543615
-GLUCONEO-PWY	gluconeogenesis I|g__Clostridium.s__Clostridium_beijerinckii	938.08672748
-VALSYN-PWY	L valine biosynthesis|g__Listeria.s__Listeria_monocytogenes	1430.81949626
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2768.45019645
-PWY-5659	GDP mannose biosynthesis|g__Listeria.s__Listeria_monocytogenes	632.43764388
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Listeria.s__Listeria_monocytogenes	660.01711034
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3233.78270657
-PWY0-1586	peptidoglycan maturation |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	6858.42967087
-PWY-6708	ubiquinol 8 biosynthesis |unclassified	80.68319092
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	3888.64619646
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	1023.78497992
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus	465.21642024
-PWY-7237	myo , chiro  and scillo inositol degradation|g__Listeria.s__Listeria_monocytogenes	2690.06231488
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Listeria.s__Listeria_monocytogenes	892.6889789
-PWY-7400	L arginine biosynthesis IV |g__Acinetobacter.s__Acinetobacter_baumannii	4598.37958949
-PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1646.91583867
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Helicobacter.s__Helicobacter_pylori	1717.20475178
-PWY-7185	UTP and CTP dephosphorylation I|unclassified	86.86345617
-PWY0-1241	ADP L glycero &beta; D manno heptose biosynthesis|g__Neisseria.s__Neisseria_meningitidis	2643.00414993
-PWY-5104	L isoleucine biosynthesis IV|g__Listeria.s__Listeria_monocytogenes	697.94796423
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	127.13881245
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	518.45151748
-PWY-6313	serotonin degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis	620.09661321
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	5148.01675772
-PWY-6837	fatty acid beta oxidation V |g__Bacillus.s__Bacillus_cereus_thuringiensis	164.98391315
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Helicobacter.s__Helicobacter_pylori	4205.54671787
-PWY-5188	tetrapyrrole biosynthesis I |g__Actinomyces.s__Actinomyces_odontolyticus	182.17501416
-PWY-5431	aromatic compounds degradation via &beta; ketoadipate|g__Acinetobacter.s__Acinetobacter_baumannii	5840.29024826
-COA-PWY	coenzyme A biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	1577.97804938
-PWYG-321	mycolate biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	12621.7146948
-PWY-4702	phytate degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	81.30081301
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Listeria.s__Listeria_monocytogenes	805.99876533
-PWY-5005	biotin biosynthesis II|unclassified	107.08191215
-PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	4320.1069874
-TRNA-CHARGING-PWY	tRNA charging|g__Enterococcus.s__Enterococcus_faecalis	549.60954024
-PWY-6270	isoprene biosynthesis I|g__Listeria.s__Listeria_monocytogenes	580.14387218
-PWY-3841	folate transformations II|g__Propionibacterium.s__Propionibacterium_acnes	2816.89004594
-GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|g__Bacillus.s__Bacillus_cereus_thuringiensis	216.94424982
-PWY-5989	stearate biosynthesis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2115.66746999
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Listeria.s__Listeria_monocytogenes	1159.31555616
-GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|unclassified	18.75528803
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	545.99738042
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Propionibacterium.s__Propionibacterium_acnes	2325.02905507
-COA-PWY-1	coenzyme A biosynthesis II |g__Actinomyces.s__Actinomyces_odontolyticus	1895.63595374
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	1683.49080952
-HISDEG-PWY	L histidine degradation I|g__Deinococcus.s__Deinococcus_radiodurans	8089.41985009
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	16290.4695025
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Acinetobacter.s__Acinetobacter_baumannii	1515.52059389
-P441-PWY	superpathway of N acetylneuraminate degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2096.22292169
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	5186.98796106
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Listeria.s__Listeria_monocytogenes	1018.91576484
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis	582.95545746
-RIBOSYN2-PWY	flavin biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	2121.61995908
-PWY0-42	2 methylcitrate cycle I|g__Neisseria.s__Neisseria_meningitidis	1851.4557165
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Bacillus.s__Bacillus_cereus_thuringiensis	482.28522069
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	501.44719085
-PWY-7254	TCA cycle VII |g__Helicobacter.s__Helicobacter_pylori	1445.7238316
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	1869.63616899
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Clostridium.s__Clostridium_beijerinckii	333.74832579
-AST-PWY	L arginine degradation II |g__Acinetobacter.s__Acinetobacter_baumannii	5080.1514385
-PWY-5265	peptidoglycan biosynthesis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3243.01124985
-PWY-6595	superpathway of guanosine nucleotides degradation |g__Enterococcus.s__Enterococcus_faecalis	503.82676896
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	2991.65214015
-PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Listeria.s__Listeria_monocytogenes	609.03684917
-DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	454.56516364
-PWY-7664	oleate biosynthesis IV |g__Deinococcus.s__Deinococcus_radiodurans	11863.2398937
-PWY-3841	folate transformations II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3990.86337654
-HEMESYN2-PWY	heme biosynthesis II |g__Actinomyces.s__Actinomyces_odontolyticus	468.67766323
-PWY-6737	starch degradation V|g__Propionibacterium.s__Propionibacterium_acnes	2410.9626533
-OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Enterococcus.s__Enterococcus_faecalis	1246.58227109
-PWY-5104	L isoleucine biosynthesis IV|g__Deinococcus.s__Deinococcus_radiodurans	23645.2642632
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii	2112.42575981
-GALACTUROCAT-PWY	D galacturonate degradation I|g__Bacteroides.s__Bacteroides_vulgatus	2575.59801926
-RIBOSYN2-PWY	flavin biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis	184.27194729
-PWY-5484	glycolysis II |g__Listeria.s__Listeria_monocytogenes	1211.03713689
-METSYN-PWY	L homoserine and L methionine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	3353.06461612
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	572.34440161
-PWY-6936	seleno amino acid biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	6980.34109317
-PWY-5989	stearate biosynthesis II |g__Bacteroides.s__Bacteroides_vulgatus	3082.2147356
-GOLPDLCAT-PWY	superpathway of glycerol degradation to 1,3 propanediol|g__Listeria.s__Listeria_monocytogenes	3131.66276928
-GLUCONEO-PWY	gluconeogenesis I|g__Acinetobacter.s__Acinetobacter_baumannii	5372.38543995
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2332.91425386
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2232.35229499
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Deinococcus.s__Deinococcus_radiodurans	5857.77676065
-P164-PWY	purine nucleobases degradation I |g__Enterococcus.s__Enterococcus_faecalis	283.12988518
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Listeria.s__Listeria_monocytogenes	957.31899135
-P125-PWY	superpathway of  butanediol biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1493.48463075
-PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii	2850.79604203
-PWY-2942	L lysine biosynthesis III|g__Neisseria.s__Neisseria_meningitidis	1048.79899213
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	3746.82815929
-ARO-PWY	chorismate biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1539.56277951
-GLYCOLYSIS	glycolysis I |g__Enterococcus.s__Enterococcus_faecalis	688.99626939
-PWY-5188	tetrapyrrole biosynthesis I |g__Listeria.s__Listeria_monocytogenes	781.8931767
-PWY-5384	sucrose degradation IV |g__Propionibacterium.s__Propionibacterium_acnes	2235.73315558
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Neisseria.s__Neisseria_meningitidis	1507.81596835
-PWY-5686	UMP biosynthesis|g__Helicobacter.s__Helicobacter_pylori	2198.45138731
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Deinococcus.s__Deinococcus_radiodurans	10004.5462114
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans	15291.3801748
-PWY-6263	superpathway of menaquinol 8 biosynthesis II|unclassified	97.69994365
-PWY-5913	TCA cycle VI |g__Deinococcus.s__Deinococcus_radiodurans	11494.0607722
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	2460.51497329
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4089.54086075
-PWY-5004	superpathway of L citrulline metabolism|g__Deinococcus.s__Deinococcus_radiodurans	7207.21097456
-VALSYN-PWY	L valine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	5478.04779907
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2326.16249888
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	1167.63106826
-PWY-6185	4 methylcatechol degradation |g__Acinetobacter.s__Acinetobacter_baumannii	8249.54107307
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	2970.73534439
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus	2174.3617357
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	2166.0346274
-PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	2177.86088983
-PWY0-862	 dodec 5 enoate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	10624.6619022
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1682.74645344
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	2153.13257971
-P562-PWY	myo inositol degradation I|g__Listeria.s__Listeria_monocytogenes	373.53034793
-PWY-7664	oleate biosynthesis IV |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2246.29366326
-PWY-7118	chitin degradation to ethanol|g__Pseudomonas.s__Pseudomonas_aeruginosa	257.67431233
-PWY-7312	dTDP D &beta; fucofuranose biosynthesis|unclassified	49.18491014
-PWY0-1586	peptidoglycan maturation |g__Bacillus.s__Bacillus_cereus_thuringiensis	2488.88961105
-PWY-7046	4 coumarate degradation 	20.23459486
-PWY-6629	superpathway of L tryptophan biosynthesis|unclassified	179.05261417
-ARGSYN-PWY	L arginine biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	2700.16558645
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes	2197.89142067
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Neisseria.s__Neisseria_meningitidis	1260.63658127
-CITRULBIO-PWY	L citrulline biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	16325.9035764
-PWY-5430	meta cleavage pathway of aromatic compounds	126.29316846
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Deinococcus.s__Deinococcus_radiodurans	2245.91715426
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	16996.9115072
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus	503.30244913
-PWY-7117	C4 photosynthetic carbon assimilation cycle, PEPCK type|g__Deinococcus.s__Deinococcus_radiodurans	15750.5721961
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	3863.72683273
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	275.3604165
-OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Neisseria.s__Neisseria_meningitidis	2048.47317818
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans	2896.4478049
-PWY-6595	superpathway of guanosine nucleotides degradation |g__Deinococcus.s__Deinococcus_radiodurans	1552.74588034
-PWY-6700	queuosine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	441.31775422
-PWY-5101	L isoleucine biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	2342.34686781
-PWY-6859	all trans farnesol biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	153.20736805
-TYRFUMCAT-PWY	L tyrosine degradation I|g__Bacillus.s__Bacillus_cereus_thuringiensis	172.65182334
-P125-PWY	superpathway of  butanediol biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1756.48376963
-PWY-6396	superpathway of 2,3 butanediol biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	5538.41674722
-LACTOSECAT-PWY	lactose and galactose degradation I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	10589.6117749
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	15625.9370634
-GLYOXYLATE-BYPASS	glyoxylate cycle|g__Deinococcus.s__Deinococcus_radiodurans	15456.2548018
-P185-PWY	formaldehyde assimilation III |g__Acinetobacter.s__Acinetobacter_baumannii	3527.4294784
-NONOXIPENT-PWY	pentose phosphate pathway |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	5152.73761229
-PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	2469.92901398
-ARGSYN-PWY	L arginine biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans	14018.5780935
-PWY0-1061	superpathway of L alanine biosynthesis|g__Neisseria.s__Neisseria_meningitidis	2817.77583385
-PWY-5873	ubiquinol 7 biosynthesis |unclassified	30.82278484
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	1024.55480715
-PYRIDNUCSAL-PWY	NAD salvage pathway I|unclassified	48.01244259
-TRNA-CHARGING-PWY	tRNA charging|g__Deinococcus.s__Deinococcus_radiodurans	16966.1883472
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	1423.45740514
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2560.0716502
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	437.87470702
-VALSYN-PWY	L valine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2437.73403088
-GLUTORN-PWY	L ornithine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	7204.07623979
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2823.82176382
-PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	1329.30189898
-PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	5131.17065219
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Helicobacter.s__Helicobacter_pylori	2187.88294871
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1233.5721146
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	947.77913253
-PWY-7237	myo , chiro  and scillo inositol degradation|g__Enterococcus.s__Enterococcus_faecalis	997.04171614
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	2493.69623323
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	175.6805476
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Deinococcus.s__Deinococcus_radiodurans	2746.72952229
-PWY-7371	1,4 dihydroxy 6 naphthoate biosynthesis II|unclassified	188.73382486
-PWY-7664	oleate biosynthesis IV |g__Listeria.s__Listeria_monocytogenes	702.92830383
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	613.37047528
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2322.5572081
-PWY-5104	L isoleucine biosynthesis IV|g__Bacillus.s__Bacillus_cereus_thuringiensis	248.98176136
-PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1060.08050763
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Actinomyces.s__Actinomyces_odontolyticus	410.76617026
-HEMESYN2-PWY	heme biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes	2774.20790535
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1613.17515885
-PWY-6737	starch degradation V|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2230.93817399
-PWY-5863	superpathway of phylloquinol biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	356.96050403
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Acinetobacter.s__Acinetobacter_baumannii	12634.7168107
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Listeria.s__Listeria_monocytogenes	957.31899135
-PWY66-422	D galactose degradation V |g__Propionibacterium.s__Propionibacterium_acnes	3629.85266072
-PWY-5103	L isoleucine biosynthesis III|g__Deinococcus.s__Deinococcus_radiodurans	15090.1043639
-COA-PWY	coenzyme A biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis	189.88556864
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Acinetobacter.s__Acinetobacter_baumannii	7044.72385197
-PWY-7007	methyl ketone biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	260.40248645
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	3633.04504234
-ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast|g__Enterococcus.s__Enterococcus_faecalis	362.21552208
-PWY-6353	purine nucleotides degradation II |g__Deinococcus.s__Deinococcus_radiodurans	11348.756446
-PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Bacteroides.s__Bacteroides_vulgatus	2031.4957877
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Neisseria.s__Neisseria_meningitidis	3039.38100326
-PWY490-3	nitrate reduction VI |unclassified	101.67461918
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3468.0978136
-TRNA-CHARGING-PWY	tRNA charging|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2645.56732006
-GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|g__Neisseria.s__Neisseria_meningitidis	1262.00487356
-PWY-5791	1,4 dihydroxy 2 naphthoate biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis	325.36182957
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2063.03713684
-PWY-2942	L lysine biosynthesis III|g__Bacteroides.s__Bacteroides_vulgatus	3062.88078839
-PWY-621	sucrose degradation III |g__Actinomyces.s__Actinomyces_odontolyticus	953.82344175
-FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Acinetobacter.s__Acinetobacter_baumannii	5164.27072748
-ARO-PWY	chorismate biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis	610.73358302
-GLYCOLYSIS	glycolysis I |g__Bacillus.s__Bacillus_cereus_thuringiensis	228.6351821
-PWY-5534	propylene degradation	16.54024753
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Deinococcus.s__Deinococcus_radiodurans	5064.81852501
-PWY-7371	1,4 dihydroxy 6 naphthoate biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans	20409.2463586
-PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	3236.23215836
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Listeria.s__Listeria_monocytogenes	902.33827889
-PENTOSE-P-PWY	pentose phosphate pathway|g__Enterococcus.s__Enterococcus_faecalis	672.54643518
-PWY-5484	glycolysis II |g__Enterococcus.s__Enterococcus_faecalis	610.58230526
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Helicobacter.s__Helicobacter_pylori	2519.39687905
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	871.96169523
-PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2225.35962611
-PWYG-321	mycolate biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	3474.61580676
-PWY490-3	nitrate reduction VI |g__Pseudomonas.s__Pseudomonas_aeruginosa	106.11514238
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	2900.26644536
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	785.48477861
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	4169.69983143
-ARGSYN-PWY	L arginine biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	1004.56696102
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Enterococcus.s__Enterococcus_faecalis	756.18452129
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Actinomyces.s__Actinomyces_odontolyticus	388.51319454
-PWY66-400	glycolysis VI |g__Bacteroides.s__Bacteroides_vulgatus	4528.16969487
-PWY-1861	formaldehyde assimilation II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1543.74547434
-PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes	2772.06628788
-PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii	3392.33946518
-PWY-2942	L lysine biosynthesis III|g__Propionibacterium.s__Propionibacterium_acnes	2451.58349149
-PWY-5384	sucrose degradation IV |unclassified	98.4931877
-PWY-5747	2 methylcitrate cycle II|g__Acinetobacter.s__Acinetobacter_baumannii	2239.86221723
-PWY-5686	UMP biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	3143.87334323
-PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Bacillus.s__Bacillus_cereus_thuringiensis	618.80437147
-PWY-6630	superpathway of L tyrosine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1478.09472774
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Listeria.s__Listeria_monocytogenes	683.75223154
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Neisseria.s__Neisseria_meningitidis	1581.46043003
-PWY-2941	L lysine biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1632.70009181
-PWY-5181	toluene degradation III  (via p cresol)|g__Acinetobacter.s__Acinetobacter_baumannii	7379.30542649
-GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|g__Listeria.s__Listeria_monocytogenes	1193.18193769
-FUCCAT-PWY	fucose degradation|unclassified	27.77262243
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Listeria.s__Listeria_monocytogenes	938.2274715
-PWY-4981	L proline biosynthesis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2016.12588576
-RIBOSYN2-PWY	flavin biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	4558.69963229
-PWY-7279	aerobic respiration II  (yeast)|g__Bacillus.s__Bacillus_cereus_thuringiensis	526.28981809
-PWY-6609	adenine and adenosine salvage III|g__Bacillus.s__Bacillus_cereus_thuringiensis	453.44234505
-PWY-6703	preQ0 biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1536.69973225
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	3404.14373264
-PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	1564.31318269
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	6644.12143014
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	786.61360735
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis	1253.1079087
-PWY-6385	peptidoglycan biosynthesis III |g__Bacillus.s__Bacillus_cereus_thuringiensis	504.30027838
-PWY66-422	D galactose degradation V |g__Actinomyces.s__Actinomyces_odontolyticus	1083.83131289
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4012.44114748
-HSERMETANA-PWY	L methionine biosynthesis III|g__Listeria.s__Listeria_monocytogenes	1613.77353311
-PWY-621	sucrose degradation III |g__Enterococcus.s__Enterococcus_faecalis	576.34647923
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	3419.4743584
-PWY0-862	 dodec 5 enoate biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	10865.9635156
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Bacteroides.s__Bacteroides_vulgatus	3051.45699566
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Bacillus.s__Bacillus_cereus_thuringiensis	261.30673747
-PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Listeria.s__Listeria_monocytogenes	229.94001509
-GLUTORN-PWY	L ornithine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	6249.9626888
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Helicobacter.s__Helicobacter_pylori	2089.90570903
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	4808.4455859
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Listeria.s__Listeria_monocytogenes	543.64005545
-GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|g__Bacteroides.s__Bacteroides_vulgatus	2093.54249519
-PWY-6608	guanosine nucleotides degradation III|g__Bacteroides.s__Bacteroides_vulgatus	1761.75460692
-PWY-6151	S adenosyl L methionine cycle I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4940.1797256
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Bacteroides.s__Bacteroides_vulgatus	2837.31635477
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2070.44281109
-PWY-6168	flavin biosynthesis III |g__Neisseria.s__Neisseria_meningitidis	2066.25493912
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	2259.09955197
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis	1438.77937846
-VALSYN-PWY	L valine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	3111.11632972
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Neisseria.s__Neisseria_meningitidis	3660.40278485
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	2532.49898004
-PWY0-1296	purine ribonucleosides degradation|g__Deinococcus.s__Deinococcus_radiodurans	19916.5017068
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	5634.54050805
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1052.52732835
-PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |g__Acinetobacter.s__Acinetobacter_baumannii	8236.69153683
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	1347.27182189
-PWY-5189	tetrapyrrole biosynthesis II |g__Neisseria.s__Neisseria_meningitidis	1653.5872094
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Neisseria.s__Neisseria_meningitidis	1258.80571029
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Neisseria.s__Neisseria_meningitidis	2118.06005078
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	2638.47339544
-PWY-6385	peptidoglycan biosynthesis III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3539.62748348
-PWY-2941	L lysine biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	4679.05222193
-PWY-5484	glycolysis II |g__Neisseria.s__Neisseria_meningitidis	1200.06400315
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Deinococcus.s__Deinococcus_radiodurans	32697.0271361
-PWY0-781	aspartate superpathway|g__Acinetobacter.s__Acinetobacter_baumannii	5029.55209128
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2455.45270361
-PWY-5430	meta cleavage pathway of aromatic compounds|unclassified	18.94157642
-PWY-5030	L histidine degradation III|unclassified	66.80566085
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	4218.66336775
-PWY-4041	&gamma; glutamyl cycle|g__Listeria.s__Listeria_monocytogenes	690.63472246
-PWY-7664	oleate biosynthesis IV |g__Neisseria.s__Neisseria_meningitidis	1542.70146717
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1540.12047213
-PWY-7242	D fructuronate degradation|g__Enterococcus.s__Enterococcus_faecalis	786.74151301
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Neisseria.s__Neisseria_meningitidis	2270.18019442
-PWY-6151	S adenosyl L methionine cycle I|g__Helicobacter.s__Helicobacter_pylori	1326.37834154
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes	4046.84762235
-FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1224.61562815
-PWY-5686	UMP biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	1155.0252265
-HISTSYN-PWY	L histidine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	8094.38299182
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	26426.1362507
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Neisseria.s__Neisseria_meningitidis	1824.60974025
-COBALSYN-PWY	adenosylcobalamin salvage from cobinamide I|unclassified	107.08229348
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Listeria.s__Listeria_monocytogenes	1430.81949626
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Listeria.s__Listeria_monocytogenes	1092.57112102
-PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	2012.73504376
-PWY-4321	L glutamate degradation IV|g__Bacillus.s__Bacillus_cereus_thuringiensis	114.52656436
-PWY-6936	seleno amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2651.76646832
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1043.64286861
-PENTOSE-P-PWY	pentose phosphate pathway|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2060.84210003
-PWY-7663	gondoate biosynthesis |g__Bacteroides.s__Bacteroides_vulgatus	7945.94300312
-KETOGLUCONMET-PWY	ketogluconate metabolism|g__Propionibacterium.s__Propionibacterium_acnes	3498.2123751
-DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3297.71482624
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Listeria.s__Listeria_monocytogenes	371.08501746
-PWY-6168	flavin biosynthesis III |g__Bacteroides.s__Bacteroides_vulgatus	1701.72415374
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	2880.58435709
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Helicobacter.s__Helicobacter_pylori	6005.02798696
-PWY-7200	superpathway of pyrimidine deoxyribonucleoside salvage|unclassified	55.49930196
-PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Helicobacter.s__Helicobacter_pylori	2171.40647194
-PWY-6168	flavin biosynthesis III |g__Deinococcus.s__Deinococcus_radiodurans	8904.07875731
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Listeria.s__Listeria_monocytogenes	1010.22162267
-PWY-5384	sucrose degradation IV |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2501.07935426
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3334.83934901
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Bacillus.s__Bacillus_cereus_thuringiensis	162.66634608
-PWY-5989	stearate biosynthesis II |g__Neisseria.s__Neisseria_meningitidis	1639.78289262
-PWY-6385	peptidoglycan biosynthesis III |g__Enterococcus.s__Enterococcus_faecalis	462.48782691
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Listeria.s__Listeria_monocytogenes	1225.94354329
-PWY-6385	peptidoglycan biosynthesis III |g__Propionibacterium.s__Propionibacterium_acnes	3446.61878373
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	1152.1858233
-PWY-5103	L isoleucine biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3873.13594163
-PWY-2942	L lysine biosynthesis III|g__Helicobacter.s__Helicobacter_pylori	2483.79311831
-PWY-5136	fatty acid &beta; oxidation II |g__Bacillus.s__Bacillus_cereus_thuringiensis	333.73616412
-PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	2507.5904953
-METSYN-PWY	L homoserine and L methionine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3688.41411995
-PWY-6305	putrescine biosynthesis IV|g__Neisseria.s__Neisseria_meningitidis	1468.02297349
-PWY-6383	mono trans, poly cis decaprenyl phosphate biosynthesis|unclassified	185.6534805
-PWY0-1296	purine ribonucleosides degradation|g__Enterococcus.s__Enterococcus_faecalis	1673.62776656
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|unclassified	47.20142162
-ANAEROFRUCAT-PWY	homolactic fermentation|g__Bacteroides.s__Bacteroides_vulgatus	3188.13113711
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Listeria.s__Listeria_monocytogenes	464.82458008
-PWY-6700	queuosine biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	373.61665196
-PWY-5686	UMP biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1546.19718829
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Neisseria.s__Neisseria_meningitidis	3041.3094291
-PWY-3841	folate transformations II|g__Neisseria.s__Neisseria_meningitidis	2310.682919
-RIBOSYN2-PWY	flavin biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus	1755.11205966
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	1978.55815874
-PWY66-398	TCA cycle III |g__Acinetobacter.s__Acinetobacter_baumannii	6394.60829047
-PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis	264.06357646
-DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Listeria.s__Listeria_monocytogenes	576.05328467
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1326.77086195
-PWY-5417	catechol degradation III |g__Acinetobacter.s__Acinetobacter_baumannii	5840.29024826
-PWY0-862	 dodec 5 enoate biosynthesis|g__Listeria.s__Listeria_monocytogenes	613.70819443
-GLYCOLYSIS	glycolysis I |g__Neisseria.s__Neisseria_meningitidis	1222.53989302
-SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Deinococcus.s__Deinococcus_radiodurans	38000.3064144
-GLUCONEO-PWY	gluconeogenesis I|g__Enterococcus.s__Enterococcus_faecalis	573.43354197
-PWY-5918	superpathay of heme biosynthesis from glutamate|g__Helicobacter.s__Helicobacter_pylori	2094.16313855
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Listeria.s__Listeria_monocytogenes	995.12300353
-PWY-7663	gondoate biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2608.26127657
-PWY-5097	L lysine biosynthesis VI|g__Bacteroides.s__Bacteroides_vulgatus	2906.70871254
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Propionibacterium.s__Propionibacterium_acnes	3524.42725289
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii	929.2721818
-PWY-5989	stearate biosynthesis II |g__Deinococcus.s__Deinococcus_radiodurans	12467.6833954
-PWY-7337	10 cis heptadecenoyl CoA degradation |unclassified	44.86478224
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1570.10152878
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	1938.2925239
-PWY-6168	flavin biosynthesis III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1906.37905246
-PWY-3841	folate transformations II|g__Deinococcus.s__Deinococcus_radiodurans	1267.26212879
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus	590.7529794
-PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Neisseria.s__Neisseria_meningitidis	2580.52125405
-GLUCONEO-PWY	gluconeogenesis I|g__Bacteroides.s__Bacteroides_vulgatus	3386.55089198
-P221-PWY	octane oxidation|g__Clostridium.s__Clostridium_beijerinckii	451.02308636
-NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Listeria.s__Listeria_monocytogenes	764.21860024
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Actinomyces.s__Actinomyces_odontolyticus	229.86436462
-PWY-5505	L glutamate and L glutamine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	4705.82596976
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Helicobacter.s__Helicobacter_pylori	2379.36305452
-PWY-5918	superpathay of heme biosynthesis from glutamate|g__Listeria.s__Listeria_monocytogenes	540.13146391
-UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |g__Neisseria.s__Neisseria_meningitidis	1397.53333368
-COA-PWY-1	coenzyme A biosynthesis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2715.2663343
-TYRFUMCAT-PWY	L tyrosine degradation I|g__Acinetobacter.s__Acinetobacter_baumannii	5063.21481038
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	1995.52087354
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	2880.58435709
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Deinococcus.s__Deinococcus_radiodurans	477.37041111
-PWY-6630	superpathway of L tyrosine biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	623.59318397
-PWY-5188	tetrapyrrole biosynthesis I |g__Helicobacter.s__Helicobacter_pylori	2107.65455025
-PYRIDNUCSAL-PWY	NAD salvage pathway I|g__Propionibacterium.s__Propionibacterium_acnes	2364.47866594
-PWY-6692	Fe oxidation|g__Listeria.s__Listeria_monocytogenes	2129.88577958
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus	3112.41953118
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Helicobacter.s__Helicobacter_pylori	1193.87628964
-PWY0-1061	superpathway of L alanine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	6715.32451968
-PWY-6385	peptidoglycan biosynthesis III |g__Listeria.s__Listeria_monocytogenes	717.18373242
-GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3029.53758634
-PWY-5870	ubiquinol 8 biosynthesis 	4842.2424734
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Enterococcus.s__Enterococcus_faecalis	871.83329341
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis	458.05813135
-PWY-4041	&gamma; glutamyl cycle|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	757.61750124
-P101-PWY	ectoine biosynthesis	488.42493718
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Listeria.s__Listeria_monocytogenes	551.43421839
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	869.84596222
-PWY-5347	superpathway of L methionine biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4117.42517441
-PWY-6305	putrescine biosynthesis IV|g__Deinococcus.s__Deinococcus_radiodurans	5729.23318798
-PWY0-1296	purine ribonucleosides degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis	728.11960343
-COA-PWY-1	coenzyme A biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii	482.07129106
-NAD-BIOSYNTHESIS-II	NAD salvage pathway II|g__Bacteroides.s__Bacteroides_vulgatus	1561.82848783
-PWY-6151	S adenosyl L methionine cycle I|g__Propionibacterium.s__Propionibacterium_acnes	3870.18266907
-PWY-6151	S adenosyl L methionine cycle I|g__Enterococcus.s__Enterococcus_faecalis	606.35482629
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Bacteroides.s__Bacteroides_vulgatus	2591.83079993
-PWY-6609	adenine and adenosine salvage III|g__Deinococcus.s__Deinococcus_radiodurans	24247.0411981
-PWY-7013	L 1,2 propanediol degradation|g__Listeria.s__Listeria_monocytogenes	6144.92482493
-PWY-5509	adenosylcobalamin biosynthesis from cobyrinate a,c diamide I|unclassified	60.78601337
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	18365.4748796
-PWY-5973	cis vaccenate biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2689.51366998
-PWY-6936	seleno amino acid biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	2221.81394709
-PWY-6936	seleno amino acid biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1734.34938129
-ANAEROFRUCAT-PWY	homolactic fermentation|g__Enterococcus.s__Enterococcus_faecalis	684.0976374
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Enterococcus.s__Enterococcus_faecalis	1039.65107419
-PWY-5030	L histidine degradation III	6335.53967079
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3427.00569546
-METSYN-PWY	L homoserine and L methionine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	4363.14275065
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Bacteroides.s__Bacteroides_vulgatus	1630.54128348
-PWY-5028	L histidine degradation II|g__Acinetobacter.s__Acinetobacter_baumannii	5443.72177929
-PWY-1042	glycolysis IV |g__Actinomyces.s__Actinomyces_odontolyticus	1977.14244911
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	638.47594243
-PWY-6897	thiamin salvage II|g__Listeria.s__Listeria_monocytogenes	857.67432125
-COA-PWY-1	coenzyme A biosynthesis II |g__Deinococcus.s__Deinococcus_radiodurans	2920.61584988
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Helicobacter.s__Helicobacter_pylori	3084.59585039
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	932.75764326
-PWY-6606	guanosine nucleotides degradation II|g__Enterococcus.s__Enterococcus_faecalis	423.8400113
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Deinococcus.s__Deinococcus_radiodurans	1284.61250001
-PWY-5097	L lysine biosynthesis VI|g__Neisseria.s__Neisseria_meningitidis	1099.5077351
-PWY-3781	aerobic respiration I |g__Bacillus.s__Bacillus_cereus_thuringiensis	740.84156305
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Bacteroides.s__Bacteroides_vulgatus	3946.04447589
-PWY-5189	tetrapyrrole biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii	3493.99588639
-PWY-5855	ubiquinol 7 biosynthesis |g__Neisseria.s__Neisseria_meningitidis	1287.84428004
-PWY-2941	L lysine biosynthesis II|g__Listeria.s__Listeria_monocytogenes	1147.13668705
-PWY-5973	cis vaccenate biosynthesis|g__Listeria.s__Listeria_monocytogenes	568.4853208
-PWY-5676	acetyl CoA fermentation to butanoate II|g__Deinococcus.s__Deinococcus_radiodurans	22572.0964634
-TRNA-CHARGING-PWY	tRNA charging|g__Bacillus.s__Bacillus_cereus_thuringiensis	189.75017562
-PWY-6307	L tryptophan degradation X |g__Bacteroides.s__Bacteroides_vulgatus	1665.57197011
-PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Listeria.s__Listeria_monocytogenes	1327.26662345
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1701.75332817
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Deinococcus.s__Deinococcus_radiodurans	6085.75885018
-PWY-6969	TCA cycle V (2 oxoglutarate	6661.27149826
-PWY-7663	gondoate biosynthesis |g__Deinococcus.s__Deinococcus_radiodurans	13766.5089981
-PWY-5188	tetrapyrrole biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	1805.47687431
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Bacillus.s__Bacillus_cereus_thuringiensis	219.45056309
-PWY-7663	gondoate biosynthesis |g__Enterococcus.s__Enterococcus_faecalis	1735.8151961
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Listeria.s__Listeria_monocytogenes	709.39108205
-PWY-5097	L lysine biosynthesis VI|g__Helicobacter.s__Helicobacter_pylori	2213.94098495
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Neisseria.s__Neisseria_meningitidis	2234.28018428
-PWY-7400	L arginine biosynthesis IV |g__Clostridium.s__Clostridium_beijerinckii	1006.02191784
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis	356.69154802
-GLUCONEO-PWY	gluconeogenesis I|g__Listeria.s__Listeria_monocytogenes	924.59155057
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	883.93007867
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii	2611.50264245
-PWY-5103	L isoleucine biosynthesis III|g__Actinomyces.s__Actinomyces_odontolyticus	640.50375917
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Actinomyces.s__Actinomyces_odontolyticus	448.77821278
-PWY-6969	TCA cycle V (2 oxoglutarate	343.21062356
-PWY-5989	stearate biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii	12107.9058666
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3554.91366097
-PWY-3841	folate transformations II|g__Bacteroides.s__Bacteroides_vulgatus	2237.54454055
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Enterococcus.s__Enterococcus_faecalis	1204.24140381
-PWY-6609	adenine and adenosine salvage III|g__Propionibacterium.s__Propionibacterium_acnes	3903.45447112
-PWY-1042	glycolysis IV |g__Bacillus.s__Bacillus_cereus_thuringiensis	200.08888544
-PWY-5973	cis vaccenate biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1425.32253163
-PWY-6385	peptidoglycan biosynthesis III |g__Bacteroides.s__Bacteroides_vulgatus	2256.03670313
-PWY-6317	galactose degradation I |g__Bacteroides.s__Bacteroides_vulgatus	3445.47022694
-RHAMCAT-PWY	L rhamnose degradation I|g__Bacteroides.s__Bacteroides_vulgatus	2720.46242864
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	1405.32076754
-PWY-6859	all trans farnesol biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	2277.93495433
-PWY-6703	preQ0 biosynthesis|g__Helicobacter.s__Helicobacter_pylori	1604.95339174
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Listeria.s__Listeria_monocytogenes	1057.79662774
-TRNA-CHARGING-PWY	tRNA charging|g__Listeria.s__Listeria_monocytogenes	978.46331506
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Actinomyces.s__Actinomyces_odontolyticus	469.09209274
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans	819.01819255
-PWY-5855	ubiquinol 7 biosynthesis |unclassified	80.68319092
-PWY-2942	L lysine biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2065.20808862
-P4-PWY	superpathway of L lysine, L threonine and L methionine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	5332.80187908
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	1514.6877209
-PWY0-1586	peptidoglycan maturation |g__Neisseria.s__Neisseria_meningitidis	4108.00004989
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Listeria.s__Listeria_monocytogenes	1110.92635079
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	17118.9341232
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	1713.14891968
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Acinetobacter.s__Acinetobacter_baumannii	3461.26486112
-PWY-7279	aerobic respiration II  (yeast)|g__Neisseria.s__Neisseria_meningitidis	3972.67745485
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Listeria.s__Listeria_monocytogenes	1051.56655037
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	192.06414662
-PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Neisseria.s__Neisseria_meningitidis	907.1378689
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3694.54369841
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	1978.55815874
-PWY-6609	adenine and adenosine salvage III|g__Actinomyces.s__Actinomyces_odontolyticus	2284.09762464
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	3099.29029743
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus	3112.41953118
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis	446.23917891
-TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA|g__Bacillus.s__Bacillus_cereus_thuringiensis	254.11899317
-PWY-5973	cis vaccenate biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	11241.5652532
-PWY-1042	glycolysis IV |g__Deinococcus.s__Deinococcus_radiodurans	18117.075175
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Actinomyces.s__Actinomyces_odontolyticus	521.2808657
-GLUCONEO-PWY	gluconeogenesis I|g__Deinococcus.s__Deinococcus_radiodurans	21397.6439737
-UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |unclassified	33.86327014
-PWY0-1241	ADP L glycero &beta; D manno heptose biosynthesis|g__Helicobacter.s__Helicobacter_pylori	1950.78064139
-DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	1432.70805934
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	2373.4214166
-PWY-5973	cis vaccenate biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2600.36043229
-PWY-6143	CMP pseudaminate biosynthesis	3086.066238
-PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii	1611.13108421
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1365.5103232
-PWY-6527	stachyose degradation|g__Actinomyces.s__Actinomyces_odontolyticus	711.43422479
-OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Actinomyces.s__Actinomyces_odontolyticus	871.44480231
-PWY-3781	aerobic respiration I |g__Listeria.s__Listeria_monocytogenes	1963.07167087
-PWY-922	mevalonate pathway I|g__Enterococcus.s__Enterococcus_faecalis	316.4534737
-SO4ASSIM-PWY	sulfate reduction I |g__Deinococcus.s__Deinococcus_radiodurans	13390.8009766
-PWY-7383	anaerobic energy metabolism |g__Acinetobacter.s__Acinetobacter_baumannii	6224.64112071
-PWY-4984	urea cycle|g__Deinococcus.s__Deinococcus_radiodurans	16281.1451038
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	2900.26644536
-PWY-5103	L isoleucine biosynthesis III|g__Propionibacterium.s__Propionibacterium_acnes	3291.34876197
-P441-PWY	superpathway of N acetylneuraminate degradation|g__Listeria.s__Listeria_monocytogenes	1172.96536938
-PWY0-41	allantoin degradation IV |g__Enterococcus.s__Enterococcus_faecalis	519.74607257
-ARGSYN-PWY	L arginine biosynthesis I |g__Bacteroides.s__Bacteroides_vulgatus	2387.40919394
-PWY-5182	toluene degradation II  (via 4 methylcatechol)|g__Deinococcus.s__Deinococcus_radiodurans	25442.4320844
-PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Bacteroides.s__Bacteroides_vulgatus	2588.69310977
-PWY-622	starch biosynthesis	76.84320984
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans	23044.8431699
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Actinomyces.s__Actinomyces_odontolyticus	467.51764445
-PWY-4981	L proline biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes	3312.00194509
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis	428.33414302
-P161-PWY	acetylene degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3051.81508343
-TCA	TCA cycle I |g__Bacillus.s__Bacillus_cereus_thuringiensis	260.62613955
-ARGSYN-PWY	L arginine biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	4607.52866605
-TRNA-CHARGING-PWY	tRNA charging|g__Propionibacterium.s__Propionibacterium_acnes	3304.34189904
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2459.51268668
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	454.78410567
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Enterococcus.s__Enterococcus_faecalis	246.05363508
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	4357.20326108
-PWY-6385	peptidoglycan biosynthesis III |g__Actinomyces.s__Actinomyces_odontolyticus	273.98238845
-PWY-7242	D fructuronate degradation|g__Propionibacterium.s__Propionibacterium_acnes	3859.30523447
-P23-PWY	reductive TCA cycle I|unclassified	120.29745003
-PWY-6609	adenine and adenosine salvage III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	9005.45456049
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Listeria.s__Listeria_monocytogenes	507.22180872
-PWY-5857	ubiquinol 10 biosynthesis |unclassified	80.68319092
-PWY-5103	L isoleucine biosynthesis III|g__Bacillus.s__Bacillus_cereus_thuringiensis	228.48253796
-PWY-6700	queuosine biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1062.44832693
-PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Propionibacterium.s__Propionibacterium_acnes	2759.64261694
-PWY-6309	L tryptophan degradation XI |g__Acinetobacter.s__Acinetobacter_baumannii	4656.84270668
-PWY-4981	L proline biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii	747.83147268
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3304.6541387
-PWY-7338	10 trans heptadecenoyl CoA degradation |unclassified	44.86478224
-PWY-6700	queuosine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	3017.20477153
-PWY0-42	2 methylcitrate cycle I|g__Acinetobacter.s__Acinetobacter_baumannii	2239.86221723
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Acinetobacter.s__Acinetobacter_baumannii	940.06626776
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1540.12047213
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Helicobacter.s__Helicobacter_pylori	3074.40860677
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	1023.63028583
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	5337.77066314
-PWY-6703	preQ0 biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	1694.0118267
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Propionibacterium.s__Propionibacterium_acnes	1872.99562174
-SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Neisseria.s__Neisseria_meningitidis	2608.93481692
-PWY-5097	L lysine biosynthesis VI|g__Listeria.s__Listeria_monocytogenes	1152.09373769
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Listeria.s__Listeria_monocytogenes	943.08991771
-FERMENTATION-PWY	mixed acid fermentation|g__Neisseria.s__Neisseria_meningitidis	2090.08061142
-PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	2033.49873338
-REDCITCYC	TCA cycle VIII |g__Helicobacter.s__Helicobacter_pylori	2720.08839484
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3492.89653251
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Helicobacter.s__Helicobacter_pylori	1863.36166513
-CITRULBIO-PWY	L citrulline biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2752.15218657
-GLYCOLYSIS	glycolysis I |g__Listeria.s__Listeria_monocytogenes	919.06868193
-P185-PWY	formaldehyde assimilation III |g__Enterococcus.s__Enterococcus_faecalis	829.23998167
-PWY-5686	UMP biosynthesis|g__Listeria.s__Listeria_monocytogenes	924.81048861
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Listeria.s__Listeria_monocytogenes	2154.6845783
-PWY-5367	petroselinate biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	482.05732589
-PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	7001.72936751
-PWY-3781	aerobic respiration I |g__Actinomyces.s__Actinomyces_odontolyticus	2772.58262062
-GLYOXYLATE-BYPASS	glyoxylate cycle|g__Bacillus.s__Bacillus_cereus_thuringiensis	461.25410435
-PWY-5856	ubiquinol 9 biosynthesis |unclassified	27.68465255
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis	1193.58041956
-PWY-5104	L isoleucine biosynthesis IV|g__Acinetobacter.s__Acinetobacter_baumannii	2196.85305716
-PWY-3781	aerobic respiration I |g__Acinetobacter.s__Acinetobacter_baumannii	10661.254254
-GLUTORN-PWY	L ornithine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	1444.09710987
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Propionibacterium.s__Propionibacterium_acnes	3268.03588211
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis	246.05363508
-HEXITOLDEGSUPER-PWY	superpathway of hexitol degradation |g__Clostridium.s__Clostridium_beijerinckii	913.2037938
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	615.5721109
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus	762.51635045
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Enterococcus.s__Enterococcus_faecalis	660.55978859
-P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate|g__Listeria.s__Listeria_monocytogenes	859.88640122
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Actinomyces.s__Actinomyces_odontolyticus	572.34440161
-PWY-5871	ubiquinol 9 biosynthesis |unclassified	30.82278484
-PWY-6859	all trans farnesol biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	244.3911918
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Neisseria.s__Neisseria_meningitidis	1036.31913203
-PWY-6612	superpathway of tetrahydrofolate biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	973.04000787
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Listeria.s__Listeria_monocytogenes	1065.49966508
-PWY-5188	tetrapyrrole biosynthesis I |g__Deinococcus.s__Deinococcus_radiodurans	1190.94487215
-PWY-5347	superpathway of L methionine biosynthesis |g__Bacteroides.s__Bacteroides_vulgatus	3780.06974309
-PWY-5178	toluene degradation IV  (via catechol)|unclassified	10.99339453
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	962.22305399
-PWY-6692	Fe oxidation|g__Bacillus.s__Bacillus_cereus_thuringiensis	705.66946551
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Listeria.s__Listeria_monocytogenes	187.61090748
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	2601.57208585
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Propionibacterium.s__Propionibacterium_acnes	3016.75141062
-PWY-7560	methylerythritol phosphate pathway II|g__Helicobacter.s__Helicobacter_pylori	1985.27116196
-PWY-6151	S adenosyl L methionine cycle I|g__Bacillus.s__Bacillus_cereus_thuringiensis	737.49522185
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2896.33459591
-PWY-7111	pyruvate fermentation to isobutanol |g__Listeria.s__Listeria_monocytogenes	1849.06092627
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Bacillus.s__Bacillus_cereus_thuringiensis	394.39918979
-RUMP-PWY	formaldehyde oxidation I|g__Enterococcus.s__Enterococcus_faecalis	349.48256718
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	3525.05254468
-PWY-621	sucrose degradation III |g__Bacteroides.s__Bacteroides_vulgatus	2849.06607071
-COA-PWY	coenzyme A biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	4751.5446953
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Bacteroides.s__Bacteroides_vulgatus	3626.59960449
-PWY-7318	dTDP 3 acetamido 3,6 dideoxy &alpha; D glucose biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	1226.96188201
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	1477.32564928
-FAO-PWY	fatty acid &beta; oxidation I|g__Bacillus.s__Bacillus_cereus_thuringiensis	315.6713757
-PWY-5837	1,4 dihydroxy 2 naphthoate biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis	325.36182957
-PWY-5345	superpathway of L methionine biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	5138.44802921
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Propionibacterium.s__Propionibacterium_acnes	1657.57389233
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	2223.06717637
-NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Neisseria.s__Neisseria_meningitidis	2354.85936337
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Enterococcus.s__Enterococcus_faecalis	634.03974448
-PWY66-389	phytol degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis	891.17743198
-PWY0-1586	peptidoglycan maturation |g__Bacteroides.s__Bacteroides_vulgatus	3085.21503554
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	2317.59109897
-HEMESYN2-PWY	heme biosynthesis II |g__Helicobacter.s__Helicobacter_pylori	2379.36305452
-PWY-6676	superpathway of sulfide oxidation |g__Acinetobacter.s__Acinetobacter_baumannii	4507.60089286
-PWY-6936	seleno amino acid biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	231.04452431
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Helicobacter.s__Helicobacter_pylori	1535.34368012
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis	243.47618763
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Bacillus.s__Bacillus_cereus_thuringiensis	225.32971238
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Bacillus.s__Bacillus_cereus_thuringiensis	235.5226059
-PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Clostridium.s__Clostridium_beijerinckii	558.33114648
-PWY-5941	glycogen degradation II |g__Bacteroides.s__Bacteroides_vulgatus	2825.30293218
-PWY-7400	L arginine biosynthesis IV |g__Listeria.s__Listeria_monocytogenes	590.3225181
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	238.98263374
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Enterococcus.s__Enterococcus_faecalis	1346.65822693
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	1517.85985996
-PWY-621	sucrose degradation III |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2057.50946908
-VALSYN-PWY	L valine biosynthesis|g__Actinomyces.s__Actinomyces_odontolyticus	1163.89622401
-PWY-6313	serotonin degradation|g__Bacteroides.s__Bacteroides_vulgatus	1881.11971747
-PWY-7431	aromatic biogenic amine degradation |g__Bacillus.s__Bacillus_cereus_thuringiensis	424.38570517
-PWY-7318	dTDP 3 acetamido 3,6 dideoxy &alpha; D glucose biosynthesis	1749.94747586
-HISTSYN-PWY	L histidine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	2043.73456185
-PWY-7111	pyruvate fermentation to isobutanol |g__Actinomyces.s__Actinomyces_odontolyticus	1185.33298694
-PWY-6737	starch degradation V|g__Bacteroides.s__Bacteroides_vulgatus	3423.89669392
-PWY-5180	toluene degradation I  (via o cresol)|g__Deinococcus.s__Deinococcus_radiodurans	25442.4320844
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Enterococcus.s__Enterococcus_faecalis	715.17678022
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1590.88372057
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Helicobacter.s__Helicobacter_pylori	1543.56538931
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	1185.15002274
-COA-PWY-1	coenzyme A biosynthesis II |g__Bacteroides.s__Bacteroides_vulgatus	2565.89100831
-PWY-6385	peptidoglycan biosynthesis III |g__Deinococcus.s__Deinococcus_radiodurans	887.1289718
-NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Propionibacterium.s__Propionibacterium_acnes	3245.38709518
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |unclassified	100.54547128
-PWY-6168	flavin biosynthesis III |g__Propionibacterium.s__Propionibacterium_acnes	2701.22524538
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Listeria.s__Listeria_monocytogenes	598.60229823
-PWY-4984	urea cycle|g__Enterococcus.s__Enterococcus_faecalis	302.6527651
-GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|g__Propionibacterium.s__Propionibacterium_acnes	3236.09786158
-PWY-561	superpathway of glyoxylate cycle and fatty acid degradation|g__Deinococcus.s__Deinococcus_radiodurans	24053.5747023
-PWY66-399	gluconeogenesis III|unclassified	147.95127462
-PWY-5097	L lysine biosynthesis VI|g__Enterococcus.s__Enterococcus_faecalis	366.92784336
-PWY-6609	adenine and adenosine salvage III|g__Bacteroides.s__Bacteroides_vulgatus	4538.05042232
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Bacillus.s__Bacillus_cereus_thuringiensis	330.15368723
-COA-PWY-1	coenzyme A biosynthesis II |g__Helicobacter.s__Helicobacter_pylori	1573.89240385
-PPGPPMET-PWY	ppGpp biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	4296.44660508
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Neisseria.s__Neisseria_meningitidis	1616.66623155
-PWY-3481	superpathway of L phenylalanine and L tyrosine biosynthesis|unclassified	6.17837999
-TCA	TCA cycle I |g__Neisseria.s__Neisseria_meningitidis	2300.02836165
-PWY-7111	pyruvate fermentation to isobutanol |g__Bacteroides.s__Bacteroides_vulgatus	3824.74591187
-PWY-6527	stachyose degradation|g__Enterococcus.s__Enterococcus_faecalis	957.90920408
-P108-PWY	pyruvate fermentation to propanoate I|g__Bacteroides.s__Bacteroides_vulgatus	638.38123666
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	3119.5836733
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	2539.69292577
-PWY-7199	pyrimidine deoxyribonucleosides salvage|unclassified	634.52450565
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	2855.26098778
-ARO-PWY	chorismate biosynthesis I|g__Bacteroides.s__Bacteroides_vulgatus	2155.90225826
-PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1174.59267824
-PWY-2941	L lysine biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	1659.93834691
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis	182.80840512
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	3226.32252327
-PWY-6284	superpathway of unsaturated fatty acids biosynthesis |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2290.81890268
-PWY-7560	methylerythritol phosphate pathway II|g__Propionibacterium.s__Propionibacterium_acnes	3245.38709518
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Neisseria.s__Neisseria_meningitidis	3303.829332
-PWY-6318	L phenylalanine degradation IV |g__Bacillus.s__Bacillus_cereus_thuringiensis	378.11788589
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Bacteroides.s__Bacteroides_vulgatus	1548.6728508
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3451.40860575
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2016.22270772
-PWY-6471	peptidoglycan biosynthesis IV |g__Enterococcus.s__Enterococcus_faecalis	424.11695223
-PWY-6309	L tryptophan degradation XI |g__Deinococcus.s__Deinococcus_radiodurans	17586.5742195
-PWY-5384	sucrose degradation IV |g__Listeria.s__Listeria_monocytogenes	1058.36282468
-PWY-5686	UMP biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	3348.84088261
-PWY0-1241	ADP L glycero &beta; D manno heptose biosynthesis|unclassified	85.07549469
-PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|unclassified	88.60951961
-PWY-1042	glycolysis IV |g__Enterococcus.s__Enterococcus_faecalis	766.45975773
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	1970.22142565
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	3820.12139671
-COA-PWY	coenzyme A biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	1732.77172747
-PWY-5367	petroselinate biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2665.0040821
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Neisseria.s__Neisseria_meningitidis	3273.42533276
-PWY0-1479	tRNA processing|g__Acinetobacter.s__Acinetobacter_baumannii	769.21034814
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Bacillus.s__Bacillus_cereus_thuringiensis	247.366862
-PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Deinococcus.s__Deinococcus_radiodurans	4037.92854589
-PWY-6897	thiamin salvage II|g__Enterococcus.s__Enterococcus_faecalis	720.61185672
-PWY-7664	oleate biosynthesis IV |g__Bacteroides.s__Bacteroides_vulgatus	2919.18453336
-PWY-5994	palmitate biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	11676.5045229
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3995.17197201
-PWY-5484	glycolysis II |g__Bacillus.s__Bacillus_cereus_thuringiensis	271.90425715
-PWY-6588	pyruvate fermentation to acetone|unclassified	33.20040553
-PWY-3841	folate transformations II|g__Acinetobacter.s__Acinetobacter_baumannii	4603.21416905
-PWY-7401	crotonate fermentation 	2596.84022115
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Propionibacterium.s__Propionibacterium_acnes	3314.03923681
-PWY-5532	adenosine nucleotides degradation IV	33.84452492
-RIBOSYN2-PWY	flavin biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes	3216.08535141
-PWY-5103	L isoleucine biosynthesis III|g__Listeria.s__Listeria_monocytogenes	996.32778716
-PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|g__Acinetobacter.s__Acinetobacter_baumannii	6144.30410529
-PWY-6317	galactose degradation I |g__Enterococcus.s__Enterococcus_faecalis	1268.33069375
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans	18155.7747766
-PWY66-422	D galactose degradation V |g__Listeria.s__Listeria_monocytogenes	933.27532313
-PWY-5690	TCA cycle II |g__Acinetobacter.s__Acinetobacter_baumannii	7574.04416326
-PWY-5686	UMP biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	5028.97439041
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	17970.8187679
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3510.57739774
-PWY-6608	guanosine nucleotides degradation III|g__Enterococcus.s__Enterococcus_faecalis	432.01126854
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	809.93937834
-VALDEG-PWY	L valine degradation I|g__Bacillus.s__Bacillus_cereus_thuringiensis	198.82859204
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	27794.7044763
-PWY-7254	TCA cycle VII |g__Neisseria.s__Neisseria_meningitidis	1771.62482977
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	1067.5112181
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Listeria.s__Listeria_monocytogenes	1657.48374352
-PWY-4702	phytate degradation I|g__Actinomyces.s__Actinomyces_odontolyticus	1940.92577663
-PWY-7664	oleate biosynthesis IV |g__Acinetobacter.s__Acinetobacter_baumannii	11687.1201414
-PWY0-1061	superpathway of L alanine biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	17207.6197283
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	4452.56164302
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Enterococcus.s__Enterococcus_faecalis	776.86229121
-PWY-6151	S adenosyl L methionine cycle I|g__Bacteroides.s__Bacteroides_vulgatus	1930.48481823
-PWY-7376	cobyrinate a,c diamide biosynthesis II (late cobalt incorporation)	731.72118045
-PWY-6182	superpathway of salicylate degradation|g__Acinetobacter.s__Acinetobacter_baumannii	4104.56759161
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Helicobacter.s__Helicobacter_pylori	4205.54671787
-PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Helicobacter.s__Helicobacter_pylori	2125.30015657
-PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3193.85970099
-PWY-7237	myo , chiro  and scillo inositol degradation|g__Streptococcus.s__Streptococcus_agalactiae	520.40090345
-PWY-1861	formaldehyde assimilation II |g__Enterococcus.s__Enterococcus_faecalis	555.35837536
-PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Enterococcus.s__Enterococcus_faecalis	1071.50932666
-PWY66-422	D galactose degradation V |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4800.99634371
-PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	3642.66465324
-UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	2824.56945048
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Bacteroides.s__Bacteroides_vulgatus	4452.56164302
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	2026.86531442
-PWY-7400	L arginine biosynthesis IV |g__Bacteroides.s__Bacteroides_vulgatus	2391.41189828
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	1248.87254256
-GLUDEG-I-PWY	GABA shunt|g__Bacillus.s__Bacillus_cereus_thuringiensis	97.85981541
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Bacteroides.s__Bacteroides_vulgatus	3847.79255868
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3258.21564899
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Listeria.s__Listeria_monocytogenes	594.31678348
-PWY-7560	methylerythritol phosphate pathway II|g__Deinococcus.s__Deinococcus_radiodurans	11173.5307074
-PWY-6432	curcuminoid biosynthesis|unclassified	6.40501503
-LACTOSECAT-PWY	lactose and galactose degradation I|g__Listeria.s__Listeria_monocytogenes	4959.6737146
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1168.58718155
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	7660.73356751
-PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|g__Enterococcus.s__Enterococcus_faecalis	478.01050193
-PWY-1042	glycolysis IV |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	1420.68211795
-DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	5038.91461921
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	2633.12944054
-PWY-3481	superpathway of L phenylalanine and L tyrosine biosynthesis	6.59290655
-HEMESYN2-PWY	heme biosynthesis II |g__Bacillus.s__Bacillus_cereus_thuringiensis	322.00293305
-PWY-7254	TCA cycle VII |g__Bacillus.s__Bacillus_cereus_thuringiensis	122.0950095
-COA-PWY-1	coenzyme A biosynthesis II |g__Listeria.s__Listeria_monocytogenes	392.38718854
-PWY-5188	tetrapyrrole biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	3721.17208828
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	3304.58847604
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Actinomyces.s__Actinomyces_odontolyticus	273.99668027
-CENTFERM-PWY	pyruvate fermentation to butanoate|g__Bacillus.s__Bacillus_cereus_thuringiensis	237.9190665
-NAD-BIOSYNTHESIS-II	NAD salvage pathway II|unclassified	467.26876238
-SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	5539.64469289
-KETOGLUCONMET-PWY	ketogluconate metabolism|g__Bacillus.s__Bacillus_cereus_thuringiensis	282.94979762
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	4876.52400545
-P621-PWY	nylon 6 oligomer degradation|unclassified	51.25275506
-P105-PWY	TCA cycle IV |g__Acinetobacter.s__Acinetobacter_baumannii	6616.19714274
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis	253.55009936
-ARO-PWY	chorismate biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	1900.49602384
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Propionibacterium.s__Propionibacterium_acnes	4036.79779814
-COA-PWY-1	coenzyme A biosynthesis II |g__Enterococcus.s__Enterococcus_faecalis	268.28229262
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	1823.9549682
-PWY-5415	catechol degradation I |g__Deinococcus.s__Deinococcus_radiodurans	9119.20300567
-PWY-5873	ubiquinol 7 biosynthesis 	4088.65133704
-PWY66-389	phytol degradation|g__Bacteroides.s__Bacteroides_vulgatus	3589.65739105
-PWY-5154	L arginine biosynthesis III |g__Bacteroides.s__Bacteroides_vulgatus	2416.58707367
-LACTOSECAT-PWY	lactose and galactose degradation I|g__Enterococcus.s__Enterococcus_faecalis	1134.16719881
-PWY-5747	2 methylcitrate cycle II|g__Neisseria.s__Neisseria_meningitidis	1851.4557165
-PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |g__Bacillus.s__Bacillus_cereus_thuringiensis	488.35873546
-GLYCOLYSIS	glycolysis I |g__Bacteroides.s__Bacteroides_vulgatus	3462.47489918
-METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Bacillus.s__Bacillus_cereus_thuringiensis	287.24120408
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Deinococcus.s__Deinococcus_radiodurans	11861.7009869
-NONOXIPENT-PWY	pentose phosphate pathway |g__Bacteroides.s__Bacteroides_vulgatus	3729.10109579
-PWY-4981	L proline biosynthesis II |g__Listeria.s__Listeria_monocytogenes	1090.96344136
-PWY-5484	glycolysis II |g__Bacteroides.s__Bacteroides_vulgatus	3167.91509485
-GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|g__Enterococcus.s__Enterococcus_faecalis	544.45208647
-GOLPDLCAT-PWY	superpathway of glycerol degradation to 1,3 propanediol|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	938.78660293
-PWY-6317	galactose degradation I |g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4329.04505843
-PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	4417.62140391
-PWY-7400	L arginine biosynthesis IV |g__Propionibacterium.s__Propionibacterium_acnes	2986.12437976
-PWY-6590	superpathway of Clostridium acetobutylicum acidogenic fermentation|unclassified	28.86344044
-PWY-5857	ubiquinol 10 biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	3461.49933469
-GLUCONEO-PWY	gluconeogenesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis	256.77231987
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1432.60950211
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Listeria.s__Listeria_monocytogenes	674.46552511
-GLUTORN-PWY	L ornithine biosynthesis|g__Neisseria.s__Neisseria_meningitidis	1306.87701181
-PWY-7383	anaerobic energy metabolism |g__Actinomyces.s__Actinomyces_odontolyticus	186.75591442
-PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Neisseria.s__Neisseria_meningitidis	2177.86088983
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Clostridium.s__Clostridium_beijerinckii	529.09121521
-P42-PWY	incomplete reductive TCA cycle|unclassified	120.51624639
-P105-PWY	TCA cycle IV |g__Bacillus.s__Bacillus_cereus_thuringiensis	343.21062356
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	442.6685958
-PWY-5941	glycogen degradation II 	6008.66416468
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Enterococcus.s__Enterococcus_faecalis	280.47160498
-PWY0-1061	superpathway of L alanine biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	606.80677435
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Helicobacter.s__Helicobacter_pylori	3534.84565337
-PWY-7560	methylerythritol phosphate pathway II|g__Acinetobacter.s__Acinetobacter_baumannii	3071.89162094
-PWY3O-355	stearate biosynthesis III |g__Neisseria.s__Neisseria_meningitidis	1110.5892141
-PWY-7385	1,3 propanediol biosynthesis |g__Listeria.s__Listeria_monocytogenes	304.84468158
-PWY-2942	L lysine biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii	4184.39331209
-PWY-6700	queuosine biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	773.71789786
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	4043.67395185
-PWY-7371	1,4 dihydroxy 6 naphthoate biosynthesis II|g__Helicobacter.s__Helicobacter_pylori	1996.39432254
-ARGSYN-PWY	L arginine biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes	2921.01536384
-PWY-6803	phosphatidylcholine acyl editing|unclassified	188.31453208
-NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Deinococcus.s__Deinococcus_radiodurans	11173.5307074
-PWY-6876	isopropanol biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	785.51879058
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	1703.07371128
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	1047.3630038
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Listeria.s__Listeria_monocytogenes	602.0224203
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	1063.82344404
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Listeria.s__Listeria_monocytogenes	943.08991771
-PWYG-321	mycolate biosynthesis|g__Listeria.s__Listeria_monocytogenes	727.33694636
-PWY-6588	pyruvate fermentation to acetone|g__Helicobacter.s__Helicobacter_pylori	1842.02586387
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Neisseria.s__Neisseria_meningitidis	2325.31672002
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii	5640.53034458
-HSERMETANA-PWY	L methionine biosynthesis III|g__Bacteroides.s__Bacteroides_vulgatus	3812.82018369
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Neisseria.s__Neisseria_meningitidis	1016.73003305
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Propionibacterium.s__Propionibacterium_acnes	3089.26224286
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Propionibacterium.s__Propionibacterium_acnes	640.34891279
-PWY-5872	ubiquinol 10 biosynthesis 	47.19209027
-PWY-6936	seleno amino acid biosynthesis|g__Enterococcus.s__Enterococcus_faecalis	575.37669038
-PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Listeria.s__Listeria_monocytogenes	465.60089664
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mitis_oralis_pneumoniae	4569.16166358
-PWY66-400	glycolysis VI |g__Listeria.s__Listeria_monocytogenes	824.96499562
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Enterococcus.s__Enterococcus_faecalis	1735.8151961
-PWY-3781	aerobic respiration I |g__Bacteroides.s__Bacteroides_vulgatus	2372.93286574
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Helicobacter.s__Helicobacter_pylori	3229.2140178
-PWY-6703	preQ0 biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	456.48187263
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Actinomyces.s__Actinomyces_odontolyticus	656.48352888
-DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	1713.17916266
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Actinomyces.s__Actinomyces_odontolyticus	711.05039042
-PWY-5659	GDP mannose biosynthesis|g__Bacteroides.s__Bacteroides_vulgatus	5067.97426256
-PWY-7373	superpathway of demethylmenaquinol 6 biosynthesis II|g__Helicobacter.s__Helicobacter_pylori	1006.81238724
-PWY-7663	gondoate biosynthesis |g__Neisseria.s__Neisseria_meningitidis	4680.40950351
-ARO-PWY	chorismate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	5469.17722481
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	3027.23954619
-P108-PWY	pyruvate fermentation to propanoate I|unclassified	80.78380624
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Bacillus.s__Bacillus_cereus_thuringiensis	271.55477416
-PWY-6891	thiazole biosynthesis II |g__Bacillus.s__Bacillus_cereus_thuringiensis	290.80786445
-PWY-4041	&gamma; glutamyl cycle|g__Enterococcus.s__Enterococcus_faecalis	813.17944374
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Listeria.s__Listeria_monocytogenes	913.1636705
-PWY66-389	phytol degradation|g__Listeria.s__Listeria_monocytogenes	853.87077686
-OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Clostridium.s__Clostridium_beijerinckii	485.31186564
-PWY-7392	taxadiene biosynthesis |g__Propionibacterium.s__Propionibacterium_acnes	2628.10374094
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans	18402.8474421
--- a/test-data/sample_similar_pathways.tabular	Wed Apr 20 09:15:27 2016 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1921 +0,0 @@
-id	name	sample1	sample2
-PWY-6527	stachyose degradation|g__Streptococcus.s__Streptococcus_mutans	9089.59894354	1696.97295223
-PWY-6471	peptidoglycan biosynthesis IV 	46455.865627	30449.8634207
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Rhodobacter.s__Rhodobacter_sphaeroides	12559.4677571	1282.55432956
-PWY-7288	fatty acid &beta; oxidation 	12818.3639901	25828.6507825
-PWY-3841	folate transformations II|g__Escherichia.s__Escherichia_coli	3007.20583149	217.72486044
-PWY-6737	starch degradation V|unclassified	48.21577448	239.03206251
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	9039.67328714	1589.30574604
-PWY-5659	GDP mannose biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	172.93621006	4543.25980432
-PWY-2942	L lysine biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	4710.2025552	708.88601201
-PWY-6151	S adenosyl L methionine cycle I	45554.1733597	42591.852733
-SALVADEHYPOX-PWY	adenosine nucleotides degradation II	88803.4244676	102915.149017
-PWY-6596	adenosine nucleotides degradation I	7817.66872493	696.2294504
-PWY4LZ-257	superpathway of fermentation 	44732.9715391	35196.3430939
-ILEUDEG-PWY	L isoleucine degradation I	33.8421746	6967.21446351
-PWY0-1261	anhydromuropeptides recycling|g__Escherichia.s__Escherichia_coli	5164.50768682	671.73572925
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	10239.9838748	583.91715667
-PWY-5686	UMP biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6754.11537711	798.00767542
-PWY-5384	sucrose degradation IV 	12240.4968895	9746.7324837
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	13369.9763528	1138.58445146
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Staphylococcus.s__Staphylococcus_epidermidis	7605.96092233	1506.9159832
-PWY-5676	acetyl CoA fermentation to butanoate II|g__Clostridium.s__Clostridium_beijerinckii	834.72187681	2820.816865
-GLUTORN-PWY	L ornithine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	2679.42319429	806.11037888
-PWY-5676	acetyl CoA fermentation to butanoate II|unclassified	293.27344931	313.4611172
-PWY-6107	chlorosalicylate degradation	4990.49166626	3707.99522741
-PWY-5514	UDP N acetyl D galactosamine biosynthesis II	211.99921193	8344.45133876
-HEMESYN2-PWY	heme biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	13472.0925007	1713.65799734
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	165.52210569	5261.09986526
-PWY-6467	Kdo transfer to lipid IVA III 	1326.69762557	332.28938386
-PWY-5971	palmitate biosynthesis II |unclassified	328.78037799	707.87369542
-PWY-6313	serotonin degradation|g__Propionibacterium.s__Propionibacterium_acnes	257.91056362	3253.85903121
-PWY-5897	superpathway of menaquinol 11 biosynthesis	21209.4938493	15529.8979214
-PWY-2942	L lysine biosynthesis III|g__Clostridium.s__Clostridium_beijerinckii	372.91948736	1644.65015852
-PWY-6305	putrescine biosynthesis IV|g__Rhodobacter.s__Rhodobacter_sphaeroides	2264.19577283	409.21191468
-HEMESYN2-PWY	heme biosynthesis II |g__Neisseria.s__Neisseria_meningitidis	160.47842097	2460.45875987
-PWY-6305	putrescine biosynthesis IV	19202.9873681	14135.5882465
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|unclassified	316.23278205	406.96069748
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	13109.3800959	1763.21900128
-ANAEROFRUCAT-PWY	homolactic fermentation|g__Clostridium.s__Clostridium_beijerinckii	604.47752551	1298.26997095
-PWY-6307	L tryptophan degradation X |g__Propionibacterium.s__Propionibacterium_acnes	209.13755224	2687.36440723
-PWY-6606	guanosine nucleotides degradation II|g__Rhodobacter.s__Rhodobacter_sphaeroides	2736.23201469	471.84886441
-PWY-5189	tetrapyrrole biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	9232.02762332	972.46052414
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|unclassified	217.85752657	210.92757904
-KETOGLUCONMET-PWY	ketogluconate metabolism|unclassified	119.08506847	59.39292026
-PWY-7242	D fructuronate degradation|g__Escherichia.s__Escherichia_coli	4314.1628976	868.78935856
-PWY-7345	superpathway of anaerobic sucrose degradation	42075.1735588	35631.7808556
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	9344.06613587	1804.83288371
-PWY-5705	allantoin degradation to glyoxylate III|g__Escherichia.s__Escherichia_coli	3172.00720139	608.25727177
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|unclassified	760.33769705	1912.3387995
-PWY-5897	superpathway of menaquinol 11 biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7642.0982759	298.12276962
-GLYCOLYSIS-TCA-GLYOX-BYPASS	superpathway of glycolysis, pyruvate dehydrogenase, TCA, and glyoxylate bypass|unclassified	150.63161824	269.89202219
-METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	9206.27525519	1643.30536678
-COA-PWY-1	coenzyme A biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes	603.40041396	3920.46150694
-P105-PWY	TCA cycle IV |g__Escherichia.s__Escherichia_coli	7310.46953028	1229.50010255
-PWY-5100	pyruvate fermentation to acetate and lactate II	61961.2543789	39326.3722409
-PWY-6385	peptidoglycan biosynthesis III |g__Escherichia.s__Escherichia_coli	5237.1059552	977.73782838
-PWY-1042	glycolysis IV 	79504.0797616	63155.1403741
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Staphylococcus.s__Staphylococcus_epidermidis	20271.2449264	2540.99221597
-HSERMETANA-PWY	L methionine biosynthesis III|g__Clostridium.s__Clostridium_beijerinckii	321.41986876	1960.53852968
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	440.67562541	831.03878498
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	13126.8635572	1971.91523207
-COLANSYN-PWY	colanic acid building blocks biosynthesis	28678.4558037	28494.4300501
-PWY-7159	chlorophyllide a biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides	4564.85282156	305.95144423
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Staphylococcus.s__Staphylococcus_aureus	7580.86212239	1568.34008406
-PWY-5920	superpathway of heme biosynthesis from glycine|g__Staphylococcus.s__Staphylococcus_epidermidis	7944.32120453	653.29968825
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	8822.65630251	1535.07017041
-PWY-5345	superpathway of L methionine biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis	11301.1471778	2705.37442241
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Streptococcus.s__Streptococcus_mutans	5942.63765691	1075.14036609
-PWY-6859	all trans farnesol biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	312.4090513	278.96333406
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1069.37687177	122.48983805
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1056.89034552	272.35544024
-PWY-5690	TCA cycle II 	56652.9129517	45179.0787825
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Escherichia.s__Escherichia_coli	3806.64040489	1089.7320477
-PWY-7242	D fructuronate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	1182.21728289	246.75841607
-PWY-6700	queuosine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	10350.0205102	2211.34331624
-P108-PWY	pyruvate fermentation to propanoate I	21370.6357137	10961.6207702
-LPSSYN-PWY	superpathway of lipopolysaccharide biosynthesis	3608.80212924	919.83722264
-PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I	5078.65706696	15554.5537359
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli	9979.31727274	1719.87779867
-ARGSYN-PWY	L arginine biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	7654.69614166	1320.84284529
-PWY-4702	phytate degradation I	22624.2507124	8353.47948871
-PWY-6609	adenine and adenosine salvage III|g__Streptococcus.s__Streptococcus_mutans	10068.4640429	1618.73766477
-SO4ASSIM-PWY	sulfate reduction I |g__Rhodobacter.s__Rhodobacter_sphaeroides	12050.042445	2268.22725512
-COA-PWY-1	coenzyme A biosynthesis II 	38930.5339438	36867.6785178
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4802.21599474	801.71540826
-PWY-5840	superpathway of menaquinol 7 biosynthesis|g__Escherichia.s__Escherichia_coli	3654.45688023	530.81851976
-NONOXIPENT-PWY	pentose phosphate pathway |g__Rhodobacter.s__Rhodobacter_sphaeroides	8778.43750382	439.98894176
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Streptococcus.s__Streptococcus_mutans	5214.28397972	621.50640133
-HEMESYN2-PWY	heme biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	10632.9219075	2358.3855224
-PWY-6318	L phenylalanine degradation IV |g__Streptococcus.s__Streptococcus_mutans	1598.93459295	477.28733176
-P185-PWY	formaldehyde assimilation III |unclassified	229.66359349	92.56768513
-PWY-5898	superpathway of menaquinol 12 biosynthesis|g__Escherichia.s__Escherichia_coli	3694.00663281	527.00700198
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Escherichia.s__Escherichia_coli	2952.43577862	691.62173498
-PWY-5531	chlorophyllide a biosynthesis II 	22119.1216626	4923.54292722
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	194.63379936	4777.3405113
-DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	11509.1020833	1676.68731447
-PWY0-845	superpathway of pyridoxal 5 phosphate biosynthesis and salvage|g__Escherichia.s__Escherichia_coli	3499.01474278	897.09085248
-GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	365.45126605	890.35730088
-DAPLYSINESYN-PWY	L lysine biosynthesis I|unclassified	103.4212871	260.16968336
-HISDEG-PWY	L histidine degradation I|g__Acinetobacter.s__Acinetobacter_baumannii	172.00323274	5795.08134238
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	130.88871628	638.07241928
-CITRULBIO-PWY	L citrulline biosynthesis|unclassified	55.7009942	301.63018561
-PWY66-398	TCA cycle III 	46956.7559626	32996.8163607
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|unclassified	25.9186715	126.52926965
-PWY-5686	UMP biosynthesis|g__Neisseria.s__Neisseria_meningitidis	144.27500451	1799.30870351
-PWY-5484	glycolysis II |g__Staphylococcus.s__Staphylococcus_epidermidis	10636.6254014	2154.73759041
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	10079.6235364	1939.97841895
-PWY3O-355	stearate biosynthesis III 	39765.4849123	23027.2311249
-NAD-BIOSYNTHESIS-II	NAD salvage pathway II	13145.2519506	14394.7209021
-PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Escherichia.s__Escherichia_coli	4058.26227084	890.49347278
-PWY-5265	peptidoglycan biosynthesis II 	49608.9187363	30623.3509857
-PWY0-1586	peptidoglycan maturation |g__Rhodobacter.s__Rhodobacter_sphaeroides	17646.4613462	3761.43440872
-PWY-6353	purine nucleotides degradation II 	47485.7006394	58756.4169767
-PWY-6692	Fe oxidation|g__Propionibacterium.s__Propionibacterium_acnes	203.08819313	13035.0349412
-PWY-5918	superpathay of heme biosynthesis from glutamate|g__Escherichia.s__Escherichia_coli	3841.04767056	619.11211505
-PWY-7111	pyruvate fermentation to isobutanol |g__Acinetobacter.s__Acinetobacter_baumannii	580.74819003	16585.031503
-PWY-6168	flavin biosynthesis III |unclassified	22.05762889	341.09623187
-GLYCOLYSIS	glycolysis I |g__Clostridium.s__Clostridium_beijerinckii	733.21731186	1313.42324383
-PWY-5861	superpathway of demethylmenaquinol 8 biosynthesis	18317.5850337	12120.8260963
-NONMEVIPP-PWY	methylerythritol phosphate pathway I|unclassified	190.48310055	696.51351259
-PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	5837.85592311	1026.09119845
-PWY-7400	L arginine biosynthesis IV |unclassified	187.8668014	606.71505694
-PWY-5022	4 aminobutanoate degradation V|g__Staphylococcus.s__Staphylococcus_aureus	10972.4643446	1366.77735904
-PWY-5994	palmitate biosynthesis I 	42579.474931	36635.0319315
-FERMENTATION-PWY	mixed acid fermentation	16516.6117993	33151.9669407
-PWY-6612	superpathway of tetrahydrofolate biosynthesis	33805.9628822	32920.4617426
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	14406.9465613	1067.9940728
-PWY-1622	formaldehyde assimilation I 	16869.7670315	17976.0336165
-P562-PWY	myo inositol degradation I|g__Clostridium.s__Clostridium_beijerinckii	512.53485994	1015.63800912
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mutans	9614.7256839	1368.47269108
-ARO-PWY	chorismate biosynthesis I	39856.9421018	39980.1371052
-PWY0-1586	peptidoglycan maturation |g__Staphylococcus.s__Staphylococcus_aureus	12323.3851924	1001.67057462
-PWY-5189	tetrapyrrole biosynthesis II |g__Escherichia.s__Escherichia_coli	2445.26406453	959.90476359
-SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1206.06770903	368.86227068
-PWY-5067	glycogen biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	5662.76888916	465.17553745
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Staphylococcus.s__Staphylococcus_epidermidis	14173.9637034	1376.65524529
-PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I |g__Escherichia.s__Escherichia_coli	4668.33455703	605.21830118
-P125-PWY	superpathway of  butanediol biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	662.73597172	130.89915684
-LACTOSECAT-PWY	lactose and galactose degradation I|g__Streptococcus.s__Streptococcus_mutans	11484.2967386	2194.30510952
-PWY-6313	serotonin degradation|g__Deinococcus.s__Deinococcus_radiodurans	141.91395573	50195.054371
-PWY-6897	thiamin salvage II|unclassified	62.66887813	51.62141534
-PWY-7663	gondoate biosynthesis 	69550.9703408	77791.38567
-PWY66-389	phytol degradation|g__Clostridium.s__Clostridium_beijerinckii	672.92789582	1843.07070366
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	2394.70878208	322.26753719
-PWY-7111	pyruvate fermentation to isobutanol |g__Propionibacterium.s__Propionibacterium_acnes	110.81603138	3758.12702189
-PWY0-1319	CDP diacylglycerol biosynthesis II	38923.4794807	38574.8677638
-P221-PWY	octane oxidation	13386.9455521	13355.9586216
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Clostridium.s__Clostridium_beijerinckii	685.77140914	1599.24912876
-GLUTORN-PWY	L ornithine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	937.51629233	169.23892553
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Streptococcus.s__Streptococcus_mutans	6005.82757292	1324.68398405
-PWY-7374	1,4 dihydroxy 6 naphthoate biosynthesis I	22.25632096	426.1794403
-PWY-7111	pyruvate fermentation to isobutanol |g__Streptococcus.s__Streptococcus_mutans	10536.2694569	1359.38690588
-PWY-6317	galactose degradation I |g__Streptococcus.s__Streptococcus_mutans	6616.25978892	1549.17439306
-PWY-5994	palmitate biosynthesis I |unclassified	56.35244747	182.8620241
-GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|g__Escherichia.s__Escherichia_coli	3331.8168633	393.47882754
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	9427.54664261	1894.30993885
-PWY-6672	cis genanyl CoA degradation|g__Acinetobacter.s__Acinetobacter_baumannii	197.9312871	6605.50398112
-FAO-PWY	fatty acid &beta; oxidation I|g__Staphylococcus.s__Staphylococcus_aureus	17230.3907209	1811.17843293
-GLUCARGALACTSUPER-PWY	superpathway of D glucarate and D galactarate degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	308.68763761	88.53014421
-PWY0-1319	CDP diacylglycerol biosynthesis II|unclassified	15.80704549	251.37680806
-TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA|g__Escherichia.s__Escherichia_coli	6403.06946833	517.51984023
-PWY-5103	L isoleucine biosynthesis III|g__Pseudomonas.s__Pseudomonas_aeruginosa	812.41090213	340.20331796
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6200.11930071	1126.63760018
-P241-PWY	coenzyme B biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3163.50129316	562.80976894
-PWY-7003	glycerol degradation to butanol|g__Clostridium.s__Clostridium_beijerinckii	819.01588751	1275.16284366
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Escherichia.s__Escherichia_coli	3402.09943889	857.94918407
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|unclassified	299.90880661	35.87443555
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	4590.98751745	373.74829981
-PWY-5044	purine nucleotides degradation I |g__Escherichia.s__Escherichia_coli	6488.12711907	598.55626266
-SO4ASSIM-PWY	sulfate reduction I |g__Staphylococcus.s__Staphylococcus_epidermidis	14427.2187009	4024.63059556
-PWY-6654	phosphopantothenate biosynthesis III	3761.44995261	1319.99040546
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus	8228.75204539	864.56404528
-PWY66-391	fatty acid &beta; oxidation VI |g__Deinococcus.s__Deinococcus_radiodurans	189.68277981	30320.8703187
-PWY-5136	fatty acid &beta; oxidation II |g__Clostridium.s__Clostridium_beijerinckii	662.74020545	1731.37282375
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	15599.5029402	1720.86327384
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	485.84384817	15556.0251775
-PWY-6609	adenine and adenosine salvage III|g__Staphylococcus.s__Staphylococcus_aureus	21193.0615939	2212.50631896
-PWY-7242	D fructuronate degradation	8877.84608059	20590.2145332
-POLYAMSYN-PWY	superpathway of polyamine biosynthesis I	8922.9354576	8010.09959475
-PWY-6608	guanosine nucleotides degradation III	84792.8231213	93639.0955773
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Staphylococcus.s__Staphylococcus_epidermidis	3502.89369562	2372.3193765
-PWY-6891	thiazole biosynthesis II |unclassified	32.22917378	74.15115623
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	502.20311762	1365.7276384
-PWY-5654	2 amino 3 carboxymuconate semialdehyde degradation to 2 oxopentenoate	22.18668573	73.64822065
-PWY-5676	acetyl CoA fermentation to butanoate II	54707.0613182	61781.9692044
-P122-PWY	heterolactic fermentation|g__Escherichia.s__Escherichia_coli	3913.82758132	893.58511653
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2829.0327074	322.24697176
-PWY-6606	guanosine nucleotides degradation II|g__Acinetobacter.s__Acinetobacter_baumannii	66.28003314	6565.15187887
-LEU-DEG2-PWY	L leucine degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	5583.19989234	666.06660022
-PWYG-321	mycolate biosynthesis	59600.1171835	60419.1389458
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Escherichia.s__Escherichia_coli	6193.51954319	1151.12459675
-PWY-7118	chitin degradation to ethanol	24930.672859	16469.3260812
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Streptococcus.s__Streptococcus_mutans	4993.87650547	932.13737911
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	371.72576198	7767.99220384
-PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis	27609.9438923	55410.4776392
-PWY-7208	superpathway of pyrimidine nucleobases salvage	64540.0659157	71521.058724
-KETOGLUCONMET-PWY	ketogluconate metabolism|g__Pseudomonas.s__Pseudomonas_aeruginosa	546.29117717	129.19896641
-PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	305.86324873	5380.89233958
-PWY0-1061	superpathway of L alanine biosynthesis	33323.3965946	53212.2270873
-PWY-5898	superpathway of menaquinol 12 biosynthesis	21209.4938493	15529.8979214
-PWY-5101	L isoleucine biosynthesis II|g__Rhodobacter.s__Rhodobacter_sphaeroides	2705.00538525	750.2130013
-COA-PWY	coenzyme A biosynthesis I	31898.4636198	34557.0784641
-PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II 	25721.2598035	37381.5758634
-PWY-2941	L lysine biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	9626.53531302	2174.69673939
-P42-PWY	incomplete reductive TCA cycle	60388.8040467	37825.4890308
-PWY-6948	sitosterol degradation to androstenedione	3416.84899096	490.76544596
-TRNA-CHARGING-PWY	tRNA charging|unclassified	151.67071684	279.10898301
-PWY-3841	folate transformations II|g__Rhodobacter.s__Rhodobacter_sphaeroides	4568.53278951	242.13420069
-PWY-5505	L glutamate and L glutamine biosynthesis|unclassified	85.52116813	372.70122326
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Escherichia.s__Escherichia_coli	1993.40709276	272.540553
-PWY66-422	D galactose degradation V |g__Staphylococcus.s__Staphylococcus_epidermidis	10908.8267153	1626.49561937
-GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes	107.67190015	3251.71232526
-PWY-5838	superpathway of menaquinol 8 biosynthesis I	20399.4559727	15459.4596579
-PWY-7373	superpathway of demethylmenaquinol 6 biosynthesis II	78.14745906	7117.4840479
-HISTSYN-PWY	L histidine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	7635.72989959	2488.50153169
-PWY-7254	TCA cycle VII |unclassified	231.48620875	180.72369084
-PWY-7111	pyruvate fermentation to isobutanol |g__Methanobrevibacter.s__Methanobrevibacter_smithii	3668.11294465	917.90287829
-PWY-6309	L tryptophan degradation XI |g__Escherichia.s__Escherichia_coli	801.54957038	88.65248227
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	11587.463692	1975.20599239
-GLUDEG-I-PWY	GABA shunt|unclassified	60.56506309	33.45452324
-PWY-5920	superpathway of heme biosynthesis from glycine	34220.5374748	25538.8664863
-PWY-6168	flavin biosynthesis III 	32050.7898489	39590.0261786
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|unclassified	362.96598102	771.50061205
-REDCITCYC	TCA cycle VIII 	48658.1204287	30732.2204443
-GLYOXYLATE-BYPASS	glyoxylate cycle|g__Escherichia.s__Escherichia_coli	6466.26356234	494.57454629
-ORNARGDEG-PWY	superpathway of L arginine and L ornithine degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	2719.96996417	381.3209558
-PWY-2942	L lysine biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus	8649.82954791	733.47404224
-PWY-7663	gondoate biosynthesis |g__Escherichia.s__Escherichia_coli	7720.61624637	2314.43992791
-PWY-7400	L arginine biosynthesis IV |g__Staphylococcus.s__Staphylococcus_epidermidis	12833.4567775	2671.58333094
-PWY-5101	L isoleucine biosynthesis II	22361.0420388	13741.9144118
-PWY-6123	inosine 5 phosphate biosynthesis I	37738.9966888	31914.8417223
-PWY-5180	toluene degradation I  (via o cresol)	7753.60034013	31762.9856249
-COA-PWY	coenzyme A biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	8929.2757152	597.27564545
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Staphylococcus.s__Staphylococcus_epidermidis	11041.8898464	2386.75379651
-PWY-5136	fatty acid &beta; oxidation II |g__Deinococcus.s__Deinococcus_radiodurans	272.46866453	44619.5712834
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	283.82647915	890.69968864
-GLUCARGALACTSUPER-PWY	superpathway of D glucarate and D galactarate degradation|g__Escherichia.s__Escherichia_coli	6349.73567749	692.7369213
-P42-PWY	incomplete reductive TCA cycle|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3522.22516385	529.36311149
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	13369.9763528	1138.58445146
-GLYCOGENSYNTH-PWY	glycogen biosynthesis I 	29622.00133	40236.4632266
-PWY-5505	L glutamate and L glutamine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1694.23248921	142.30067375
-PWY-4984	urea cycle|g__Escherichia.s__Escherichia_coli	1054.93928256	212.3900575
-ARGDEG-PWY	superpathway of L arginine, putrescine, and 4 aminobutanoate degradation|g__Escherichia.s__Escherichia_coli	4707.38168219	903.21469748
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	8020.45265305	1296.92460278
-TCA	TCA cycle I |unclassified	567.21643748	389.51525357
-PWY-6606	guanosine nucleotides degradation II|g__Clostridium.s__Clostridium_beijerinckii	274.36379257	1082.8715938
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation	65326.5938509	53707.8353667
-VALSYN-PWY	L valine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3988.67469701	624.33499414
-THREOCAT-PWY	superpathway of L threonine metabolism	36.33843	10232.9255509
-PWY-5989	stearate biosynthesis II |unclassified	150.0104206	440.74820304
-PWY-621	sucrose degradation III |g__Streptococcus.s__Streptococcus_mutans	5462.06770741	976.15228826
-PWY-7003	glycerol degradation to butanol	35602.3801815	33104.5319075
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Escherichia.s__Escherichia_coli	3107.00842558	665.87235208
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	7910.24669717	1324.65246274
-PWY-5005	biotin biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	157.63326438	3111.96188975
-PWY-6385	peptidoglycan biosynthesis III |g__Staphylococcus.s__Staphylococcus_aureus	9865.01782236	1342.97798589
-PWY-821	superpathway of sulfur amino acid biosynthesis |unclassified	198.35944949	62.91254293
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	14318.6521252	2221.10087853
-PWY-5097	L lysine biosynthesis VI|g__Staphylococcus.s__Staphylococcus_aureus	9077.6404397	733.33517056
-PWY-5103	L isoleucine biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii	328.98697347	6751.96113504
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|unclassified	281.17453992	46.48568564
-PWY-6151	S adenosyl L methionine cycle I|g__Staphylococcus.s__Staphylococcus_epidermidis	13361.0944098	1958.98858339
-PHOSLIPSYN-PWY	superpathway of phospholipid biosynthesis I 	22656.8328264	22859.0881997
-PWY-7208	superpathway of pyrimidine nucleobases salvage|unclassified	328.44824284	1632.16299386
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	155.38853575	4189.38439876
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Staphylococcus.s__Staphylococcus_aureus	11801.8163529	1457.70952419
-PWY-5345	superpathway of L methionine biosynthesis |unclassified	180.73076668	106.46534517
-PWY-3781	aerobic respiration I |g__Staphylococcus.s__Staphylococcus_aureus	31496.0304037	2108.46546528
-VALDEG-PWY	L valine degradation I	14161.8626457	21609.5893359
-P125-PWY	superpathway of  butanediol biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	342.57329532	9915.8371066
-ORNDEG-PWY	superpathway of ornithine degradation	15466.9207951	9221.98438125
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	8541.06686549	741.49591192
-COA-PWY	coenzyme A biosynthesis I|g__Neisseria.s__Neisseria_meningitidis	258.07832009	1987.15262051
-PWY66-400	glycolysis VI |g__Streptococcus.s__Streptococcus_mutans	6043.58140287	848.32486235
-PWY66-367	ketogenesis	20586.7755002	11739.8805345
-PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Acinetobacter.s__Acinetobacter_baumannii	989.32557212	17228.6782931
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III 	23921.9375211	36263.3119251
-PWY-5347	superpathway of L methionine biosynthesis |unclassified	191.96919958	67.95879295
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Staphylococcus.s__Staphylococcus_aureus	9358.08780623	1291.22154875
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	452.55553718	238.97560409
-FAO-PWY	fatty acid &beta; oxidation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1506.9573407	981.4114041
-PWY-6609	adenine and adenosine salvage III|g__Helicobacter.s__Helicobacter_pylori	302.98828546	2894.7255722
-PWY-5840	superpathway of menaquinol 7 biosynthesis	21558.5619585	16325.3002503
-PWY-7007	methyl ketone biosynthesis|unclassified	33.87442557	45.85194053
-PWY-6708	ubiquinol 8 biosynthesis |g__Escherichia.s__Escherichia_coli	5192.63109166	908.15381419
-PWY0-881	superpathway of fatty acid biosynthesis I |g__Escherichia.s__Escherichia_coli	2385.65882138	1346.1349139
-PWY-5101	L isoleucine biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	858.49383751	2333.52768925
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Rhodobacter.s__Rhodobacter_sphaeroides	1759.45401497	633.23408091
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	107.7427386	567.86059308
-GLYCOLYSIS	glycolysis I |g__Staphylococcus.s__Staphylococcus_epidermidis	10365.8680099	2175.53967026
-PWY0-781	aspartate superpathway	42082.093207	34735.1619087
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Clostridium.s__Clostridium_beijerinckii	253.21330017	1172.42542061
-PWY-7385	1,3 propanediol biosynthesis 	327.27699123	8391.61837975
-PWY-6859	all trans farnesol biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	1633.00145995	847.2112474
-PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Pseudomonas.s__Pseudomonas_aeruginosa	1995.83542583	198.89557888
-CRNFORCAT-PWY	creatinine degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	6299.16973762	1505.35613899
-FAO-PWY	fatty acid &beta; oxidation I|g__Deinococcus.s__Deinococcus_radiodurans	280.54495609	57620.9124891
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Staphylococcus.s__Staphylococcus_aureus	12033.5263384	626.64503969
-PWY-6703	preQ0 biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	9091.84597682	1148.8475077
-PWY-6629	superpathway of L tryptophan biosynthesis	9287.7075098	2101.64796802
-PWY-6435	4 hydroxybenzoate biosynthesis V	25952.2168886	19722.590659
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Staphylococcus.s__Staphylococcus_epidermidis	11620.1296837	2327.01040743
-PWY-6396	superpathway of 2,3 butanediol biosynthesis	57893.974554	18390.2977591
-PWY-6435	4 hydroxybenzoate biosynthesis V|unclassified	19.76275995	567.1033635
-PWY1F-823	leucopelargonidin and leucocyanidin biosynthesis|unclassified	67.89978505	90.81838409
-PWY-6700	queuosine biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7642.6357398	1101.53666267
-SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis	42017.840114	39794.1293619
-PWY-5156	superpathway of fatty acid biosynthesis II 	3728.67047368	865.29398235
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Escherichia.s__Escherichia_coli	3668.62659516	984.52375049
-PWY-6285	superpathway of fatty acids biosynthesis 	21733.1550937	28926.7261254
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I	65227.4195639	77838.2210959
-PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion 	6382.11030884	39587.1665814
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	7493.69947139	1236.88763711
-PWY-6895	superpathway of thiamin diphosphate biosynthesis II|g__Escherichia.s__Escherichia_coli	2043.69566526	631.16472332
-PWY-2941	L lysine biosynthesis II|g__Escherichia.s__Escherichia_coli	3674.13638979	507.25792094
-PWY-6609	adenine and adenosine salvage III|g__Staphylococcus.s__Staphylococcus_epidermidis	9025.05759909	2818.09050282
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	115.9842004	4378.06534124
-PWY-7234	inosine 5 phosphate biosynthesis III|unclassified	72.7443044	71.80843944
-PWY-7254	TCA cycle VII |g__Staphylococcus.s__Staphylococcus_epidermidis	12213.3753982	2074.13638706
-PWY-6396	superpathway of 2,3 butanediol biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	22322.4698654	3887.83766595
-PWY-6385	peptidoglycan biosynthesis III |g__Staphylococcus.s__Staphylococcus_epidermidis	9674.23314871	1907.17037023
-PWY-7315	dTDP N acetylthomosamine biosynthesis|g__Escherichia.s__Escherichia_coli	4005.75210448	412.13699564
-PWY-6823	molybdenum cofactor biosynthesis|unclassified	34.30203548	84.75362593
-PWY-5484	glycolysis II |unclassified	234.31061285	304.3793023
-PWY-6123	inosine 5 phosphate biosynthesis I|unclassified	78.62626519	105.76115508
-PWY-7279	aerobic respiration II  (yeast)|g__Deinococcus.s__Deinococcus_radiodurans	117.20754161	33468.3071964
-VALSYN-PWY	L valine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1315.79158198	460.10715773
-PWY-5188	tetrapyrrole biosynthesis I |g__Propionibacterium.s__Propionibacterium_acnes	267.30975913	2875.26924255
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|unclassified	154.8043814	200.4436209
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	9120.26391145	272.86237442
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Staphylococcus.s__Staphylococcus_epidermidis	14469.2814598	921.6033735
-GALACTARDEG-PWY	D galactarate degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	308.68763761	88.53014421
-COA-PWY	coenzyme A biosynthesis I|g__Escherichia.s__Escherichia_coli	2995.32276129	325.64305652
-HISDEG-PWY	L histidine degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	698.36146493	216.48231095
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	849.92936801	233.48917514
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I	32505.4427282	27032.6760359
-PWY-6737	starch degradation V|g__Rhodobacter.s__Rhodobacter_sphaeroides	1425.87954771	345.54593218
-PWY-5178	toluene degradation IV  (via catechol)	1226.00430654	11102.2883918
-PWY-6270	isoprene biosynthesis I|g__Escherichia.s__Escherichia_coli	4112.18893936	523.76939117
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Staphylococcus.s__Staphylococcus_aureus	6428.35621408	1216.53259179
-VALDEG-PWY	L valine degradation I|unclassified	32.81479368	49.03150895
-PWY-5508	adenosylcobalamin biosynthesis from cobyrinate a,c diamide II	4576.89285222	5118.2399954
-PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis 	25306.3582779	36043.3021017
-CHLOROPHYLL-SYN	chlorophyllide a biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	4670.41210187	310.76733959
-HISTSYN-PWY	L histidine biosynthesis	32416.0592818	31600.2846346
-PWY-5189	tetrapyrrole biosynthesis II |unclassified	200.73461345	139.37065366
-PWY-6760	xylose degradation III	804.98341681	1622.33304968
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	96.80558398	4120.80391509
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis	16089.2661643	29058.0991718
-PWY-7111	pyruvate fermentation to isobutanol |g__Neisseria.s__Neisseria_meningitidis	93.78311912	4627.94217314
-GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	5994.21148325	1215.87465916
-PWY-5097	L lysine biosynthesis VI|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3117.37734486	284.11061317
-PWY-5177	glutaryl CoA degradation|g__Deinococcus.s__Deinococcus_radiodurans	233.62346918	17536.2644798
-ANAGLYCOLYSIS-PWY	glycolysis III 	48607.2637088	55972.8959848
-PWY-5265	peptidoglycan biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	12343.9928019	1667.17954604
-GLUCARDEG-PWY	D glucarate degradation I	16085.3152802	8144.45694399
-PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Pseudomonas.s__Pseudomonas_aeruginosa	2275.6870203	101.46591862
-PWY-5723	Rubisco shunt|g__Escherichia.s__Escherichia_coli	6654.91523402	1332.34757015
-PWY-6897	thiamin salvage II|g__Clostridium.s__Clostridium_beijerinckii	313.86823056	701.50927756
-PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	5243.79815282	837.42998224
-PWY-5345	superpathway of L methionine biosynthesis 	45016.4164823	40305.8351614
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12322.5991748	807.8058525
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Staphylococcus.s__Staphylococcus_aureus	14920.2643862	1024.89272699
-PPGPPMET-PWY	ppGpp biosynthesis|unclassified	117.0622137	19.02026525
-PWY-6901	superpathway of glucose and xylose degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	9659.80788879	2022.16924516
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	9655.59084443	1582.81841201
-PWY-5103	L isoleucine biosynthesis III|g__Rhodobacter.s__Rhodobacter_sphaeroides	17193.2488729	2495.84469532
-P221-PWY	octane oxidation|g__Rhodobacter.s__Rhodobacter_sphaeroides	7078.40741037	794.80432216
-VALSYN-PWY	L valine biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	13536.0205713	2094.79557458
-PWY-5973	cis vaccenate biosynthesis|unclassified	355.34773906	479.9093679
-COBALSYN-PWY	adenosylcobalamin salvage from cobinamide I	5346.7993806	12547.6445349
-PWY-6606	guanosine nucleotides degradation II|g__Escherichia.s__Escherichia_coli	11605.3506853	1458.85745696
-PWY-5675	nitrate reduction V |unclassified	48.56332943	41.23955535
-PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Propionibacterium.s__Propionibacterium_acnes	215.85301365	4815.80243188
-DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	10159.6627346	2449.72280592
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	6232.20074694	620.38502342
-AST-PWY	L arginine degradation II |unclassified	36.70896885	43.0028201
-PWY-7392	taxadiene biosynthesis |unclassified	111.19487525	275.3197682
-PWY-7345	superpathway of anaerobic sucrose degradation|g__Staphylococcus.s__Staphylococcus_aureus	9983.74247617	1255.83512607
-PWY-5097	L lysine biosynthesis VI|g__Clostridium.s__Clostridium_beijerinckii	387.82096645	656.86620468
-PWY-7664	oleate biosynthesis IV |g__Rhodobacter.s__Rhodobacter_sphaeroides	18336.9072645	3167.12388831
-RHAMCAT-PWY	L rhamnose degradation I	2753.00090723	6231.75816202
-PWY-5973	cis vaccenate biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	461.26627004	559.77821671
-P125-PWY	superpathway of  butanediol biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	20020.7600357	3833.68524075
-PWY-4242	pantothenate and coenzyme A biosynthesis III|unclassified	33.95903206	32.0301303
-GLYOXYLATE-BYPASS	glyoxylate cycle|g__Acinetobacter.s__Acinetobacter_baumannii	151.84698209	5402.12516411
-DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II	50161.6243889	45943.6587752
-PWY-3781	aerobic respiration I |unclassified	3699.62755214	1118.9863796
-GLYOXYLATE-BYPASS	glyoxylate cycle|unclassified	245.78660945	242.35758732
-PWY-6309	L tryptophan degradation XI |unclassified	16.69873704	148.82889742
-PWY-6737	starch degradation V|g__Clostridium.s__Clostridium_beijerinckii	465.46058959	1119.29349207
-TRNA-CHARGING-PWY	tRNA charging|g__Clostridium.s__Clostridium_beijerinckii	264.42831854	715.72774223
-GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Escherichia.s__Escherichia_coli	18247.5404093	2132.81295952
-GALACTARDEG-PWY	D galactarate degradation I|g__Escherichia.s__Escherichia_coli	6349.73567749	692.7369213
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I	26809.1381266	41473.715612
-PWY-7400	L arginine biosynthesis IV |g__Escherichia.s__Escherichia_coli	3444.18182193	671.3005352
-PWY66-399	gluconeogenesis III	1727.6463382	28487.8587021
-SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Escherichia.s__Escherichia_coli	12492.2541444	2072.73166326
-PWY-3841	folate transformations II|g__Staphylococcus.s__Staphylococcus_aureus	9084.87075958	1387.77140357
-PWY-6519	8 amino 7 oxononanoate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	7303.54634683	1335.34415148
-PWY-1541	superpathway of taurine degradation	3950.3540202	1492.52339702
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	250.72579119	640.11726281
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	9460.86075374	1143.6165617
-PWY0-1586	peptidoglycan maturation |g__Streptococcus.s__Streptococcus_mutans	14372.5089442	2681.17833914
-P4-PWY	superpathway of L lysine, L threonine and L methionine biosynthesis I	42981.9650159	35282.6051972
-PWY-5484	glycolysis II |g__Staphylococcus.s__Staphylococcus_aureus	9350.55702362	1348.76586688
-PWY-5918	superpathay of heme biosynthesis from glutamate	36642.2365475	27023.7560657
-PWY66-398	TCA cycle III |g__Rhodobacter.s__Rhodobacter_sphaeroides	11496.9487253	1488.79654114
-GLUCONEO-PWY	gluconeogenesis I|unclassified	341.78038163	581.93203014
-GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|g__Escherichia.s__Escherichia_coli	3506.50908052	558.89720502
-LACTOSECAT-PWY	lactose and galactose degradation I	75939.8184084	36816.9626159
-PWY-5097	L lysine biosynthesis VI|unclassified	165.25817735	283.80635899
-PWY-5837	1,4 dihydroxy 2 naphthoate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	8931.57710009	1036.87621513
-METSYN-PWY	L homoserine and L methionine biosynthesis|g__Escherichia.s__Escherichia_coli	4859.01930985	976.4776168
-PWY-6609	adenine and adenosine salvage III|unclassified	490.81998749	592.75976349
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Escherichia.s__Escherichia_coli	6316.17334914	1039.96689043
-ARGDEG-PWY	superpathway of L arginine, putrescine, and 4 aminobutanoate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	2719.96996417	381.3209558
-PWY-6609	adenine and adenosine salvage III|g__Clostridium.s__Clostridium_beijerinckii	288.50515481	565.36610303
-ILEUSYN-PWY	L isoleucine biosynthesis I |unclassified	776.19346604	604.13438494
-PWY-6737	starch degradation V|g__Escherichia.s__Escherichia_coli	4610.53764213	1144.31590441
-PWY-3841	folate transformations II|g__Streptococcus.s__Streptococcus_mutans	3609.0610315	819.21316566
-PWY-5136	fatty acid &beta; oxidation II |g__Acinetobacter.s__Acinetobacter_baumannii	495.9600788	17197.3618981
-PWY-6596	adenosine nucleotides degradation I|g__Escherichia.s__Escherichia_coli	5883.94684022	550.70718522
-PWY-7664	oleate biosynthesis IV |unclassified	590.64109487	689.53854189
-PWY-7165	L ascorbate biosynthesis VI 	3612.23849062	5853.62894529
-PWY66-398	TCA cycle III |unclassified	57.05277505	211.46859686
-PWY-3781	aerobic respiration I |g__Rhodobacter.s__Rhodobacter_sphaeroides	45855.0506957	7356.87095282
-SALVADEHYPOX-PWY	adenosine nucleotides degradation II|unclassified	642.94774992	855.38281997
-PYRIDNUCSAL-PWY	NAD salvage pathway I|g__Escherichia.s__Escherichia_coli	2995.34583519	903.03899574
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	2623.79630383	525.22827111
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Staphylococcus.s__Staphylococcus_epidermidis	12753.2752123	1625.19039837
-PWY-5067	glycogen biosynthesis II 	5879.13541247	719.97100925
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |unclassified	543.86176778	1108.10692719
-PWY-5723	Rubisco shunt|unclassified	421.29921724	188.68046806
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Escherichia.s__Escherichia_coli	3497.05889875	1335.13916404
-PWY-4722	creatinine degradation II	7804.75912054	358.59562242
-PWY-5083	NAD NADH phosphorylation and dephosphorylation	35509.6473029	33915.2948286
-METHGLYUT-PWY	superpathway of methylglyoxal degradation	43911.8692375	22064.3769545
-PWY-6629	superpathway of L tryptophan biosynthesis|g__Escherichia.s__Escherichia_coli	3298.19736256	672.11726279
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Staphylococcus.s__Staphylococcus_epidermidis	12882.233349	3873.24946627
-PWY-5484	glycolysis II 	45286.8914532	53220.6005913
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	13741.3085818	1652.83726769
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	10037.8934904	2349.17571622
-PWY0-845	superpathway of pyridoxal 5 phosphate biosynthesis and salvage	8360.73151325	19483.45573
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12991.9513824	2172.99065837
-PWY-6527	stachyose degradation|g__Escherichia.s__Escherichia_coli	5104.42642459	685.94419436
-PWY4LZ-257	superpathway of fermentation |g__Clostridium.s__Clostridium_beijerinckii	666.72437168	2285.4099966
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Escherichia.s__Escherichia_coli	3493.26437899	774.5820243
-PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |g__Pseudomonas.s__Pseudomonas_aeruginosa	1016.39386483	86.58790803
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I	46347.5305712	28082.7835023
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli	9979.31727274	1719.87779867
-PWY-5837	1,4 dihydroxy 2 naphthoate biosynthesis I|g__Escherichia.s__Escherichia_coli	4043.64711036	280.87263768
-PWY-7221	guanosine ribonucleotides de novo biosynthesis	67239.6295973	73591.4229563
-PWY3O-355	stearate biosynthesis III |g__Pseudomonas.s__Pseudomonas_aeruginosa	2511.03092886	726.07236887
-PPGPPMET-PWY	ppGpp biosynthesis|g__Escherichia.s__Escherichia_coli	6456.94889803	1341.69597709
-HEMESYN2-PWY	heme biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	3368.9177882	896.96458734
-PWY66-389	phytol degradation|g__Escherichia.s__Escherichia_coli	13195.7222018	1867.39557286
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	264.13154309	1150.6240638
-PWY-6595	superpathway of guanosine nucleotides degradation |g__Pseudomonas.s__Pseudomonas_aeruginosa	475.49225087	329.52379183
-PWY-5004	superpathway of L citrulline metabolism	20177.8799292	21625.0869217
-PWY-4981	L proline biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	17480.9681051	2343.2915162
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis	42538.048156	32819.4008777
-PWY-7242	D fructuronate degradation|unclassified	111.52338485	17.60503986
-PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis	53677.1680927	52341.7270606
-PWY0-1261	anhydromuropeptides recycling	20292.4826328	30352.0393295
-PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Clostridium.s__Clostridium_beijerinckii	733.63721053	655.39225206
-PWY-5505	L glutamate and L glutamine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	109.19135136	8534.08747701
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Escherichia.s__Escherichia_coli	4340.08962598	665.8451561
-PWY-5686	UMP biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	501.62861144	590.89504262
-PWY-5136	fatty acid &beta; oxidation II |g__Pseudomonas.s__Pseudomonas_aeruginosa	1357.80199154	830.29912068
-PWY-5692	allantoin degradation to glyoxylate II	4057.67840734	2293.15616713
-VALSYN-PWY	L valine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	19608.1266453	2773.60052861
-REDCITCYC	TCA cycle VIII |unclassified	86.63176878	165.4695379
-GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation	36690.3142814	12596.8547516
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4841.23598612	742.34004174
-PWY-5177	glutaryl CoA degradation	8345.27406715	24357.3341745
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2641.19449491	287.5350973
-GLYCOLYSIS	glycolysis I 	42940.068023	57491.9152433
-PWY-6353	purine nucleotides degradation II |g__Rhodobacter.s__Rhodobacter_sphaeroides	1553.24200077	329.46806017
-PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	3969.99741586	237.79440856
-PWY4LZ-257	superpathway of fermentation |g__Escherichia.s__Escherichia_coli	7404.23691668	1292.93379869
-DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	7563.84507722	1029.85526837
-PWY66-389	phytol degradation	97948.0570109	126799.82205
-PWY-6859	all trans farnesol biosynthesis|unclassified	108.45787847	159.19637361
-PWY-5850	superpathway of menaquinol 6 biosynthesis I	17486.2279354	2528.42214446
-GALACT-GLUCUROCAT-PWY	superpathway of hexuronide and hexuronate degradation|g__Escherichia.s__Escherichia_coli	3072.28794441	365.92819107
-PWY-5384	sucrose degradation IV |g__Escherichia.s__Escherichia_coli	4251.55821798	860.48430271
-PWY4FS-7	phosphatidylglycerol biosynthesis I |unclassified	22.10104323	161.612461
-METSYN-PWY	L homoserine and L methionine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2579.07981921	300.27995678
-PWY-7117	C4 photosynthetic carbon assimilation cycle, PEPCK type|g__Streptococcus.s__Streptococcus_mutans	4474.03606533	821.76719579
-PWY-5415	catechol degradation I |unclassified	16.99542834	26.74947559
-PWY-6628	superpathway of L phenylalanine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	3794.71602326	423.5008125
-METHANOGENESIS-PWY	methanogenesis from H2 and CO2	4423.90798117	800.86628878
-TRPSYN-PWY	L tryptophan biosynthesis|unclassified	11.83807701	115.20160552
-PWY-7094	fatty acid salvage	32975.087933	78804.1416187
-PWY-6313	serotonin degradation|g__Escherichia.s__Escherichia_coli	4002.8441491	1235.38317716
-PRPP-PWY	superpathway of histidine, purine, and pyrimidine biosynthesis	46202.8808185	41615.4325098
-PWY-6630	superpathway of L tyrosine biosynthesis	27623.9578232	30263.1066501
-PWY-5103	L isoleucine biosynthesis III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3614.73246291	542.40478803
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Helicobacter.s__Helicobacter_pylori	101.01010101	2335.70422508
-ARGSYN-PWY	L arginine biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	13382.4974146	2774.24650543
-PWY4FS-7	phosphatidylglycerol biosynthesis I 	30310.6431379	30509.2689216
-FUCCAT-PWY	fucose degradation|g__Escherichia.s__Escherichia_coli	3222.38301268	1416.75055098
-PWY-5177	glutaryl CoA degradation|g__Clostridium.s__Clostridium_beijerinckii	778.06781579	1886.01044032
-PWY-5531	chlorophyllide a biosynthesis II |unclassified	38.79136885	9.49926287
-PWYG-321	mycolate biosynthesis|unclassified	606.2265585	652.96239106
-PWY-6803	phosphatidylcholine acyl editing|g__Helicobacter.s__Helicobacter_pylori	135.50135501	1853.81251095
-PWY0-1061	superpathway of L alanine biosynthesis|unclassified	277.57938012	115.54784187
-PWY-4984	urea cycle	25405.5576817	41765.0250467
-PWY-5179	toluene degradation V  (via toluene cis diol)|unclassified	16.0008379	16.12828725
-PWY-5659	GDP mannose biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	9842.94920763	2130.90313557
-PWY-7269	NAD NADP NADH NADPH mitochondrial interconversion |g__Escherichia.s__Escherichia_coli	2385.53748482	555.87701395
-PYRIDNUCSYN-PWY	NAD biosynthesis I 	18302.9802708	21705.5525096
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	6666.65088781	1300.82275726
-PWY3O-355	stearate biosynthesis III |g__Escherichia.s__Escherichia_coli	5255.01283344	1506.92972882
-PWY-6590	superpathway of Clostridium acetobutylicum acidogenic fermentation	4291.6841166	15958.4077185
-PWY-6895	superpathway of thiamin diphosphate biosynthesis II	7381.49230857	12869.3457415
-PWY-5897	superpathway of menaquinol 11 biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	8558.3505207	1442.71932172
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	115.63145342	4185.99969337
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	7790.16253219	1801.49620017
-PWY-621	sucrose degradation III |g__Clostridium.s__Clostridium_beijerinckii	907.75105656	1145.45333796
-PWY-5104	L isoleucine biosynthesis IV|g__Escherichia.s__Escherichia_coli	4593.84617747	909.20769802
-PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Streptococcus.s__Streptococcus_mutans	6548.68659541	1082.18064979
-PWYG-321	mycolate biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7408.71998893	1439.46980465
-NONOXIPENT-PWY	pentose phosphate pathway |g__Pseudomonas.s__Pseudomonas_aeruginosa	177.99247468	164.37782069
-PWY66-400	glycolysis VI |g__Clostridium.s__Clostridium_beijerinckii	721.90935944	1596.12068086
-NONOXIPENT-PWY	pentose phosphate pathway |g__Clostridium.s__Clostridium_beijerinckii	1727.19605015	4414.97382432
-THRESYN-PWY	superpathway of L threonine biosynthesis	56784.5620526	60297.4358759
-DENITRIFICATION-PWY	nitrate reduction I |g__Pseudomonas.s__Pseudomonas_aeruginosa	1035.8039651	360.04829778
-PWY66-409	superpathway of purine nucleotide salvage|g__Streptococcus.s__Streptococcus_mutans	7947.52003278	845.80015629
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	461.25516076	1325.38252802
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|unclassified	360.41633729	196.35650767
-PWY-5855	ubiquinol 7 biosynthesis 	10283.6809042	8071.01088192
-PWY-6318	L phenylalanine degradation IV 	4603.84593705	10810.025727
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	115.87293755	2066.79582532
-PWY-6803	phosphatidylcholine acyl editing|g__Neisseria.s__Neisseria_meningitidis	92.76437848	2398.33809012
-PWY-5659	GDP mannose biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	496.56099939	1127.45350014
-PWY-2941	L lysine biosynthesis II	39765.9563538	29914.1464648
-GLYCOLYSIS	glycolysis I |g__Staphylococcus.s__Staphylococcus_aureus	9048.67193031	1447.87918718
-PWY0-1586	peptidoglycan maturation |g__Staphylococcus.s__Staphylococcus_epidermidis	9876.1414431	2642.1116564
-PWY-561	superpathway of glyoxylate cycle and fatty acid degradation|unclassified	152.72751111	296.90866391
-PWY-7111	pyruvate fermentation to isobutanol |g__Staphylococcus.s__Staphylococcus_epidermidis	25408.0249061	6242.62081251
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3060.84616078	474.02539577
-GLUCONEO-PWY	gluconeogenesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	5434.61898125	899.17935277
-PWY-6748	nitrate reduction VII 	7948.14280782	3674.94706948
-PWY-6318	L phenylalanine degradation IV |g__Pseudomonas.s__Pseudomonas_aeruginosa	2310.08104239	371.79984718
-PWY-5505	L glutamate and L glutamine biosynthesis|g__Escherichia.s__Escherichia_coli	4807.56170969	267.30041515
-PWY-6270	isoprene biosynthesis I	18747.1770704	39211.8280299
-METSYN-PWY	L homoserine and L methionine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	325.28881052	710.79544091
-PWY0-862	 dodec 5 enoate biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	2581.3131908	2157.82428717
-P161-PWY	acetylene degradation|g__Escherichia.s__Escherichia_coli	6963.83006313	1528.28473876
-PWY-6317	galactose degradation I 	29002.8913053	27792.6616447
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	97.24764853	2915.24388118
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3557.98627328	590.63898414
-PWY66-398	TCA cycle III |g__Staphylococcus.s__Staphylococcus_epidermidis	11400.0294907	1952.58109468
-PWY-6936	seleno amino acid biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	906.21542872	1033.21170683
-PWY0-42	2 methylcitrate cycle I|unclassified	19.68257624	45.06146103
-PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	161.66281754	528.19577578
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	142.65696195	3686.49763909
-PWY-5464	superpathway of cytosolic glycolysis , pyruvate dehydrogenase and TCA cycle|unclassified	217.72746357	351.61719672
-NONOXIPENT-PWY	pentose phosphate pathway |g__Acinetobacter.s__Acinetobacter_baumannii	207.44599457	5015.15225704
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	941.50333639	284.24404828
-PWY-6317	galactose degradation I |g__Clostridium.s__Clostridium_beijerinckii	303.90460942	633.00218286
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	3368.9177882	896.96458734
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	5837.85592311	1059.89073934
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	13315.3620058	2730.96285068
-COA-PWY-1	coenzyme A biosynthesis II |g__Escherichia.s__Escherichia_coli	3471.19142204	399.39801226
-PWY-6703	preQ0 biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5223.44506219	1193.48734099
-PWY0-1479	tRNA processing	28429.0265346	19968.7822609
-GLUCONEO-PWY	gluconeogenesis I	48572.2065996	63949.9473229
-PWY-5097	L lysine biosynthesis VI|g__Propionibacterium.s__Propionibacterium_acnes	152.46605582	3062.56851196
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Escherichia.s__Escherichia_coli	4995.71394269	1625.25993126
-PWY66-400	glycolysis VI |g__Staphylococcus.s__Staphylococcus_epidermidis	10256.8421637	1463.03605442
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	580.59515426	1341.40749346
-PWY-6385	peptidoglycan biosynthesis III |g__Pseudomonas.s__Pseudomonas_aeruginosa	303.15740446	148.29417795
-SO4ASSIM-PWY	sulfate reduction I |unclassified	306.50095256	279.84454406
-PWY-7197	pyrimidine deoxyribonucleotide phosphorylation|g__Streptococcus.s__Streptococcus_mutans	4614.24596417	752.96338328
-PWY-1861	formaldehyde assimilation II |g__Staphylococcus.s__Staphylococcus_epidermidis	10770.2951268	2313.03519811
-P621-PWY	nylon 6 oligomer degradation	1380.35733561	859.32671987
-PWY-6731	starch degradation III	3082.41058849	4380.37269695
-PWY-5104	L isoleucine biosynthesis IV|unclassified	27.5264606	90.72775607
-GLUDEG-I-PWY	GABA shunt	17668.5858579	24785.2307873
-PWY-7279	aerobic respiration II  (yeast)|g__Escherichia.s__Escherichia_coli	2300.84086328	547.77684086
-PWY-5840	superpathway of menaquinol 7 biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7784.70036043	304.26113433
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Escherichia.s__Escherichia_coli	4053.12824578	716.48070812
-PWY-5898	superpathway of menaquinol 12 biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7642.0982759	298.12276962
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Streptococcus.s__Streptococcus_mutans	1494.53604132	795.26245393
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	232.7788015	4678.94204292
-PWY-3941	&beta; alanine biosynthesis II|g__Rhodobacter.s__Rhodobacter_sphaeroides	1000.8412358	202.72805666
-PWY-5667	CDP diacylglycerol biosynthesis I|unclassified	15.80704549	251.37680806
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	13300.0925916	2430.24665674
-SO4ASSIM-PWY	sulfate reduction I 	35216.3193604	40936.8109621
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	15398.2656256	3162.29483205
-PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|unclassified	186.28108041	134.35886098
-PWY-7664	oleate biosynthesis IV |g__Staphylococcus.s__Staphylococcus_epidermidis	3332.90595644	2394.41785225
-PWY-6124	inosine 5 phosphate biosynthesis II|unclassified	88.39051393	336.92513447
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Streptococcus.s__Streptococcus_mutans	4848.68160747	544.06181995
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Clostridium.s__Clostridium_beijerinckii	355.43782371	354.72394973
-PWY-7431	aromatic biogenic amine degradation 	4152.37836108	48901.6474138
-PWY-5183	superpathway of aerobic toluene degradation	620.92354547	9826.04440701
-PWY-7663	gondoate biosynthesis |g__Acinetobacter.s__Acinetobacter_baumannii	454.51931323	13613.3094142
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	5774.384578	1335.37745065
-HEXITOLDEGSUPER-PWY	superpathway of hexitol degradation |g__Escherichia.s__Escherichia_coli	4951.0276161	1029.66808736
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	15216.7293284	1265.62840637
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	19743.0070817	2827.00266932
-POLYAMINSYN3-PWY	superpathway of polyamine biosynthesis II	4670.87590424	7317.56083757
-PWY-5675	nitrate reduction V 	32265.6666432	53150.591837
-PWY-1042	glycolysis IV |unclassified	609.36529953	470.50376795
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	369.12828699	629.50321671
-PWY-6590	superpathway of Clostridium acetobutylicum acidogenic fermentation|g__Clostridium.s__Clostridium_beijerinckii	625.33238469	1730.95626184
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|unclassified	156.59168697	234.11005854
-GLYOXYLATE-BYPASS	glyoxylate cycle	18722.9055669	34704.1569079
-PWY-7200	superpathway of pyrimidine deoxyribonucleoside salvage	39754.8045434	15041.1568836
-ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast	7500.35992034	11416.6768648
-PWY-3781	aerobic respiration I |g__Staphylococcus.s__Staphylococcus_epidermidis	29048.5287092	8522.11671136
-PWY-5973	cis vaccenate biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	17432.1716803	3046.28020809
-FAO-PWY	fatty acid &beta; oxidation I|unclassified	111.09757071	737.84150576
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	140.45480082	7705.45166034
-KDO-NAGLIPASYN-PWY	superpathway of 2 lipid A biosynthesis	2651.58700431	428.18581142
-ANAEROFRUCAT-PWY	homolactic fermentation|unclassified	123.73241713	382.52191049
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3567.90865616	449.84909432
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli	3746.35742099	800.57592134
-PWY0-42	2 methylcitrate cycle I|g__Escherichia.s__Escherichia_coli	2666.71182772	448.42715417
-PWY-4984	urea cycle|unclassified	88.09723032	512.9493568
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis	69848.2416853	62918.8760492
-PWY-6606	guanosine nucleotides degradation II|g__Deinococcus.s__Deinococcus_radiodurans	134.26874627	5710.78687931
-SO4ASSIM-PWY	sulfate reduction I |g__Escherichia.s__Escherichia_coli	4348.02981722	1180.18269268
-PWY-6396	superpathway of 2,3 butanediol biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6153.25301744	1818.65857403
-PWY66-389	phytol degradation|unclassified	101.45146064	411.91815981
-PWY-4981	L proline biosynthesis II |g__Escherichia.s__Escherichia_coli	2425.01792926	540.89369424
-PWY-5198	factor 420 biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2056.99650311	1029.88308336
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	7522.07789107	1127.40646497
-PWY-5103	L isoleucine biosynthesis III	67285.8329696	59099.147602
-GLUTORN-PWY	L ornithine biosynthesis|unclassified	341.67654023	569.76127641
-PWY-4984	urea cycle|g__Clostridium.s__Clostridium_beijerinckii	328.94896354	583.47538404
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	11266.9486915	2395.07068247
-3-HYDROXYPHENYLACETATE-DEGRADATION-PWY	4 hydroxyphenylacetate degradation|unclassified	32.26461376	115.72377458
-GALACTARDEG-PWY	D galactarate degradation I	14021.9541628	9190.33499114
-PWY-6936	seleno amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	16609.3512178	4264.11923639
-PWY0-1261	anhydromuropeptides recycling|unclassified	161.95791885	121.61943009
-PWY-7254	TCA cycle VII |g__Staphylococcus.s__Staphylococcus_aureus	11864.4067069	1881.01387725
-TEICHOICACID-PWY	teichoic acid  biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	16083.5337461	2204.9891853
-PWY-5857	ubiquinol 10 biosynthesis 	10283.6809042	8071.01088192
-PWY-6608	guanosine nucleotides degradation III|g__Rhodobacter.s__Rhodobacter_sphaeroides	1185.22177378	255.33826298
-HOMOSER-METSYN-PWY	L methionine biosynthesis I	38047.8218714	25437.357899
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	13741.3085818	1652.83726769
-PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|g__Escherichia.s__Escherichia_coli	4161.75694533	841.95784367
-PWY-7446	sulfoglycolysis|g__Escherichia.s__Escherichia_coli	3430.92544179	657.6507863
-TRPSYN-PWY	L tryptophan biosynthesis|g__Escherichia.s__Escherichia_coli	3679.62678086	584.13034364
-URDEGR-PWY	superpathway of allantoin degradation in plants	4057.67840734	2293.15616713
-GOLPDLCAT-PWY	superpathway of glycerol degradation to 1,3 propanediol|g__Escherichia.s__Escherichia_coli	4787.85084508	670.06015789
-PRPP-PWY	superpathway of histidine, purine, and pyrimidine biosynthesis|unclassified	123.21554491	44.42217486
-CENTFERM-PWY	pyruvate fermentation to butanoate	3403.96694956	13660.884747
-FERMENTATION-PWY	mixed acid fermentation|g__Streptococcus.s__Streptococcus_mutans	4128.34958682	930.91287833
-PWY-4981	L proline biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	15181.2022966	2233.73828052
-CATECHOL-ORTHO-CLEAVAGE-PWY	catechol degradation to &beta; ketoadipate|g__Acinetobacter.s__Acinetobacter_baumannii	149.04463452	4545.34410376
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Staphylococcus.s__Staphylococcus_epidermidis	11106.533622	2878.03755013
-P125-PWY	superpathway of  butanediol biosynthesis|g__Streptococcus.s__Streptococcus_mutans	7101.09619294	1953.21004921
-PWY-4242	pantothenate and coenzyme A biosynthesis III	30126.5896263	32516.4447554
-PWY-7013	L 1,2 propanediol degradation	4148.39205223	10375.0483696
-PWY-7664	oleate biosynthesis IV |g__Escherichia.s__Escherichia_coli	5636.40814978	1827.61182481
-COA-PWY-1	coenzyme A biosynthesis II |g__Neisseria.s__Neisseria_meningitidis	309.23484826	2086.8107749
-PWY-5741	ethylmalonyl CoA pathway|unclassified	159.43263537	123.51229808
-PWY-6531	mannitol cycle|g__Clostridium.s__Clostridium_beijerinckii	390.33946294	1044.00387677
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	10012.7214907	2046.57621504
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Escherichia.s__Escherichia_coli	8396.91481766	978.17632586
-PWY-7391	isoprene biosynthesis II 	30738.8786986	8400.52258056
-GLUTORN-PWY	L ornithine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	10594.9907256	2233.363451
-OANTIGEN-PWY	O antigen building blocks biosynthesis |unclassified	76.33872359	173.51484641
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Clostridium.s__Clostridium_beijerinckii	245.96822968	320.28638366
-PWY-5690	TCA cycle II |g__Escherichia.s__Escherichia_coli	7911.79312763	1916.58661982
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	4675.34976192	409.64292673
-COA-PWY-1	coenzyme A biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	6914.6192118	1458.07590976
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Streptococcus.s__Streptococcus_mutans	13269.1987772	2121.64967794
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Escherichia.s__Escherichia_coli	6254.53668867	727.07715644
-HISDEG-PWY	L histidine degradation I|g__Staphylococcus.s__Staphylococcus_aureus	11903.4051623	1578.96341196
-P105-PWY	TCA cycle IV |unclassified	417.22426747	298.08991033
-CITRULBIO-PWY	L citrulline biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	14736.2617065	1066.92554863
-PWY-7094	fatty acid salvage|g__Escherichia.s__Escherichia_coli	4574.54169379	848.0406088
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12974.5775603	1564.26481926
-ARGORNPROST-PWY	arginine, ornithine and proline interconversion	39713.8910035	14337.0870379
-P562-PWY	myo inositol degradation I	1048.30236408	2940.18289458
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Streptococcus.s__Streptococcus_mutans	7069.4108697	1519.39416137
-PWY-5188	tetrapyrrole biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	9967.14765913	1393.68308831
-PWY-7209	superpathway of pyrimidine ribonucleosides degradation|g__Clostridium.s__Clostridium_beijerinckii	198.66550806	737.81504759
-PWY-5392	reductive TCA cycle II	6222.10618199	9290.89477516
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Deinococcus.s__Deinococcus_radiodurans	124.49037391	32028.5719751
-COA-PWY	coenzyme A biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	8718.64851948	971.55844167
-PWY-3781	aerobic respiration I |g__Pseudomonas.s__Pseudomonas_aeruginosa	7491.56572789	2317.68361723
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Staphylococcus.s__Staphylococcus_aureus	11851.1586628	1573.05390224
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	7532.21102357	1708.50777468
-PWY-5791	1,4 dihydroxy 2 naphthoate biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	8046.86968937	1435.9685915
-PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	13408.3946765	3147.91511052
-PWY-7664	oleate biosynthesis IV |g__Streptococcus.s__Streptococcus_mutans	4918.49911082	635.12531951
-PWY-3801	sucrose degradation II |g__Staphylococcus.s__Staphylococcus_aureus	9958.96553597	1227.63555655
-PWY-5529	superpathway of bacteriochlorophyll a biosynthesis	25295.0565592	5664.51417177
-PWY66-391	fatty acid &beta; oxidation VI |g__Rhodobacter.s__Rhodobacter_sphaeroides	7209.54888996	1927.58607731
-ORNARGDEG-PWY	superpathway of L arginine and L ornithine degradation|g__Escherichia.s__Escherichia_coli	4707.38168219	903.21469748
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	422.57830215	385.27548967
-P221-PWY	octane oxidation|g__Pseudomonas.s__Pseudomonas_aeruginosa	2049.53414303	475.58255016
-PWY-6071	superpathway of phenylethylamine degradation	4017.68527537	9794.61438722
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	379.76265155	516.04412629
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Escherichia.s__Escherichia_coli	3650.37710881	1019.22422116
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	2696.7347028	720.57603157
-PWY3O-355	stearate biosynthesis III |unclassified	91.77854163	128.49200891
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|unclassified	400.63091939	128.54357906
-GLUCONEO-PWY	gluconeogenesis I|g__Escherichia.s__Escherichia_coli	4901.55888593	982.69705479
-PWY-6549	L glutamine biosynthesis III	19554.5336944	19052.3906818
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Streptococcus.s__Streptococcus_agalactiae	341.08923605	79.05367387
-METSYN-PWY	L homoserine and L methionine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5565.46473511	1042.26420952
-PWY-7117	C4 photosynthetic carbon assimilation cycle, PEPCK type|unclassified	22.26323191	367.15187651
-PWY-5659	GDP mannose biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4486.03321142	645.51592551
-PWY-7245	superpathway NAD NADP   NADH NADPH interconversion 	3639.98249054	1618.65724922
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Staphylococcus.s__Staphylococcus_aureus	20642.0993552	2941.18826041
-HEMESYN2-PWY	heme biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	9425.4210998	620.03319064
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Streptococcus.s__Streptococcus_mutans	16522.3096177	2166.74870807
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I	49841.3102582	52493.0902233
-PWY-7094	fatty acid salvage|g__Acinetobacter.s__Acinetobacter_baumannii	383.6896171	15642.1328518
-PWY66-400	glycolysis VI |g__Staphylococcus.s__Staphylococcus_aureus	9432.62218933	880.34978311
-PWY-6588	pyruvate fermentation to acetone|g__Escherichia.s__Escherichia_coli	4132.06885854	643.58703645
-PWY66-389	phytol degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	3615.86640369	1333.50808028
-PWY-6728	methylaspartate cycle	1366.55768915	4854.73036472
-FAO-PWY	fatty acid &beta; oxidation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	8913.94067454	2016.92630116
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	13009.7215322	2034.84123287
-RIBOSYN2-PWY	flavin biosynthesis I |unclassified	36.51457216	376.97930747
-PWY-2942	L lysine biosynthesis III|unclassified	143.00794101	246.17342123
-PWY-3781	aerobic respiration I |g__Escherichia.s__Escherichia_coli	11428.460877	3504.59201375
-PWY-6353	purine nucleotides degradation II |g__Clostridium.s__Clostridium_beijerinckii	359.16006725	766.93398644
-PWY-6174	mevalonate pathway II 	6279.98927829	920.76672097
-PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5745.44661332	946.91434658
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis	52439.7088078	40030.4233566
-P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate	36992.525398	16569.096311
-GLYCOCAT-PWY	glycogen degradation I 	5938.07288606	4465.4192937
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3181.43595986	255.12999602
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I 	44092.085475	38126.4623286
-PWY-5136	fatty acid &beta; oxidation II |unclassified	92.26054336	491.76140107
-PWY-922	mevalonate pathway I|g__Staphylococcus.s__Staphylococcus_aureus	12883.9755323	1437.42558036
-PWY-5104	L isoleucine biosynthesis IV|g__Staphylococcus.s__Staphylococcus_epidermidis	13563.4789096	2251.71014322
-PWY-5918	superpathay of heme biosynthesis from glutamate|unclassified	154.83033678	226.00202574
-PENTOSE-P-PWY	pentose phosphate pathway	38478.5704687	35262.4302458
-PWY3DJ-35471	L ascorbate biosynthesis IV	2379.71346702	4327.29161874
-PWY-6834	spermidine biosynthesis III	8.75565721	13.11856104
-NONOXIPENT-PWY	pentose phosphate pathway 	51642.6198152	56395.2176352
-PWY-5509	adenosylcobalamin biosynthesis from cobyrinate a,c diamide I	4961.47866903	10264.7184444
-PWY-6151	S adenosyl L methionine cycle I|unclassified	305.21556623	228.60531508
-P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate|g__Streptococcus.s__Streptococcus_mutans	9143.22212745	2159.76313693
-PWY66-422	D galactose degradation V |g__Escherichia.s__Escherichia_coli	6282.20939256	1051.9307082
-PWY-181	photorespiration	21208.1704066	36792.7571561
-NONMEVIPP-PWY	methylerythritol phosphate pathway I|g__Escherichia.s__Escherichia_coli	4563.74325903	580.78945099
-PWY-6185	4 methylcatechol degradation 	6795.09452711	11286.877657
-PWY-5856	ubiquinol 9 biosynthesis 	10040.0432579	5154.31737499
-TRNA-CHARGING-PWY	tRNA charging	42514.7826998	46829.5312534
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Escherichia.s__Escherichia_coli	2299.31537269	337.86673042
-PWY-6897	thiamin salvage II|g__Staphylococcus.s__Staphylococcus_aureus	9795.5294665	1368.71820929
-PWY-5791	1,4 dihydroxy 2 naphthoate biosynthesis II 	23957.087909	9628.25846059
-PWY-5265	peptidoglycan biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	7984.99089468	948.44957018
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Escherichia.s__Escherichia_coli	5802.95924317	2081.48877768
-PWY-6748	nitrate reduction VII |g__Pseudomonas.s__Pseudomonas_aeruginosa	680.71386154	219.26157025
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|unclassified	842.53460987	1270.12078211
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	7752.55482291	1112.85225784
-PWY-5747	2 methylcitrate cycle II	4790.66631691	13931.7156472
-PWY4FS-8	phosphatidylglycerol biosynthesis II |unclassified	22.10104323	161.612461
-PWY-5989	stearate biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	18743.4018741	3261.37928906
-PWY-1861	formaldehyde assimilation II 	47512.9281816	20601.2186232
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Streptococcus.s__Streptococcus_agalactiae	388.54431864	53.08880985
-ARGSYN-PWY	L arginine biosynthesis I |unclassified	186.87571885	595.2961923
-P125-PWY	superpathway of  butanediol biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	31383.8027181	5261.60349787
-PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|g__Escherichia.s__Escherichia_coli	2503.00769691	571.12166884
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Staphylococcus.s__Staphylococcus_epidermidis	8039.14043601	429.67898947
-PWY-5840	superpathway of menaquinol 7 biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	8768.97534193	1494.84818596
-PWY-5189	tetrapyrrole biosynthesis II 	33564.0940692	24606.1146881
-PWY-6383	mono trans, poly cis decaprenyl phosphate biosynthesis	480.92790379	7703.96502638
-REDCITCYC	TCA cycle VIII |g__Escherichia.s__Escherichia_coli	3398.33917608	468.79630793
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	557.88620896	331.08039992
-PWY-6660	2 heptyl 3 hydroxy 4 quinolone biosynthesis	1018.27138055	166.05058007
-PWY-7039	phosphatidate metabolism, as a signaling molecule	2976.57005473	2978.59657279
-P161-PWY	acetylene degradation	52145.5214944	58181.0825411
-PWY-5347	superpathway of L methionine biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	839.58208904	507.29967618
-LIPASYN-PWY	phospholipases	2742.16862883	4339.18493507
-SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Escherichia.s__Escherichia_coli	3912.06683099	669.56751062
-PWY-5675	nitrate reduction V |g__Pseudomonas.s__Pseudomonas_aeruginosa	758.35984575	349.47294949
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Staphylococcus.s__Staphylococcus_aureus	7986.09430541	944.01057882
-PWY-3801	sucrose degradation II 	41144.2224835	35074.9305225
-PWY-6215	4 chlorobenzoate degradation	1294.63706815	994.93414741
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Escherichia.s__Escherichia_coli	4968.35447204	1560.31988439
-GLUDEG-I-PWY	GABA shunt|g__Acinetobacter.s__Acinetobacter_baumannii	171.9019466	5128.75995088
-PWYG-321	mycolate biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5168.24200345	645.3050819
-PWY-7237	myo , chiro  and scillo inositol degradation|g__Clostridium.s__Clostridium_beijerinckii	1372.77109254	1969.48754452
-PWY-7237	myo , chiro  and scillo inositol degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	9819.80715387	2211.26570751
-PWY-6936	seleno amino acid biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1127.7057008	624.74273289
-TEICHOICACID-PWY	teichoic acid  biosynthesis	26300.9355709	13882.3581264
-PWY-6901	superpathway of glucose and xylose degradation|g__Escherichia.s__Escherichia_coli	5955.23385465	1285.42901688
-METSYN-PWY	L homoserine and L methionine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	9066.10518168	1512.51725014
-PWY-5667	CDP diacylglycerol biosynthesis I	38923.4794807	33978.8708419
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	358.71826037	3622.65836066
-PWY-4321	L glutamate degradation IV	13284.553501	13452.6043608
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	25871.9925677	3493.00715299
-PWY0-862	 dodec 5 enoate biosynthesis	46825.5535591	46523.1898007
-PWY0-1338	polymyxin resistance|g__Escherichia.s__Escherichia_coli	2530.97937342	524.99529053
-PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	1241.32685818	207.53926484
-PWY-5675	nitrate reduction V |g__Escherichia.s__Escherichia_coli	4421.67637375	1017.90666311
-PWY-7446	sulfoglycolysis	3430.92544179	657.6507863
-PWY-4984	urea cycle|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2120.28529168	328.27273799
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	9989.16912696	2190.20294873
-PWY-621	sucrose degradation III |g__Staphylococcus.s__Staphylococcus_epidermidis	7288.51706021	1125.93306953
-GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Escherichia.s__Escherichia_coli	4745.94118624	504.45229966
-PWY-7328	superpathway of UDP glucose derived O antigen building blocks biosynthesis	12621.0800369	8348.27651621
-PWY-6609	adenine and adenosine salvage III	64218.403041	74962.1970649
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	913.88255745	340.20331796
-PWY-6992	1,5 anhydrofructose degradation|g__Escherichia.s__Escherichia_coli	2692.64232053	591.66386814
-PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|unclassified	386.79002406	740.96360671
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	10137.8970637	735.0505281
-CALVIN-PWY	Calvin Benson Bassham cycle|unclassified	607.00555103	573.16236587
-PWY-6676	superpathway of sulfide oxidation 	9246.0899779	5932.94950564
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Escherichia.s__Escherichia_coli	5202.12964363	512.45321216
-RIBOSYN2-PWY	flavin biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	221.52056626	931.60242831
-PWY-6168	flavin biosynthesis III |g__Clostridium.s__Clostridium_beijerinckii	208.67500419	1028.72168049
-CITRULBIO-PWY	L citrulline biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	1558.24120275	542.34615504
-LPSSYN-PWY	superpathway of lipopolysaccharide biosynthesis|g__Escherichia.s__Escherichia_coli	2310.64056389	449.02181701
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	107.7427386	567.86059308
-SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	12155.468785	1518.01392412
-HISTSYN-PWY	L histidine biosynthesis|unclassified	714.39489046	912.28127753
-PWY-6071	superpathway of phenylethylamine degradation|g__Escherichia.s__Escherichia_coli	3223.0450121	219.49206547
-PPGPPMET-PWY	ppGpp biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	8163.92211214	1429.90290118
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Streptococcus.s__Streptococcus_mutans	6491.57160956	1143.69916468
-GLUCOSE1PMETAB-PWY	glucose and glucose 1 phosphate degradation|g__Streptococcus.s__Streptococcus_mutans	6864.52839274	995.4420537
-GLYCOCAT-PWY	glycogen degradation I |g__Escherichia.s__Escherichia_coli	4107.11727435	234.78337582
-PWY-7616	methanol oxidation to carbon dioxide	5664.71730062	3330.31765438
-DENOVOPURINE2-PWY	superpathway of purine nucleotides de novo biosynthesis II|unclassified	124.61033415	42.86982543
-SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Acinetobacter.s__Acinetobacter_baumannii	62.64066381	10151.4996087
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Escherichia.s__Escherichia_coli	6045.53922962	1238.36709682
-PWY-6609	adenine and adenosine salvage III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1157.72586361	147.27540501
-PWY-7003	glycerol degradation to butanol|g__Escherichia.s__Escherichia_coli	4679.46843094	446.54859186
-PWY-922	mevalonate pathway I|g__Streptococcus.s__Streptococcus_mutans	3671.4574012	197.93567101
-PWY-6562	norspermidine biosynthesis	218.86041799	4624.32885997
-PWY-5913	TCA cycle VI |g__Acinetobacter.s__Acinetobacter_baumannii	72.30196086	7414.50077566
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I 	44554.5329391	39095.0767016
-PWY-5838	superpathway of menaquinol 8 biosynthesis I|g__Escherichia.s__Escherichia_coli	3744.05810255	564.68862203
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	422.57830215	385.27548967
-PWY-5189	tetrapyrrole biosynthesis II |g__Propionibacterium.s__Propionibacterium_acnes	250.87312647	3981.90401447
-PWY-5101	L isoleucine biosynthesis II|unclassified	207.80186162	149.72140514
-PYRIDNUCSAL-PWY	NAD salvage pathway I|g__Acinetobacter.s__Acinetobacter_baumannii	297.74400615	2434.89303333
-PWY-7200	superpathway of pyrimidine deoxyribonucleoside salvage|g__Staphylococcus.s__Staphylococcus_epidermidis	6650.40666718	647.46327463
-BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I|g__Escherichia.s__Escherichia_coli	4148.07533959	1270.72266535
-PWY-7007	methyl ketone biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12638.3066861	1417.6578911
-PWY66-389	phytol degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	29502.5837317	3485.52095886
-HEMESYN2-PWY	heme biosynthesis II |g__Acinetobacter.s__Acinetobacter_baumannii	136.01994609	4113.14309114
-PWY-7094	fatty acid salvage|unclassified	68.94376122	290.92067033
-PANTO-PWY	phosphopantothenate biosynthesis I	36409.3055337	24945.7896852
-PWY-7007	methyl ketone biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	137.31343497	25294.625818
-PWY-5863	superpathway of phylloquinol biosynthesis	25713.6004597	10492.4642135
-PWY-6703	preQ0 biosynthesis|unclassified	166.55617781	237.99047049
-PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Clostridium.s__Clostridium_beijerinckii	1117.72340341	1062.21300097
-PWY-5862	superpathway of demethylmenaquinol 9 biosynthesis	14960.4810459	9578.81483636
-ARG+POLYAMINE-SYN	superpathway of arginine and polyamine biosynthesis	15391.3253384	13580.6494719
-PWY-3841	folate transformations II|g__Staphylococcus.s__Staphylococcus_epidermidis	8571.45507124	1918.73077737
-GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation	19166.9749579	14826.6764675
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans	233.01772842	21431.4970511
-PWY-5686	UMP biosynthesis|unclassified	350.32295637	500.87865906
-GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation	8139.50963072	12101.8915084
-PWY-4981	L proline biosynthesis II 	37307.8568388	23054.7502408
-PWY-6385	peptidoglycan biosynthesis III |unclassified	10.98647018	166.73509014
-PWY0-1586	peptidoglycan maturation |g__Acinetobacter.s__Acinetobacter_baumannii	331.13742865	7622.78718765
-PWY-6936	seleno amino acid biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3039.58259657	376.86551947
-PWY66-389	phytol degradation|g__Acinetobacter.s__Acinetobacter_baumannii	1722.78325323	29764.3856747
-PWY-6837	fatty acid beta oxidation V |g__Acinetobacter.s__Acinetobacter_baumannii	315.00956156	5488.28029707
-PWY-5918	superpathay of heme biosynthesis from glutamate|g__Pseudomonas.s__Pseudomonas_aeruginosa	524.19994901	183.46669874
-PWY-5154	L arginine biosynthesis III |g__Staphylococcus.s__Staphylococcus_epidermidis	9473.0785203	1982.85804746
-P4-PWY	superpathway of L lysine, L threonine and L methionine biosynthesis I|unclassified	35.24206246	110.33724453
-P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate|g__Clostridium.s__Clostridium_beijerinckii	358.51891872	1847.49266447
-UDPNACETYLGALSYN-PWY	UDP N acetyl D glucosamine biosynthesis II	141.87052686	6084.89185623
-PWY-6700	queuosine biosynthesis	29023.1237865	29994.1997297
-CENTFERM-PWY	pyruvate fermentation to butanoate|g__Clostridium.s__Clostridium_beijerinckii	966.15686788	1729.73583202
-PWY-6470	peptidoglycan biosynthesis V |g__Streptococcus.s__Streptococcus_mutans	7376.21971685	588.12815656
-PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Streptococcus.s__Streptococcus_mutans	7036.83166244	2001.56090215
-PWY-5973	cis vaccenate biosynthesis	50659.7015791	47808.4000523
-PWY-6662	superpathway of quinolone and alkylquinolone biosynthesis	951.28204401	148.85805495
-PWY-5198	factor 420 biosynthesis	2056.99650311	1029.88308336
-PWY-6353	purine nucleotides degradation II |g__Escherichia.s__Escherichia_coli	8709.22987767	981.44226721
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	327.8514655	6716.21063402
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis 	50266.2664877	62728.6901445
-SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|unclassified	150.9288041	157.66409316
-ARGSYN-PWY	L arginine biosynthesis I |g__Escherichia.s__Escherichia_coli	3525.32811862	678.68174429
-PWY0-1241	ADP L glycero &beta; D manno heptose biosynthesis	2810.79882266	5662.29453265
-PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation	7971.57166939	15419.1742759
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|unclassified	62.56012882	113.79823177
-PWY-5189	tetrapyrrole biosynthesis II |g__Helicobacter.s__Helicobacter_pylori	152.61203036	1603.0512511
-VALSYN-PWY	L valine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6491.57160956	1143.69916468
-PWY-6313	serotonin degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	134.48181929	308.43216171
-PWY-7117	C4 photosynthetic carbon assimilation cycle, PEPCK type	15396.9006287	42713.812682
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Staphylococcus.s__Staphylococcus_aureus	15060.725241	1494.70097714
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|g__Streptococcus.s__Streptococcus_mutans	7145.7668717	1241.378272
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|unclassified	178.44424417	59.3183373
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	572.9768874	244.3911918
-PWY-7007	methyl ketone biosynthesis	32874.7534592	31458.8558525
-LACTOSECAT-PWY	lactose and galactose degradation I|g__Staphylococcus.s__Staphylococcus_aureus	14640.0410153	1904.04953521
-PWY-6703	preQ0 biosynthesis|g__Escherichia.s__Escherichia_coli	2196.37874723	265.11920755
-RUMP-PWY	formaldehyde oxidation I|g__Staphylococcus.s__Staphylococcus_epidermidis	8684.02095268	1863.423908
-P23-PWY	reductive TCA cycle I	6660.24868685	15340.4209799
-PWY-5419	catechol degradation to 2 oxopent 4 enoate II	22.39292649	291.6975056
-PWY-5845	superpathway of menaquinol 9 biosynthesis	17486.2279354	12613.2679742
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	12467.5694178	1186.30840442
-PWY66-422	D galactose degradation V |g__Streptococcus.s__Streptococcus_mutans	7035.17091012	1552.21616887
-PWY-6660	2 heptyl 3 hydroxy 4 quinolone biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	916.95090562	138.89133405
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Streptococcus.s__Streptococcus_mutans	4625.26871879	570.86128661
-PWY4FS-7	phosphatidylglycerol biosynthesis I |g__Escherichia.s__Escherichia_coli	4955.01408564	651.45757347
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I	67483.2988631	81119.1495596
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	13183.771608	1189.32661727
-PWY-5863	superpathway of phylloquinol biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	8662.38241175	1561.83539442
-PWY-7560	methylerythritol phosphate pathway II|g__Escherichia.s__Escherichia_coli	4563.74325903	580.78945099
-GLUDEG-I-PWY	GABA shunt|g__Escherichia.s__Escherichia_coli	6434.04270271	779.09309638
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	606.94449313	145.93585417
-VALSYN-PWY	L valine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	15398.2656256	3162.29483205
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Escherichia.s__Escherichia_coli	4889.36490592	258.22264807
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	1633.00145995	789.42434908
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	13536.0205713	2094.79557458
-DAPLYSINESYN-PWY	L lysine biosynthesis I	41965.3532569	33560.0131346
-P162-PWY	L glutamate degradation V 	3242.46783054	2445.80995351
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III 	27935.5090494	32223.9533142
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|unclassified	271.11988337	527.14487279
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis	12410.2191868	3402.87724422
-PWY-7560	methylerythritol phosphate pathway II	21604.2127381	41159.2746547
-PWY-5173	superpathway of acetyl CoA biosynthesis	96059.8427144	63390.4451597
-HSERMETANA-PWY	L methionine biosynthesis III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4930.00486923	581.92355379
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Escherichia.s__Escherichia_coli	1068.16135419	1901.43703192
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis	43287.4050571	42116.3366082
-GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff	29429.324006	39825.3066766
-PWY-6708	ubiquinol 8 biosynthesis 	11213.8685489	8071.01088192
-PWY-5136	fatty acid &beta; oxidation II |g__Rhodobacter.s__Rhodobacter_sphaeroides	8187.17701385	2035.86362696
-TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA	32877.4657334	41828.6590276
-COA-PWY-1	coenzyme A biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	8718.64851948	1207.05996373
-PWY-6883	pyruvate fermentation to butanol II	2043.06712696	4228.0458086
-RIBOSYN2-PWY	flavin biosynthesis I 	25078.1406023	36113.5370782
-PWY-5973	cis vaccenate biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	3065.16375685	2211.82313075
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	5033.50270158	807.96547595
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	9425.4210998	620.03319064
-P42-PWY	incomplete reductive TCA cycle|g__Staphylococcus.s__Staphylococcus_aureus	13936.7503588	1191.4175682
-PWY3O-19	ubiquinol 6 biosynthesis from 4 hydroxybenzoate 	7436.37178035	4088.65133704
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	5123.88198898	554.81214991
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	302.94617735	865.23332192
-PWY0-166	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis |g__Streptococcus.s__Streptococcus_mutans	4147.95045912	1074.2043069
-PWY-6692	Fe oxidation	36051.0026168	40173.9547764
-PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|g__Escherichia.s__Escherichia_coli	4135.66010524	403.51804659
-GLUDEG-I-PWY	GABA shunt|g__Rhodobacter.s__Rhodobacter_sphaeroides	3350.56726005	524.00051784
-PWY-7431	aromatic biogenic amine degradation |g__Deinococcus.s__Deinococcus_radiodurans	106.99067057	35904.3889692
-PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis|unclassified	10.99994953	171.56907964
-PWY-5913	TCA cycle VI |g__Escherichia.s__Escherichia_coli	6019.41300772	621.50981774
-PWY66-400	glycolysis VI 	45871.9884362	50290.2954315
-CHLOROPHYLL-SYN	chlorophyllide a biosynthesis I 	24259.7606904	8662.41914269
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	17481.2756206	2182.11571266
-PWY-1861	formaldehyde assimilation II |g__Staphylococcus.s__Staphylococcus_aureus	13284.7661268	619.47135567
-PWY0-1533	methylphosphonate degradation I|g__Escherichia.s__Escherichia_coli	4733.19141338	354.33547083
-AST-PWY	L arginine degradation II |g__Escherichia.s__Escherichia_coli	3175.20429473	640.09916285
-PWY-5347	superpathway of L methionine biosynthesis |g__Escherichia.s__Escherichia_coli	5535.96222919	1122.03662727
-PWY-5860	superpathway of demethylmenaquinol 6 biosynthesis I	14960.4810459	1727.92142109
-GLYCOGENSYNTH-PWY	glycogen biosynthesis I |unclassified	45.0348994	236.17489542
-ARGSYN-PWY	L arginine biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	7609.56793903	1081.52731224
-PWY-6138	CMP N acetylneuraminate biosynthesis I 	2398.55607826	1035.42398771
-PWY490-3	nitrate reduction VI 	10970.0276634	32919.4486962
-PWY-5464	superpathway of cytosolic glycolysis , pyruvate dehydrogenase and TCA cycle	14282.9279891	46570.8358773
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Escherichia.s__Escherichia_coli	6049.43426736	1792.31123454
-PWY-6897	thiamin salvage II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	1834.09019697	232.43439154
-PWY-6837	fatty acid beta oxidation V |g__Escherichia.s__Escherichia_coli	1915.67580364	431.0989422
-TRNA-CHARGING-PWY	tRNA charging|g__Streptococcus.s__Streptococcus_mutans	6205.06647523	920.55531754
-P261-PWY	coenzyme M biosynthesis I	2295.11116707	459.01312982
-P185-PWY	formaldehyde assimilation III |g__Escherichia.s__Escherichia_coli	6016.06136396	441.04297589
-P125-PWY	superpathway of  butanediol biosynthesis	71484.316573	27263.0034062
-PWY-6353	purine nucleotides degradation II |unclassified	229.24381963	711.91951047
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Escherichia.s__Escherichia_coli	5239.82472552	985.36108582
-TCA	TCA cycle I 	72390.9080145	49359.1366644
-PWY-3001	superpathway of L isoleucine biosynthesis I	61287.4504291	61191.0272498
-PWY-7209	superpathway of pyrimidine ribonucleosides degradation	21848.7462536	8529.83044229
-PWY-6168	flavin biosynthesis III |g__Staphylococcus.s__Staphylococcus_epidermidis	11249.6186499	1916.08886613
-HEMESYN2-PWY	heme biosynthesis II 	42456.412089	27943.5943088
-PWY-6309	L tryptophan degradation XI 	1236.92269851	22741.1157199
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|unclassified	257.44739331	1093.60424306
-PWY-5505	L glutamate and L glutamine biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	119.468803	2963.64295432
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Escherichia.s__Escherichia_coli	3168.29114837	1226.26490102
-FUC-RHAMCAT-PWY	superpathway of fucose and rhamnose degradation|g__Escherichia.s__Escherichia_coli	2672.23617009	334.24199609
-PWY-7268	NAD NADP NADH NADPH cytosolic interconversion 	3714.59914143	37098.7371251
-PWY-6803	phosphatidylcholine acyl editing|g__Acinetobacter.s__Acinetobacter_baumannii	277.00236356	4675.13406506
-PWY-6270	isoprene biosynthesis I|unclassified	117.12317228	567.53174759
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Streptococcus.s__Streptococcus_mutans	3475.26061135	670.18771898
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	9594.48852685	1433.08399412
-PWY-7400	L arginine biosynthesis IV |g__Rhodobacter.s__Rhodobacter_sphaeroides	7934.79604613	1107.84586827
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3111.8408671	326.06434837
-PWY-7338	10 trans heptadecenoyl CoA degradation 	265.24638102	6718.68847562
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|unclassified	156.59168697	234.11005854
-VALSYN-PWY	L valine biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	506.19386084	11724.8392857
-P161-PWY	acetylene degradation|unclassified	22.99356502	196.63361648
-PWY-7013	L 1,2 propanediol degradation|unclassified	19.32699742	79.24954491
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6981.3146637	790.12246772
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II	66731.1911339	65510.2169193
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6390.10022469	855.70284938
-ARGDEG-PWY	superpathway of L arginine, putrescine, and 4 aminobutanoate degradation	17810.1278588	14882.8847917
-PWY-241	C4 photosynthetic carbon assimilation cycle, NADP ME type|unclassified	15.97644532	119.88384108
-PWY-2221	Entner Doudoroff pathway III 	2827.00386395	1143.00211263
-PWY-6185	4 methylcatechol degradation |g__Rhodobacter.s__Rhodobacter_sphaeroides	598.01555474	257.13437267
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Clostridium.s__Clostridium_beijerinckii	568.55982213	1623.22616812
-PWY-6608	guanosine nucleotides degradation III|g__Clostridium.s__Clostridium_beijerinckii	397.89514575	1082.8715938
-PWY-1861	formaldehyde assimilation II |unclassified	454.68120185	154.81087467
-ARGSYN-PWY	L arginine biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	581.97508697	175.540021
-HSERMETANA-PWY	L methionine biosynthesis III|g__Acinetobacter.s__Acinetobacter_baumannii	78.6061899	4746.11198159
-HEMESYN2-PWY	heme biosynthesis II |unclassified	172.13844264	289.74545631
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	11619.1381599	1148.07653348
-PWY-3001	superpathway of L isoleucine biosynthesis I|unclassified	206.96672994	203.6881516
-PWY-5747	2 methylcitrate cycle II|g__Escherichia.s__Escherichia_coli	1303.63871162	448.42715417
-PWY-7196	superpathway of pyrimidine ribonucleosides salvage|unclassified	68.05648819	368.80630621
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Clostridium.s__Clostridium_beijerinckii	1130.63668924	1298.50786707
-RIBOSYN2-PWY	flavin biosynthesis I |g__Escherichia.s__Escherichia_coli	1921.36277965	303.11239945
-PWY-5857	ubiquinol 10 biosynthesis |g__Escherichia.s__Escherichia_coli	5192.63109166	503.26909238
-PWY-7371	1,4 dihydroxy 6 naphthoate biosynthesis II	124.24871748	22701.9272681
-FAO-PWY	fatty acid &beta; oxidation I|g__Clostridium.s__Clostridium_beijerinckii	784.44161497	1944.88549916
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Escherichia.s__Escherichia_coli	4886.94726837	1952.51004651
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1271.09425076	722.7776359
-PWY-7111	pyruvate fermentation to isobutanol |g__Pseudomonas.s__Pseudomonas_aeruginosa	1686.91584603	668.59152976
-PWY-6123	inosine 5 phosphate biosynthesis I|g__Escherichia.s__Escherichia_coli	2452.88651906	757.7820098
-PWY0-1061	superpathway of L alanine biosynthesis|g__Escherichia.s__Escherichia_coli	6332.50789806	1793.35177705
-PWY-5723	Rubisco shunt|g__Rhodobacter.s__Rhodobacter_sphaeroides	9907.21695892	642.36165626
-PWY-5505	L glutamate and L glutamine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3979.01940982	294.84644862
-PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Rhodobacter.s__Rhodobacter_sphaeroides	8627.50248208	1810.57390088
-PWY-5659	GDP mannose biosynthesis|unclassified	263.55463924	240.28014025
-TRNA-CHARGING-PWY	tRNA charging|g__Escherichia.s__Escherichia_coli	3427.33438952	604.21022222
-OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Streptococcus.s__Streptococcus_mutans	4331.94477485	650.07310656
-PWY-6969	TCA cycle V (2 oxoglutarate	11786.4427758	1650.44047772
-PWY-3841	folate transformations II|unclassified	771.9890211	109.6163283
-PWY-6307	L tryptophan degradation X |unclassified	7.64511985	52.71222414
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	16317.9662212	1244.26429343
-PWY1F-823	leucopelargonidin and leucocyanidin biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4060.09614919	2029.88595219
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	10086.2549656	1747.9644646
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Rhodobacter.s__Rhodobacter_sphaeroides	26214.6695562	3392.64817055
-PWY-5741	ethylmalonyl CoA pathway	14010.2098526	4762.28614483
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	140.15988892	4129.47110281
-P105-PWY	TCA cycle IV 	34717.8435829	43631.2477444
-PWY-3941	&beta; alanine biosynthesis II	2817.89954425	1529.92022489
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Escherichia.s__Escherichia_coli	3776.83864118	695.70708218
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Neisseria.s__Neisseria_meningitidis	132.89036545	2274.77534093
-PWY-6581	spirilloxanthin and 2,2 diketo spirilloxanthin biosynthesis	682.07617638	337.05679473
-PWY-5989	stearate biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii	494.93454066	649.86723381
-PWY-1882	superpathway of C1 compounds oxidation to CO2	7208.31608027	728.70449846
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation 	52476.9350851	52322.8828407
-PWY-5083	NAD NADH phosphorylation and dephosphorylation|g__Propionibacterium.s__Propionibacterium_acnes	182.74513609	4743.62791735
-PWY-7316	dTDP N acetylviosamine biosynthesis	4747.95216611	522.80785368
-PWY-7663	gondoate biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis	11044.4400844	3017.102027
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1236.13068692	577.602828
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	15286.0087368	1447.9278958
-GLUCARDEG-PWY	D glucarate degradation I|g__Escherichia.s__Escherichia_coli	7718.66574859	928.60944178
-PWY-7663	gondoate biosynthesis |g__Clostridium.s__Clostridium_beijerinckii	535.5609169	1436.74135584
-PWY-5173	superpathway of acetyl CoA biosynthesis|unclassified	120.13427395	606.29733923
-PWY0-321	phenylacetate degradation I |g__Escherichia.s__Escherichia_coli	3492.40717908	237.98214483
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	297.76569358	531.75163588
-ARGORNPROST-PWY	arginine, ornithine and proline interconversion|g__Staphylococcus.s__Staphylococcus_epidermidis	12097.409789	3112.20821407
-PWY-5690	TCA cycle II |g__Staphylococcus.s__Staphylococcus_epidermidis	11289.6207912	1852.0905114
-PENTOSE-P-PWY	pentose phosphate pathway|g__Escherichia.s__Escherichia_coli	6240.54534243	1322.89473522
-PWY66-422	D galactose degradation V 	43815.7124293	28455.6399232
-LACTOSECAT-PWY	lactose and galactose degradation I|g__Escherichia.s__Escherichia_coli	7616.90142826	2072.93056179
-PWY-5101	L isoleucine biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	5340.38885219	1197.05229503
-GLYOXYLATE-BYPASS	glyoxylate cycle|g__Rhodobacter.s__Rhodobacter_sphaeroides	4037.41583661	426.19827941
-TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA|g__Pseudomonas.s__Pseudomonas_aeruginosa	679.01307876	257.29141585
-PWY-7288	fatty acid &beta; oxidation |unclassified	81.12038796	80.51878181
-PWY-6385	peptidoglycan biosynthesis III |g__Streptococcus.s__Streptococcus_mutans	7761.37235033	1250.24056002
-PWY0-1296	purine ribonucleosides degradation|g__Streptococcus.s__Streptococcus_mutans	14193.5770126	1782.10851177
-GLYCOLYSIS	glycolysis I |unclassified	105.62597954	375.3039668
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Clostridium.s__Clostridium_beijerinckii	642.48934802	1322.66629949
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	5547.2805521	1487.19056457
-P185-PWY	formaldehyde assimilation III 	41829.8288292	37756.9456653
-PWY-5989	stearate biosynthesis II |g__Escherichia.s__Escherichia_coli	5293.14635276	1392.67993602
-PWY-4984	urea cycle|g__Staphylococcus.s__Staphylococcus_aureus	13721.8413274	1247.846039
-PWY0-1296	purine ribonucleosides degradation	52619.420419	43365.1930165
-PWY-5097	L lysine biosynthesis VI	40159.0866553	32045.1311035
-PWY-1042	glycolysis IV |g__Staphylococcus.s__Staphylococcus_epidermidis	14357.3824697	2606.79945518
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	368.15469715	627.07690718
-PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III	36049.0775389	27041.6774861
-PWY0-321	phenylacetate degradation I 	4376.16896882	9715.03077615
-FUC-RHAMCAT-PWY	superpathway of fucose and rhamnose degradation	3067.52817688	2924.07220335
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	11938.9512976	3320.06594266
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Methanobrevibacter.s__Methanobrevibacter_smithii	2164.30826665	196.80261933
-PWY-5104	L isoleucine biosynthesis IV|g__Rhodobacter.s__Rhodobacter_sphaeroides	13149.0322415	2037.23042068
-METSYN-PWY	L homoserine and L methionine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	731.74580171	446.88994951
-PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |unclassified	133.26391812	307.04874979
-PWY-7111	pyruvate fermentation to isobutanol |g__Rhodobacter.s__Rhodobacter_sphaeroides	21947.005321	3015.52886467
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Rhodobacter.s__Rhodobacter_sphaeroides	2775.12395814	413.26965268
-PWY-7288	fatty acid &beta; oxidation |g__Deinococcus.s__Deinococcus_radiodurans	139.0693785	21248.0606886
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Escherichia.s__Escherichia_coli	1177.02114595	766.71332167
-THRESYN-PWY	superpathway of L threonine biosynthesis|unclassified	144.32611287	182.73124697
-PWY-5022	4 aminobutanoate degradation V|g__Staphylococcus.s__Staphylococcus_epidermidis	7687.96878088	2414.24273897
-PWY-7094	fatty acid salvage|g__Clostridium.s__Clostridium_beijerinckii	706.31794088	1887.52369475
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Escherichia.s__Escherichia_coli	5081.32089143	1085.44314175
-PWY-7013	L 1,2 propanediol degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	3075.53211493	406.10609578
-GOLPDLCAT-PWY	superpathway of glycerol degradation to 1,3 propanediol|g__Clostridium.s__Clostridium_beijerinckii	621.6199414	1172.51156928
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	13949.129517	2919.27838396
-URDEGR-PWY	superpathway of allantoin degradation in plants|g__Escherichia.s__Escherichia_coli	3441.39494745	497.16208443
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Staphylococcus.s__Staphylococcus_aureus	9743.57817824	879.08031243
-PWY0-862	 dodec 5 enoate biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4492.6328203	573.21687021
-VALSYN-PWY	L valine biosynthesis	70003.7114176	71583.2564668
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	17000.0308332	1887.5356126
-PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	2619.41883306	429.37673561
-OANTIGEN-PWY	O antigen building blocks biosynthesis |g__Escherichia.s__Escherichia_coli	3732.94648751	777.80558692
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Rhodobacter.s__Rhodobacter_sphaeroides	18801.3724225	3211.22936113
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Streptococcus.s__Streptococcus_mutans	7488.57719497	2524.58743801
-PWY-2941	L lysine biosynthesis II|unclassified	151.20561631	220.14088951
-PWY0-1061	superpathway of L alanine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	5639.90969648	408.48759864
-PYRIDNUCSYN-PWY	NAD biosynthesis I |unclassified	51.85970874	10.04748482
-PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III|g__Staphylococcus.s__Staphylococcus_epidermidis	10126.3013113	1607.58222493
-PWY0-862	 dodec 5 enoate biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	5150.07170437	1103.27841645
-PWY-5659	GDP mannose biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	12408.4561655	1212.39453448
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II	58964.2240647	58328.3587883
-PWY-5415	catechol degradation I 	5507.80131768	11782.7494737
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	36921.2792572	5287.4034476
-PWY-6859	all trans farnesol biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	19169.5442646	4218.01696961
-PWY-5899	superpathway of menaquinol 13 biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	8558.3505207	1442.71932172
-PWY-4981	L proline biosynthesis II |unclassified	63.38205838	222.25727061
-PWY-5182	toluene degradation II  (via 4 methylcatechol)|unclassified	19.49876745	200.31522527
-PWY-3781	aerobic respiration I |g__Helicobacter.s__Helicobacter_pylori	475.85206385	7486.51278743
-SULFATE-CYS-PWY	superpathway of sulfate assimilation and cysteine biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	11874.2264996	3970.82189963
-PWY-4202	arsenate detoxification I |g__Rhodobacter.s__Rhodobacter_sphaeroides	2030.61826096	402.9881114
-PWY-7286	7  wyosine biosynthesis	2933.85524094	239.98964359
-PWY-4041	&gamma; glutamyl cycle|unclassified	78.47804093	34.79757476
-ARGSYN-PWY	L arginine biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	15335.8271417	2485.76127548
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II 	40859.1913207	39331.0957304
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	97.24764853	2915.24388118
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Pseudomonas.s__Pseudomonas_aeruginosa	3162.11220236	737.49180228
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5519.52416909	642.16724732
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|g__Streptococcus.s__Streptococcus_mutans	4763.78851226	297.44823163
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II	45823.884214	46601.4299688
-PWY-922	mevalonate pathway I	33170.2165912	9358.88049333
-PWY-6662	superpathway of quinolone and alkylquinolone biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	878.71569624	130.55003111
-PWY-5973	cis vaccenate biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4200.28859753	501.11118083
-PWY-922	mevalonate pathway I|g__Staphylococcus.s__Staphylococcus_epidermidis	11967.6221237	2875.39880168
-PWY0-1586	peptidoglycan maturation |g__Clostridium.s__Clostridium_beijerinckii	1500.86681152	2880.2283244
-HISTSYN-PWY	L histidine biosynthesis|g__Escherichia.s__Escherichia_coli	2451.9253406	628.80349146
-PWY-7279	aerobic respiration II  (yeast)|g__Rhodobacter.s__Rhodobacter_sphaeroides	34563.9196387	2990.56093986
-FASYN-ELONG-PWY	fatty acid elongation    saturated|g__Streptococcus.s__Streptococcus_mutans	5294.93799882	691.10581987
-FOLSYN-PWY	superpathway of tetrahydrofolate biosynthesis and salvage	36059.4636499	34291.7142827
-PWY-7384	anaerobic energy metabolism 	6047.73076848	9440.09605965
-PWY-5676	acetyl CoA fermentation to butanoate II|g__Acinetobacter.s__Acinetobacter_baumannii	514.42292954	11444.5653146
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|unclassified	919.02833222	3578.15030375
-PWY-5913	TCA cycle VI 	11186.8061352	36877.3466563
-PWY-5136	fatty acid &beta; oxidation II |g__Staphylococcus.s__Staphylococcus_aureus	15972.2905801	1647.241308
-PWY-6628	superpathway of L phenylalanine biosynthesis	35707.4004921	42240.3981324
-PWY-7090	UDP 2,3 diacetamido 2,3 dideoxy &alpha; D mannuronate biosynthesis	1581.87956853	4318.64802125
-PPGPPMET-PWY	ppGpp biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	220.87102439	7064.00416033
-PWY4FS-8	phosphatidylglycerol biosynthesis II 	30310.6431379	29458.7796095
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Escherichia.s__Escherichia_coli	3168.29114837	1226.26490102
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Neisseria.s__Neisseria_meningitidis	231.76664284	2194.9243779
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2702.20209942	415.31118726
-PWY-6969	TCA cycle V (2 oxoglutarate	12042.651076	1871.36784398
-SO4ASSIM-PWY	sulfate reduction I |g__Pseudomonas.s__Pseudomonas_aeruginosa	988.32321115	259.14996686
-PWY-6182	superpathway of salicylate degradation	6723.69744496	5627.66233876
-PWY-5918	superpathay of heme biosynthesis from glutamate|g__Staphylococcus.s__Staphylococcus_aureus	10584.4600088	917.53282311
-PWY-6608	guanosine nucleotides degradation III|unclassified	226.17168962	800.90508802
-PWY-6823	molybdenum cofactor biosynthesis	11689.388251	3849.86537302
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4802.21599474	801.71540826
-PWY0-862	 dodec 5 enoate biosynthesis|unclassified	590.03053267	656.24638297
-PWY-6891	thiazole biosynthesis II 	14228.1982788	4799.22357937
-PROTOCATECHUATE-ORTHO-CLEAVAGE-PWY	protocatechuate degradation II |g__Acinetobacter.s__Acinetobacter_baumannii	137.59889921	9468.08714274
-TRPSYN-PWY	L tryptophan biosynthesis	4901.67476169	998.24722747
-HSERMETANA-PWY	L methionine biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus	10704.6279274	1428.79117109
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	9517.9304891	750.8276046
-RHAMCAT-PWY	L rhamnose degradation I|g__Clostridium.s__Clostridium_beijerinckii	278.49032545	192.51540339
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	300.13029529	146.91850616
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation	42809.1123805	41128.1947562
-DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	9882.60214025	864.60468771
-PWY-6672	cis genanyl CoA degradation	690.84670612	7524.02541771
-NAD-BIOSYNTHESIS-II	NAD salvage pathway II|g__Escherichia.s__Escherichia_coli	6399.36784439	1081.15882603
-GALACTUROCAT-PWY	D galacturonate degradation I|g__Escherichia.s__Escherichia_coli	3170.53547227	331.43061016
-PWY-6700	queuosine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6704.37892204	1416.02455935
-PWY-5898	superpathway of menaquinol 12 biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	8558.3505207	1442.71932172
-PWY-7184	pyrimidine deoxyribonucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	7419.94332552	1170.11624735
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Escherichia.s__Escherichia_coli	3217.26914819	587.55353453
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Escherichia.s__Escherichia_coli	11056.3109099	1891.32577037
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	1056.89034552	272.35544024
-PWY-6519	8 amino 7 oxononanoate biosynthesis I	40200.4964808	37353.1264744
-PWY66-388	fatty acid &alpha; oxidation III|g__Pseudomonas.s__Pseudomonas_aeruginosa	909.66162518	258.83879283
-PWY-7234	inosine 5 phosphate biosynthesis III	35619.9556098	30283.7902698
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Clostridium.s__Clostridium_beijerinckii	460.02446196	241.24432977
-COA-PWY	coenzyme A biosynthesis I|unclassified	33.64328009	32.14646219
-PPGPPMET-PWY	ppGpp biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	170.66385714	3543.37983104
-PWY-6630	superpathway of L tyrosine biosynthesis|g__Escherichia.s__Escherichia_coli	2748.28667321	864.76813763
-PWY-6834	spermidine biosynthesis III|unclassified	8.45731084	12.85090982
-UDPNACETYLGALSYN-PWY	UDP N acetyl D glucosamine biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	105.0311326	3474.29057117
-PWY-6700	queuosine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	715.22102433	211.22711208
-PWY-5973	cis vaccenate biosynthesis|g__Escherichia.s__Escherichia_coli	4933.03621367	1486.75179442
-PWY-5705	allantoin degradation to glyoxylate III	4988.24776938	3974.31734997
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Streptococcus.s__Streptococcus_mutans	7465.08545776	1650.49554073
-PWY6666-2	dopamine degradation	16.87667991	441.4988008
-PWY-3781	aerobic respiration I |g__Deinococcus.s__Deinococcus_radiodurans	243.95473535	51964.0681305
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	1315.79158198	460.10715773
-PWY-5659	GDP mannose biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	4117.82806788	694.21044438
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation	42612.5937781	35694.8393823
-PWY-7111	pyruvate fermentation to isobutanol |unclassified	479.87537396	1089.54043845
-PWY-7204	pyridoxal 5 phosphate salvage II 	10800.8419846	12011.2168908
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis	15691.8909195	24993.3569799
-PYRIDNUCSAL-PWY	NAD salvage pathway I	22096.2834915	22821.8843869
-PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Deinococcus.s__Deinococcus_radiodurans	140.21631076	37298.5625608
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Escherichia.s__Escherichia_coli	4351.61218807	670.5564602
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Neisseria.s__Neisseria_meningitidis	231.76664284	2194.9243779
-PWY-5265	peptidoglycan biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	12455.7810294	2554.29432165
-PWY-6992	1,5 anhydrofructose degradation	4968.13754038	8644.10967713
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine 	28500.802548	31953.4761437
-PWY-7282	4 amino 2 methyl 5 phosphomethylpyrimidine biosynthesis |g__Escherichia.s__Escherichia_coli	5157.13476176	538.06311295
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|unclassified	671.28038875	1480.01334876
-ARGSYNBSUB-PWY	L arginine biosynthesis II |unclassified	293.14527582	513.49738954
-PWY-2723	trehalose degradation V	4485.79830654	3675.30686654
-GLUTORN-PWY	L ornithine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5348.92104814	549.69077495
-PWY-6317	galactose degradation I |g__Escherichia.s__Escherichia_coli	5784.63986016	880.24907284
-MET-SAM-PWY	superpathway of S adenosyl L methionine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	7905.95403789	1183.17030603
-PWY-5686	UMP biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	13751.061153	1664.70830303
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	13350.3562531	1937.01584304
-PWY-6471	peptidoglycan biosynthesis IV |g__Staphylococcus.s__Staphylococcus_aureus	10236.8169945	1238.00756398
-P441-PWY	superpathway of N acetylneuraminate degradation	33623.4581086	28695.3511219
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis	37144.2327558	36124.4690051
-GLUTORN-PWY	L ornithine biosynthesis|g__Escherichia.s__Escherichia_coli	4196.64253532	623.07522492
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	12012.7382364	1613.71858641
-PWY-6737	starch degradation V	18112.8261844	21253.3857465
-PWY-5505	L glutamate and L glutamine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4474.00991797	699.52903005
-PWY-7111	pyruvate fermentation to isobutanol |g__Staphylococcus.s__Staphylococcus_aureus	18400.9400205	2812.66744758
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II	68711.2457207	84604.3874667
-PWY-5686	UMP biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	6095.41388472	756.68645712
-PWY-6396	superpathway of 2,3 butanediol biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	19679.4426729	3256.15160919
-PWY-5005	biotin biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	13632.2054513	1531.2019051
-PWY-6549	L glutamine biosynthesis III|unclassified	20.94555718	76.71774189
-PWY-5913	TCA cycle VI |unclassified	13.48184697	346.76001726
-PWY-7209	superpathway of pyrimidine ribonucleosides degradation|g__Escherichia.s__Escherichia_coli	2538.01659673	505.99080864
-OANTIGEN-PWY	O antigen building blocks biosynthesis 	37043.4911155	39282.3795192
-HCAMHPDEG-PWY	3 phenylpropanoate and 3 propanoate degradation to 2 oxopent 4 enoate	1692.49536281	301.73944072
-PANTO-PWY	phosphopantothenate biosynthesis I|unclassified	16.76573569	269.44801574
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Methanobrevibacter.s__Methanobrevibacter_smithii	3988.67469701	624.33499414
-PWY-6703	preQ0 biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	10672.3553568	649.6657578
-P221-PWY	octane oxidation|g__Acinetobacter.s__Acinetobacter_baumannii	161.60968485	8680.21691365
-PWY66-391	fatty acid &beta; oxidation VI 	20914.5473641	42333.0035724
-PWY-7237	myo , chiro  and scillo inositol degradation	31960.3900142	20589.6224237
-HSERMETANA-PWY	L methionine biosynthesis III|unclassified	245.11456407	64.88717342
-PWY-5484	glycolysis II |g__Escherichia.s__Escherichia_coli	4411.05251246	1048.12311953
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |g__Staphylococcus.s__Staphylococcus_aureus	10682.7126282	1536.47450601
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|unclassified	592.6261526	800.90508802
-PWY0-1586	peptidoglycan maturation 	83491.5594418	72155.219648
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Propionibacterium.s__Propionibacterium_acnes	1052.91853145	4521.01575425
-PWY66-391	fatty acid &beta; oxidation VI |g__Clostridium.s__Clostridium_beijerinckii	552.67343754	664.72601448
-GLYCOL-GLYOXDEG-PWY	superpathway of glycol metabolism and degradation|g__Escherichia.s__Escherichia_coli	9116.02131027	1325.87630929
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	590.42710083	109.70927043
-PWY-6527	stachyose degradation|g__Propionibacterium.s__Propionibacterium_acnes	139.84368188	3590.5281961
-PWY-6595	superpathway of guanosine nucleotides degradation |g__Escherichia.s__Escherichia_coli	10700.8537142	1321.01086203
-PWY-7337	10 cis heptadecenoyl CoA degradation 	265.24638102	6718.68847562
-COLANSYN-PWY	colanic acid building blocks biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	3761.78021138	424.91047108
-ORNDEG-PWY	superpathway of ornithine degradation|g__Pseudomonas.s__Pseudomonas_aeruginosa	1685.96119737	653.28306925
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |g__Rhodobacter.s__Rhodobacter_sphaeroides	10756.774345	1806.33977766
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|g__Staphylococcus.s__Staphylococcus_epidermidis	6505.82828661	1144.17877842
-ARO-PWY	chorismate biosynthesis I|g__Escherichia.s__Escherichia_coli	3225.13196939	771.75951813
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	13577.7051586	1345.31182512
-PWY3O-355	stearate biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides	17742.8381448	2958.85704046
-P42-PWY	incomplete reductive TCA cycle|g__Propionibacterium.s__Propionibacterium_acnes	125.05394405	4360.80925658
-GALACTUROCAT-PWY	D galacturonate degradation I	7232.08534986	7565.78131069
-PWY-821	superpathway of sulfur amino acid biosynthesis 	40960.2147758	33776.3784341
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	10037.1975581	1417.12071746
-PWY-7117	C4 photosynthetic carbon assimilation cycle, PEPCK type|g__Escherichia.s__Escherichia_coli	5944.30605455	703.3654008
-P122-PWY	heterolactic fermentation|g__Staphylococcus.s__Staphylococcus_epidermidis	8354.16144859	1391.11014791
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Deinococcus.s__Deinococcus_radiodurans	187.59460807	21248.59438
-PWY-6527	stachyose degradation	23209.0991929	24770.1860095
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	9736.9957974	1478.5068247
-PWY-7094	fatty acid salvage|g__Pseudomonas.s__Pseudomonas_aeruginosa	1566.7167657	941.38389529
-PWY-6284	superpathway of unsaturated fatty acids biosynthesis 	13242.8067315	18753.0674161
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	318.5991959	894.60180602
-PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III|g__Escherichia.s__Escherichia_coli	4187.79727243	320.01811774
-AST-PWY	L arginine degradation II 	4276.80459351	6785.9958638
-LEU-DEG2-PWY	L leucine degradation I|g__Acinetobacter.s__Acinetobacter_baumannii	487.6527638	8151.02758825
-P161-PWY	acetylene degradation|g__Clostridium.s__Clostridium_beijerinckii	486.18046798	2467.08274706
-ANAGLYCOLYSIS-PWY	glycolysis III |unclassified	216.83168688	360.70730415
-PWY-7279	aerobic respiration II  (yeast)	54384.5300088	79290.4207898
-P441-PWY	superpathway of N acetylneuraminate degradation|g__Escherichia.s__Escherichia_coli	4738.80527812	730.25572967
-PWY0-1586	peptidoglycan maturation |unclassified	101.35462715	176.76884605
-PWY-7111	pyruvate fermentation to isobutanol |g__Escherichia.s__Escherichia_coli	13458.0684808	3636.03045995
-FASYN-INITIAL-PWY	superpathway of fatty acid biosynthesis initiation |unclassified	149.89910264	226.09898283
-PWY-1541	superpathway of taurine degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	1331.30327472	494.02915612
-PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation	20931.6576297	57530.8336122
-PWY-7332	superpathway of UDP N acetylglucosamine derived O antigen building blocks biosynthesis	2632.18927671	421.13090113
-PWY0-1338	polymyxin resistance	2628.63745082	880.62641135
-THISYN-PWY	superpathway of thiamin diphosphate biosynthesis I|g__Escherichia.s__Escherichia_coli	2194.52902644	764.32223239
-PWY-6588	pyruvate fermentation to acetone|g__Clostridium.s__Clostridium_beijerinckii	912.64701339	1148.73888196
-PWY-5677	succinate fermentation to butanoate	1776.07332895	4188.25057975
-PWY-6305	putrescine biosynthesis IV|unclassified	51.90258318	31.67092566
-PWY-6307	L tryptophan degradation X 	3984.56732129	51496.4086371
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Rhodobacter.s__Rhodobacter_sphaeroides	6926.15229149	718.76121533
-PWY-7391	isoprene biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	11265.4232475	2296.45652178
-PWY-6859	all trans farnesol biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2218.90334077	1070.07410382
-PWY1F-823	leucopelargonidin and leucocyanidin biosynthesis	4127.99593424	2120.70433628
-PWY-5920	superpathway of heme biosynthesis from glycine|g__Staphylococcus.s__Staphylococcus_aureus	9179.86631905	616.18076927
-PWY0-1296	purine ribonucleosides degradation|g__Escherichia.s__Escherichia_coli	5905.1400508	1004.03514699
-FAO-PWY	fatty acid &beta; oxidation I	53851.5834411	114567.933866
-PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	644.13915839	186.85148478
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|unclassified	232.56967458	400.76010078
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|g__Escherichia.s__Escherichia_coli	5235.7340335	1550.00566836
-PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III|unclassified	33.85125235	159.75515805
-PWY-7431	aromatic biogenic amine degradation |unclassified	9.98055831	58.30332417
-TCA	TCA cycle I |g__Staphylococcus.s__Staphylococcus_epidermidis	16146.0270219	2528.12680633
-PWY-7392	taxadiene biosynthesis |g__Escherichia.s__Escherichia_coli	4360.22226313	671.90543482
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation	88626.3771426	93639.0955773
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	887.7155841	458.88889012
-KETOGLUCONMET-PWY	ketogluconate metabolism|g__Escherichia.s__Escherichia_coli	7120.40523932	972.82158805
-PWY-5347	superpathway of L methionine biosynthesis 	47813.9082061	36358.6340773
-PWY-5431	aromatic compounds degradation via &beta; ketoadipate	6022.47300648	7321.53949818
-TCA	TCA cycle I |g__Staphylococcus.s__Staphylococcus_aureus	14019.5153266	2090.06744613
-PWY-5529	superpathway of bacteriochlorophyll a biosynthesis|unclassified	63.78592205	9.10977606
-PWY-6969	TCA cycle V (2 oxoglutarate	486.90488629	309.59725345
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Escherichia.s__Escherichia_coli	5202.12964363	512.45321216
-PWY-5747	2 methylcitrate cycle II|unclassified	19.68257624	45.06146103
-CRNFORCAT-PWY	creatinine degradation I	6806.57375556	2687.13709358
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	595.30096539	1204.72237146
-PWY-2941	L lysine biosynthesis II|g__Staphylococcus.s__Staphylococcus_aureus	9809.51385017	1191.78719632
-P261-PWY	coenzyme M biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2293.95084223	213.800819
-PWY-6936	seleno amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	22702.026614	2742.52961297
-GLUCONEO-PWY	gluconeogenesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	10187.6950185	1663.33050784
-PWY-6151	S adenosyl L methionine cycle I|g__Streptococcus.s__Streptococcus_mutans	5028.95296683	976.78077043
-PWY-6470	peptidoglycan biosynthesis V 	24103.407008	8225.35604645
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	9120.26391145	272.86237442
-SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Clostridium.s__Clostridium_beijerinckii	463.99403102	804.04902817
-ALL-CHORISMATE-PWY	superpathway of chorismate metabolism	19150.9563917	4260.49702607
-PWY-3661	glycine betaine degradation I	5006.53265698	2061.22168576
-ANAEROFRUCAT-PWY	homolactic fermentation|g__Staphylococcus.s__Staphylococcus_aureus	10833.7343685	1386.98586182
-3-HYDROXYPHENYLACETATE-DEGRADATION-PWY	4 hydroxyphenylacetate degradation	5939.43167638	13973.2787801
-PWY-6609	adenine and adenosine salvage III|g__Streptococcus.s__Streptococcus_agalactiae	288.23759249	615.89390301
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	159.71379076	19876.4652052
-TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA|unclassified	267.11172465	227.9266565
-PWY-4202	arsenate detoxification I 	8538.64257474	1170.98483103
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |unclassified	201.19854374	268.52977125
-PWY-5690	TCA cycle II |g__Staphylococcus.s__Staphylococcus_aureus	12256.7983235	1708.34430796
-PWY-6113	superpathway of mycolate biosynthesis	29629.8312103	39193.241666
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Streptococcus.s__Streptococcus_agalactiae	342.48523357	98.56441464
-PWY-5109	2 methylbutanoate biosynthesis	33.77296788	5049.48684348
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I	59510.238665	55928.4774429
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Staphylococcus.s__Staphylococcus_epidermidis	9616.42001443	1928.39728702
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	13824.453262	2618.80297394
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |unclassified	81.46119091	55.99019284
-P42-PWY	incomplete reductive TCA cycle|g__Staphylococcus.s__Staphylococcus_epidermidis	15389.6114363	2036.75750701
-P161-PWY	acetylene degradation|g__Streptococcus.s__Streptococcus_mutans	7565.11751899	1208.74797625
-PWY-5136	fatty acid &beta; oxidation II |g__Escherichia.s__Escherichia_coli	5364.48519227	1332.00244325
-PWY-5686	UMP biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	13022.5175442	1067.20711113
-FUCCAT-PWY	fucose degradation	3606.00782464	8327.91486787
-PWY-3781	aerobic respiration I |g__Propionibacterium.s__Propionibacterium_acnes	307.60781448	14416.0404018
-PWY-7219	adenosine ribonucleotides de novo biosynthesis	53294.195075	57699.2633016
-HSERMETANA-PWY	L methionine biosynthesis III	47454.223009	33360.1058689
-PWY-7279	aerobic respiration II  (yeast)|g__Propionibacterium.s__Propionibacterium_acnes	194.95090733	11936.5862037
-PWY-7383	anaerobic energy metabolism 	1084.39620706	18624.3894831
-PWY-5676	acetyl CoA fermentation to butanoate II|g__Escherichia.s__Escherichia_coli	5795.81697527	1064.4472541
-PWY-5484	glycolysis II |g__Clostridium.s__Clostridium_beijerinckii	675.81916642	1429.99108864
-P122-PWY	heterolactic fermentation	30420.4699362	15743.3430965
-PWY-5675	nitrate reduction V |g__Acinetobacter.s__Acinetobacter_baumannii	240.27040839	12246.7990687
-PWY-6897	thiamin salvage II	26586.2656529	26839.346972
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis |unclassified	79.80705634	148.74577623
-URSIN-PWY	ureide biosynthesis|unclassified	17.00821784	115.71302966
-GLUCARGALACTSUPER-PWY	superpathway of D glucarate and D galactarate degradation	14021.9541628	9190.33499114
-PWY-5104	L isoleucine biosynthesis IV|g__Clostridium.s__Clostridium_beijerinckii	1341.36748595	1559.52317358
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP	73960.3415727	76651.0685609
-PWY-5188	tetrapyrrole biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	251.72634599	685.20574459
-FAO-PWY	fatty acid &beta; oxidation I|g__Escherichia.s__Escherichia_coli	5978.14746748	1435.58600015
-P221-PWY	octane oxidation|g__Escherichia.s__Escherichia_coli	8729.77305586	1477.74035331
-PWY-5367	petroselinate biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	585.18084598	505.32904004
-PWYG-321	mycolate biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	4071.02733519	2909.25018956
-PWY0-862	 dodec 5 enoate biosynthesis|g__Escherichia.s__Escherichia_coli	5930.63539968	2438.76864939
-GLUCUROCAT-PWY	superpathway of &beta; D glucuronide and D glucuronate degradation|g__Clostridium.s__Clostridium_beijerinckii	752.65278465	1095.96821196
-PWY-5182	toluene degradation II  (via 4 methylcatechol)	7753.60034013	31762.9856249
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	221.10007335	251.37211089
-COA-PWY	coenzyme A biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	6391.58124791	1454.98807117
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii	228.00605008	777.712332
-PROPFERM-PWY	L alanine fermentation to propanoate and acetate	3414.77486977	7603.71678867
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	1602.41408707	626.35391473
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	5998.36034323	623.7485748
-PWY-6859	all trans farnesol biosynthesis	53358.2475449	31883.6965269
-PWY-7111	pyruvate fermentation to isobutanol 	91215.0991801	106698.764566
-METSYN-PWY	L homoserine and L methionine biosynthesis|unclassified	179.36070162	59.11133944
-PWY-5347	superpathway of L methionine biosynthesis |g__Clostridium.s__Clostridium_beijerinckii	364.664573	797.22410971
-PWY-241	C4 photosynthetic carbon assimilation cycle, NADP ME type	11662.5150551	19323.4101489
-PWY-3781	aerobic respiration I |g__Neisseria.s__Neisseria_meningitidis	142.20887339	6845.43838944
-PWY-5659	GDP mannose biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	356.30538845	4374.813129
-PWY-5104	L isoleucine biosynthesis IV|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4041.12678369	677.2312789
-PWY-5103	L isoleucine biosynthesis III|unclassified	514.140946	152.70024536
-PWY-5189	tetrapyrrole biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	5644.67137197	1024.47459565
-PWY-561	superpathway of glyoxylate cycle and fatty acid degradation	16208.9457093	49450.7244379
-PWY-5897	superpathway of menaquinol 11 biosynthesis|g__Escherichia.s__Escherichia_coli	3694.00663281	527.00700198
-PWY-7254	TCA cycle VII |g__Escherichia.s__Escherichia_coli	4351.08148841	466.70746796
-ORNDEG-PWY	superpathway of ornithine degradation|g__Rhodobacter.s__Rhodobacter_sphaeroides	3931.82460436	679.13054889
-PWY-5659	GDP mannose biosynthesis|g__Deinococcus.s__Deinococcus_radiodurans	153.53146279	38165.6082899
-PWY-821	superpathway of sulfur amino acid biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	11109.8930536	1395.89718811
-ARO-PWY	chorismate biosynthesis I|unclassified	217.52424855	366.86538039
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	369.68326227	1965.58427038
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|unclassified	594.88623634	181.86257779
-PWY-5022	4 aminobutanoate degradation V|unclassified	119.64944971	34.68918587
-P185-PWY	formaldehyde assimilation III |g__Staphylococcus.s__Staphylococcus_aureus	11326.7191427	1180.85025887
-PWY-6859	all trans farnesol biosynthesis|g__Escherichia.s__Escherichia_coli	4290.95937849	1410.173387
-PWY0-1296	purine ribonucleosides degradation|g__Staphylococcus.s__Staphylococcus_aureus	19903.8093633	2025.24205939
-ECASYN-PWY	enterobacterial common antigen biosynthesis	4674.62812277	665.31777051
-PWY66-388	fatty acid &alpha; oxidation III	985.79683991	276.16868171
-PWY-7663	gondoate biosynthesis |g__Streptococcus.s__Streptococcus_mutans	8499.06647838	1546.84352858
-HEMESYN2-PWY	heme biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	620.28176778	136.33892378
-ANAEROFRUCAT-PWY	homolactic fermentation	47231.1831156	51238.9443994
-PWY-3841	folate transformations II|g__Clostridium.s__Clostridium_beijerinckii	355.75988809	850.98552486
-GLUTORN-PWY	L ornithine biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	10358.865741	2120.66636906
-PWY-1042	glycolysis IV |g__Streptococcus.s__Streptococcus_mutans	7435.22025535	1518.49306521
-PWY-7400	L arginine biosynthesis IV |g__Pseudomonas.s__Pseudomonas_aeruginosa	584.15887411	177.00899989
-PWY-6837	fatty acid beta oxidation V 	4060.58015081	14541.6541294
-PWY-5692	allantoin degradation to glyoxylate II|g__Escherichia.s__Escherichia_coli	3441.39494745	497.16208443
-ILEUDEG-PWY	L isoleucine degradation I|unclassified	31.02350409	50.44973465
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	11735.7365017	3930.94756675
-ANAEROFRUCAT-PWY	homolactic fermentation|g__Staphylococcus.s__Staphylococcus_epidermidis	10899.2520179	1876.09508789
-PWY0-1241	ADP L glycero &beta; D manno heptose biosynthesis|g__Escherichia.s__Escherichia_coli	2514.29870415	486.31436736
-PWY-6507	4 deoxy L threo hex 4 enopyranuronate degradation|g__Escherichia.s__Escherichia_coli	3795.12336761	513.01365937
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Rhodobacter.s__Rhodobacter_sphaeroides	705.92151443	298.34613548
-PWY-7400	L arginine biosynthesis IV |g__Staphylococcus.s__Staphylococcus_aureus	15354.1194031	2495.26566885
-PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	5243.79815282	837.42998224
-PWY-6125	superpathway of guanosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	9170.67988684	1012.00033599
-PWY-7094	fatty acid salvage|g__Deinococcus.s__Deinococcus_radiodurans	284.12546916	40943.0957552
-PWY-6692	Fe oxidation|g__Neisseria.s__Neisseria_meningitidis	142.20887339	3681.89167062
-PWY-6385	peptidoglycan biosynthesis III 	45267.1854985	39542.0265898
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Streptococcus.s__Streptococcus_mutans	6043.84621621	1316.96637722
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Propionibacterium.s__Propionibacterium_acnes	96.80558398	4120.80391509
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	9989.16912696	2190.20294873
-GALACT-GLUCUROCAT-PWY	superpathway of hexuronide and hexuronate degradation	6477.31772478	7866.24232971
-GLUTORN-PWY	L ornithine biosynthesis	41047.6299581	40433.4689927
-PWY-7254	TCA cycle VII 	59522.2389943	33181.0454171
-PWY-5188	tetrapyrrole biosynthesis I |unclassified	185.45328389	350.42836661
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	176.73696086	3518.36463432
-PWY-5791	1,4 dihydroxy 2 naphthoate biosynthesis II |g__Escherichia.s__Escherichia_coli	4043.64711036	280.87263768
-PWY-5899	superpathway of menaquinol 13 biosynthesis	21209.4938493	15529.8979214
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|unclassified	919.02833222	3578.15030375
-PWY-5154	L arginine biosynthesis III |g__Escherichia.s__Escherichia_coli	2573.21863255	460.3092109
-COA-PWY-1	coenzyme A biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	9071.2442565	580.96446474
-PWY-5367	petroselinate biosynthesis	3389.63310058	6050.22736076
-COBALSYN-PWY	adenosylcobalamin salvage from cobinamide I|g__Escherichia.s__Escherichia_coli	3769.86307922	220.95705095
-ARO-PWY	chorismate biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	10827.0120898	1529.56460127
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|unclassified	155.98552828	393.63985905
-PWY-2942	L lysine biosynthesis III	42339.6298363	34392.147388
-FAO-PWY	fatty acid &beta; oxidation I|g__Acinetobacter.s__Acinetobacter_baumannii	528.02398393	18681.9858764
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1220.93388841	161.31902811
-COA-PWY-1	coenzyme A biosynthesis II |unclassified	261.83253545	163.31755851
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	1313.44813159	2264.66366588
-PWY-6892	thiazole biosynthesis I |g__Clostridium.s__Clostridium_beijerinckii	326.41607884	1803.05297008
-ILEUSYN-PWY	L isoleucine biosynthesis I 	70003.7114176	71583.2564668
-METHANOGENESIS-PWY	methanogenesis from H2 and CO2|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4388.35628328	784.08014634
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	11567.6752391	1680.50455181
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	5317.02421823	1449.39529613
-PWY-5920	superpathway of heme biosynthesis from glycine|unclassified	179.28692802	153.14173118
-PWY-7196	superpathway of pyrimidine ribonucleosides salvage	40398.2278423	41832.9185194
-AST-PWY	L arginine degradation II |g__Pseudomonas.s__Pseudomonas_aeruginosa	403.34029063	156.98626488
-PWY66-422	D galactose degradation V |unclassified	52.80067309	58.57234985
-P161-PWY	acetylene degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	13280.2723735	1853.75869381
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	4675.34976192	409.64292673
-PWY-5896	superpathway of menaquinol 10 biosynthesis	17486.2279354	2528.42214446
-PWY-6596	adenosine nucleotides degradation I|unclassified	14.47053194	11.67343708
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Escherichia.s__Escherichia_coli	6961.95708329	851.89371872
-PWY-5189	tetrapyrrole biosynthesis II |g__Staphylococcus.s__Staphylococcus_epidermidis	9126.01948973	782.32269891
-METSYN-PWY	L homoserine and L methionine biosynthesis	42751.1955267	32239.2100294
-ANAEROFRUCAT-PWY	homolactic fermentation|g__Escherichia.s__Escherichia_coli	4702.73101999	1082.14748033
-PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Staphylococcus.s__Staphylococcus_epidermidis	7094.14056498	740.59099745
-P185-PWY	formaldehyde assimilation III |g__Rhodobacter.s__Rhodobacter_sphaeroides	3769.4862625	253.00736269
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	11088.8474424	1131.83575947
-PWY-5855	ubiquinol 7 biosynthesis |g__Escherichia.s__Escherichia_coli	5192.63109166	503.26909238
-PWY4FS-8	phosphatidylglycerol biosynthesis II |g__Escherichia.s__Escherichia_coli	4955.01408564	651.45757347
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	7115.25984872	2101.09951952
-PWY0-1061	superpathway of L alanine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6396.12010116	1697.64834255
-PWY-5188	tetrapyrrole biosynthesis I 	38592.075231	27352.5521062
-PWY-2942	L lysine biosynthesis III|g__Staphylococcus.s__Staphylococcus_epidermidis	8711.81845307	2026.88412716
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Escherichia.s__Escherichia_coli	2944.0674837	730.84415794
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	9534.13281027	2243.39309727
-PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III|unclassified	506.07257877	990.43368636
-PWY-7199	pyrimidine deoxyribonucleosides salvage|g__Escherichia.s__Escherichia_coli	827.40387293	868.77543406
-PWY-7228	superpathway of guanosine nucleotides de novo biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	9575.20256803	1047.86926968
-PWY-6609	adenine and adenosine salvage III|g__Rhodobacter.s__Rhodobacter_sphaeroides	1119.52186134	242.95336488
-PWY-7237	myo , chiro  and scillo inositol degradation|g__Streptococcus.s__Streptococcus_mutans	8672.35490899	1086.4811321
-PWY66-398	TCA cycle III |g__Escherichia.s__Escherichia_coli	4298.87847094	975.46785683
-PWY-6803	phosphatidylcholine acyl editing	3838.41748733	11397.0747834
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	11385.8947964	2432.26943518
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Propionibacterium.s__Propionibacterium_acnes	119.88764961	4867.55493775
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis	45823.884214	46601.4299688
-PWY-6863	pyruvate fermentation to hexanol	1126.71827886	435.53809296
-KETOGLUCONMET-PWY	ketogluconate metabolism	26581.8475813	18204.1941045
-PWY-7090	UDP 2,3 diacetamido 2,3 dideoxy &alpha; D mannuronate biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	1010.50541348	317.00893349
-PWY-6737	starch degradation V|g__Streptococcus.s__Streptococcus_mutans	4477.53475853	1144.08356423
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	6837.92923662	1458.50626822
-PWY-7663	gondoate biosynthesis |g__Staphylococcus.s__Staphylococcus_aureus	10700.1578369	1418.88240494
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	590.69886533	952.60332503
-PWY-6628	superpathway of L phenylalanine biosynthesis|unclassified	115.78265287	257.13564267
-CHLOROPHYLL-SYN	chlorophyllide a biosynthesis I |unclassified	38.80616371	9.51276645
-PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	13984.3894631	1524.36607337
-BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	7970.14050383	1204.55103104
-PWY-4041	&gamma; glutamyl cycle|g__Escherichia.s__Escherichia_coli	5946.00207412	146.46057525
-PWY66-391	fatty acid &beta; oxidation VI |unclassified	82.70659416	143.2949423
-PWY0-162	superpathway of pyrimidine ribonucleotides de novo biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	3144.89259109	435.50598367
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Acinetobacter.s__Acinetobacter_baumannii	76.82100177	11482.1910327
-PWY-5899	superpathway of menaquinol 13 biosynthesis|g__Escherichia.s__Escherichia_coli	3694.00663281	527.00700198
-PWY66-400	glycolysis VI |unclassified	72.79705167	267.81109286
-PWY-5686	UMP biosynthesis|g__Escherichia.s__Escherichia_coli	3828.96801417	454.83660692
-PWY-5097	L lysine biosynthesis VI|g__Staphylococcus.s__Staphylococcus_epidermidis	9108.36838681	2170.22751737
-BRANCHED-CHAIN-AA-SYN-PWY	superpathway of branched amino acid biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	4006.69051603	595.88258052
-PWY0-41	allantoin degradation IV |g__Escherichia.s__Escherichia_coli	2773.64878456	566.86538991
-DAPLYSINESYN-PWY	L lysine biosynthesis I|g__Escherichia.s__Escherichia_coli	4301.39747712	623.02915528
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	19124.013264	4424.63798302
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Neisseria.s__Neisseria_meningitidis	133.85727688	1745.5284179
-PWY66-389	phytol degradation|g__Propionibacterium.s__Propionibacterium_acnes	427.17229621	4830.73518595
-PWY-6519	8 amino 7 oxononanoate biosynthesis I|g__Escherichia.s__Escherichia_coli	4671.65611613	1401.1283492
-PWY-6630	superpathway of L tyrosine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	3646.835713	285.14604184
-PWY-4041	&gamma; glutamyl cycle|g__Streptococcus.s__Streptococcus_mutans	6290.16065591	1117.44558635
-PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I	5215.0853726	15954.5753161
-PWY-6606	guanosine nucleotides degradation II	69150.8096064	28407.436596
-PWY-821	superpathway of sulfur amino acid biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	605.30096054	321.46343092
-DTDPRHAMSYN-PWY	dTDP L rhamnose biosynthesis I|unclassified	115.42932063	107.57051856
-PWY-1042	glycolysis IV |g__Escherichia.s__Escherichia_coli	9280.46633932	1707.90055461
-PWY-5857	ubiquinol 10 biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	4984.47122955	1383.69438173
-CALVIN-PWY	Calvin Benson Bassham cycle|g__Rhodobacter.s__Rhodobacter_sphaeroides	19758.4818475	2367.31570583
-VALSYN-PWY	L valine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	1313.44813159	2264.66366588
-CITRULBIO-PWY	L citrulline biosynthesis|g__Escherichia.s__Escherichia_coli	3193.75587109	404.18851436
-PWY66-389	phytol degradation|g__Staphylococcus.s__Staphylococcus_aureus	31048.8482071	3743.72936189
-PWYG-321	mycolate biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	20343.7219279	3516.10513107
-PWY-6936	seleno amino acid biosynthesis|unclassified	366.56642145	158.40233189
-PWY-821	superpathway of sulfur amino acid biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis	10880.1467764	2695.08502543
-PWY-5973	cis vaccenate biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	5847.77266898	1148.41098651
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	19124.013264	4424.63798302
-PWY-5044	purine nucleotides degradation I |unclassified	21.03371123	20.45207474
-PWY-5189	tetrapyrrole biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	411.4210711	299.49324176
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |unclassified	10.98819318	168.18827787
-LYSINE-DEG1-PWY	L lysine degradation XI 	781.34292537	282.9406151
-PWY-5656	mannosylglycerate biosynthesis I	3622.20287183	1450.09611655
-TRIGLSYN-PWY	diacylglycerol and triacylglycerol biosynthesis	459.46669738	5730.57246545
-PWY0-1479	tRNA processing|g__Pseudomonas.s__Pseudomonas_aeruginosa	792.95514307	102.76534398
-PWY-5044	purine nucleotides degradation I 	10420.2366543	1341.35103593
-PWY-6305	putrescine biosynthesis IV|g__Escherichia.s__Escherichia_coli	6740.35193129	648.4948647
-FERMENTATION-PWY	mixed acid fermentation|g__Escherichia.s__Escherichia_coli	5997.8931225	884.97628248
-PWY-5154	L arginine biosynthesis III 	30869.3410101	16353.9449689
-PWY-2941	L lysine biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	394.09016152	1676.22657658
-CALVIN-PWY	Calvin Benson Bassham cycle	56776.6216637	49672.7340142
-PWY-7400	L arginine biosynthesis IV |g__Streptococcus.s__Streptococcus_mutans	7613.58525921	1319.31787361
-PWY-5837	1,4 dihydroxy 2 naphthoate biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	8046.86968937	1435.9685915
-COA-PWY	coenzyme A biosynthesis I|g__Propionibacterium.s__Propionibacterium_acnes	603.40041396	4206.53019873
-HSERMETANA-PWY	L methionine biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	4321.48918735	1205.449507
-PWY-7539	6 hydroxymethyl dihydropterin diphosphate biosynthesis III |g__Clostridium.s__Clostridium_beijerinckii	147.7209348	372.96118264
-PWY-5910	superpathway of geranylgeranyldiphosphate biosynthesis I 	37359.0170025	11927.3787651
-PWY-621	sucrose degradation III |g__Staphylococcus.s__Staphylococcus_aureus	9123.91581318	1005.45271042
-PWY-7210	pyrimidine deoxyribonucleotides biosynthesis from CTP|unclassified	575.26530988	983.80350721
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II	51541.7555656	51310.1573214
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	453.21006187	1509.42967168
-GALACTUROCAT-PWY	D galacturonate degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	1156.96686758	380.14626344
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Escherichia.s__Escherichia_coli	3646.17709003	545.26508768
-PWY-7094	fatty acid salvage|g__Rhodobacter.s__Rhodobacter_sphaeroides	7897.55298654	1565.53820887
-TCA-GLYOX-BYPASS	superpathway of glyoxylate bypass and TCA|g__Acinetobacter.s__Acinetobacter_baumannii	185.68545967	5599.62773299
-VALDEG-PWY	L valine degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	1170.70807085	206.58408392
-PWY-6595	superpathway of guanosine nucleotides degradation |g__Rhodobacter.s__Rhodobacter_sphaeroides	2330.97689537	406.06864279
-FASYN-ELONG-PWY	fatty acid elongation    saturated|unclassified	600.38857461	748.75731035
-COMPLETE-ARO-PWY	superpathway of aromatic amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mutans	4818.72144821	309.11368979
-PWY-6588	pyruvate fermentation to acetone	27367.4468474	34308.830318
-PWY-1042	glycolysis IV |g__Staphylococcus.s__Staphylococcus_aureus	17137.1461621	1140.57464733
-PWY-7211	superpathway of pyrimidine deoxyribonucleotides de novo biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	9168.91672046	1312.86642906
-PWY-6876	isopropanol biosynthesis|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2357.4264539	1132.16522169
-PWY-5083	NAD NADH phosphorylation and dephosphorylation|unclassified	432.13034559	224.74599711
-PWY-5686	UMP biosynthesis	53309.5701728	41731.5236069
-RHAMCAT-PWY	L rhamnose degradation I|g__Escherichia.s__Escherichia_coli	2349.35391817	183.24292953
-PWY0-1586	peptidoglycan maturation |g__Streptococcus.s__Streptococcus_agalactiae	1592.44568748	65.20241807
-KDO-NAGLIPASYN-PWY	superpathway of 2 lipid A biosynthesis|g__Escherichia.s__Escherichia_coli	1538.62776566	363.40902033
-PWY0-1533	methylphosphonate degradation I	4749.8194641	355.13449231
-PWY-5656	mannosylglycerate biosynthesis I|g__Escherichia.s__Escherichia_coli	2355.56148346	548.99122975
-P241-PWY	coenzyme B biosynthesis	3419.91218295	1891.53810851
-UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis 	10581.0035732	7017.34013856
-P161-PWY	acetylene degradation|g__Acinetobacter.s__Acinetobacter_baumannii	251.74039493	7228.38372017
-PWY-6545	pyrimidine deoxyribonucleotides de novo biosynthesis III	52609.6265721	69843.8998653
-PWY-7663	gondoate biosynthesis |unclassified	623.9800982	867.35110658
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	8808.69286571	979.81451315
-PWY0-1277	3 phenylpropanoate and 3 propanoate degradation	3685.5879464	1129.41821136
-PWY-3841	folate transformations II	36857.4792785	36470.5347956
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	248.91691366	4349.20151743
-LACTOSECAT-PWY	lactose and galactose degradation I|unclassified	87.79734936	24.18333828
-PWY-5659	GDP mannose biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	863.47445643	319.60612649
-PWY-5104	L isoleucine biosynthesis IV	64889.1365621	46703.1380813
-PWY-6606	guanosine nucleotides degradation II|unclassified	144.81098785	560.75282166
-PWY-6901	superpathway of glucose and xylose degradation	35568.6184505	31009.0278639
-COA-PWY-1	coenzyme A biosynthesis II |g__Pseudomonas.s__Pseudomonas_aeruginosa	560.04987149	263.02518104
-PWY66-398	TCA cycle III |g__Staphylococcus.s__Staphylococcus_aureus	11696.145942	1206.67667542
-GLYCOGENSYNTH-PWY	glycogen biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	4499.0362216	299.46683906
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Neisseria.s__Neisseria_meningitidis	140.53759486	2264.77084787
-PWY0-42	2 methylcitrate cycle I	6756.67210724	13931.7156472
-PWY-5384	sucrose degradation IV |g__Streptococcus.s__Streptococcus_mutans	4384.64835055	720.60092988
-P165-PWY	superpathway of purines degradation in plants	5597.78759833	5604.28810525
-PWY-7208	superpathway of pyrimidine nucleobases salvage|g__Methanobrevibacter.s__Methanobrevibacter_smithii	921.45164361	306.61589504
-PWY-5022	4 aminobutanoate degradation V	31648.312754	24127.9390526
-PWY-6891	thiazole biosynthesis II |g__Escherichia.s__Escherichia_coli	3221.65606875	419.26006548
-PWY-6892	thiazole biosynthesis I |unclassified	61.77647311	98.04370396
-PWY-6531	mannitol cycle	6653.2796432	1619.62554188
-PWY-7187	pyrimidine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	4053.6619592	1018.25963453
-PEPTIDOGLYCANSYN-PWY	peptidoglycan biosynthesis I |g__Escherichia.s__Escherichia_coli	4875.90829991	950.71788827
-LEU-DEG2-PWY	L leucine degradation I	11366.6094176	13627.4965497
-ARGSYNBSUB-PWY	L arginine biosynthesis II 	55520.2713258	50204.8899672
-COA-PWY	coenzyme A biosynthesis I|g__Helicobacter.s__Helicobacter_pylori	104.19380047	1816.6979648
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3636.87222399	418.09266441
-PWY-5101	L isoleucine biosynthesis II|g__Methanobrevibacter.s__Methanobrevibacter_smithii	3980.7326746	640.55565546
-PWY-6969	TCA cycle V (2 oxoglutarate	59840.2143574	44936.6729067
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Rhodobacter.s__Rhodobacter_sphaeroides	2924.04620198	354.90745573
-PWY-5103	L isoleucine biosynthesis III|g__Clostridium.s__Clostridium_beijerinckii	224.53851178	1697.86947071
-PWY-5863	superpathway of phylloquinol biosynthesis|g__Escherichia.s__Escherichia_coli	4207.37946302	314.41884261
-PWY-6165	chorismate biosynthesis II 	5276.34145505	429.90575319
-PWY0-1586	peptidoglycan maturation |g__Pseudomonas.s__Pseudomonas_aeruginosa	3501.21748791	868.5907063
-PWY-5676	acetyl CoA fermentation to butanoate II|g__Rhodobacter.s__Rhodobacter_sphaeroides	5874.6035399	792.91330008
-ANAGLYCOLYSIS-PWY	glycolysis III |g__Escherichia.s__Escherichia_coli	4860.63424752	978.58381533
-PWY-6168	flavin biosynthesis III |g__Staphylococcus.s__Staphylococcus_aureus	5523.58540355	1045.46827973
-PWY-5505	L glutamate and L glutamine biosynthesis	31442.2930771	45000.6815163
-PWY-6527	stachyose degradation|g__Clostridium.s__Clostridium_beijerinckii	764.01971384	1052.6895098
-ARO-PWY	chorismate biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	5263.13393609	374.1095239
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Staphylococcus.s__Staphylococcus_epidermidis	8374.74233098	1554.00810636
-GLYCOLYSIS-TCA-GLYOX-BYPASS	superpathway of glycolysis, pyruvate dehydrogenase, TCA, and glyoxylate bypass|g__Escherichia.s__Escherichia_coli	4932.5916764	602.02994287
-PWY0-41	allantoin degradation IV 	3232.35942467	1608.66778244
-PWY-6936	seleno amino acid biosynthesis|g__Escherichia.s__Escherichia_coli	4102.78491181	748.31085471
-PWY-7229	superpathway of adenosine nucleotides de novo biosynthesis I|unclassified	159.59161298	114.1458621
-PWY-5173	superpathway of acetyl CoA biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	18480.6634703	2785.87274924
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Pseudomonas.s__Pseudomonas_aeruginosa	948.52738595	478.36749113
-PWY-5179	toluene degradation V  (via toluene cis diol)	1175.61963234	9321.336531
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	349.43910559	7055.45433319
-UBISYN-PWY	superpathway of ubiquinol 8 biosynthesis |g__Escherichia.s__Escherichia_coli	3920.08571032	614.25335798
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV	68214.1715988	67015.7385396
-PWY-6606	guanosine nucleotides degradation II|g__Pseudomonas.s__Pseudomonas_aeruginosa	1032.59943317	372.84160159
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Escherichia.s__Escherichia_coli	3409.73482773	485.42427431
-GLCMANNANAUT-PWY	superpathway of N acetylglucosamine, N acetylmannosamine and N acetylneuraminate degradation|g__Staphylococcus.s__Staphylococcus_aureus	10444.5548162	647.67757379
-PWY-7254	TCA cycle VII |g__Acinetobacter.s__Acinetobacter_baumannii	180.67018261	5498.98808262
-PWY-5104	L isoleucine biosynthesis IV|g__Pseudomonas.s__Pseudomonas_aeruginosa	408.16928585	111.00281469
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	10086.2549656	1747.9644646
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	7972.02928581	1121.45249158
-GLUCONEO-PWY	gluconeogenesis I|g__Staphylococcus.s__Staphylococcus_aureus	10828.0485857	1428.88156479
-PWY-5345	superpathway of L methionine biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	11207.1799701	1711.91148175
-POLYAMSYN-PWY	superpathway of polyamine biosynthesis I|g__Escherichia.s__Escherichia_coli	4745.34810349	784.21493314
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	925.81125974	570.67174576
-PWY-1269	CMP 3 deoxy D manno octulosonate biosynthesis I|unclassified	30.09666921	48.77425146
-PWY-7118	chitin degradation to ethanol|g__Rhodobacter.s__Rhodobacter_sphaeroides	6046.54253137	636.64858662
-TCA	TCA cycle I |g__Acinetobacter.s__Acinetobacter_baumannii	284.96860475	6906.20762341
-PWY-7391	isoprene biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	11616.5087003	1334.39196947
-PWY-7316	dTDP N acetylviosamine biosynthesis|g__Escherichia.s__Escherichia_coli	4005.75210448	412.13699564
-ARGININE-SYN4-PWY	L ornithine de novo  biosynthesis|g__Escherichia.s__Escherichia_coli	2273.15094985	140.31760827
-PWY-5659	GDP mannose biosynthesis	35919.1899299	68119.2231121
-PWY-7254	TCA cycle VII |g__Pseudomonas.s__Pseudomonas_aeruginosa	1655.22140749	354.88395649
-PWY-5920	superpathway of heme biosynthesis from glycine|g__Escherichia.s__Escherichia_coli	2964.79122797	625.36454015
-PWY4LZ-257	superpathway of fermentation |g__Staphylococcus.s__Staphylococcus_epidermidis	10665.8606956	2238.22101513
-NONOXIPENT-PWY	pentose phosphate pathway |g__Staphylococcus.s__Staphylococcus_epidermidis	10294.3435374	1967.44331442
-PWY-7234	inosine 5 phosphate biosynthesis III|g__Escherichia.s__Escherichia_coli	1727.41805854	653.30925974
-GALACTUROCAT-PWY	D galacturonate degradation I|g__Clostridium.s__Clostridium_beijerinckii	454.98799178	975.32040969
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	264.13154309	1150.6240638
-PWY-6837	fatty acid beta oxidation V |unclassified	45.14241998	23.13134216
-PWY-6386	UDP N acetylmuramoyl pentapeptide biosynthesis II |g__Streptococcus.s__Streptococcus_mutans	7140.0954565	1052.2868945
-PWY-5188	tetrapyrrole biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	658.20873845	335.98771892
-PWY-7288	fatty acid &beta; oxidation |g__Clostridium.s__Clostridium_beijerinckii	435.69049109	401.0186829
-PWY-7323	superpathway of GDP mannose derived O antigen building blocks biosynthesis|g__Escherichia.s__Escherichia_coli	2974.48607297	482.78573823
-DHGLUCONATE-PYR-CAT-PWY	glucose degradation 	93.51240467	405.19573172
-PWY66-409	superpathway of purine nucleotide salvage|unclassified	247.96629255	228.19301312
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	19608.1266453	2773.60052861
-PWY-6307	L tryptophan degradation X |g__Escherichia.s__Escherichia_coli	3229.83784609	1060.9247271
-NONOXIPENT-PWY	pentose phosphate pathway |g__Staphylococcus.s__Staphylococcus_aureus	10839.6180743	966.63818505
-PWY-7431	aromatic biogenic amine degradation |g__Pseudomonas.s__Pseudomonas_aeruginosa	145.55114505	234.28437745
-HISDEG-PWY	L histidine degradation I|unclassified	2.70795918	145.22782483
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I	54933.356299	49607.6321421
-ORNDEG-PWY	superpathway of ornithine degradation|g__Escherichia.s__Escherichia_coli	6961.8413373	1879.86262792
-PWY-6690	cinnamate and 3 hydroxycinnamate degradation to 2 oxopent 4 enoate	1692.49536281	301.73944072
-PWY-6892	thiazole biosynthesis I 	15649.7578417	15009.0695524
-NONOXIPENT-PWY	pentose phosphate pathway |g__Escherichia.s__Escherichia_coli	9464.69522759	1886.37528996
-PWY-6313	serotonin degradation|unclassified	16.87667991	69.54524508
-LACTOSECAT-PWY	lactose and galactose degradation I|g__Clostridium.s__Clostridium_beijerinckii	2006.35858615	2099.76992642
-PWY0-1296	purine ribonucleosides degradation|unclassified	276.90113256	347.60109499
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate	42798.291242	39085.7539249
-PWY-7242	D fructuronate degradation|g__Clostridium.s__Clostridium_beijerinckii	910.41001378	1388.39562098
-GLYOXYLATE-BYPASS	glyoxylate cycle|g__Pseudomonas.s__Pseudomonas_aeruginosa	363.80526335	179.62635335
-PWY-4321	L glutamate degradation IV|g__Escherichia.s__Escherichia_coli	6548.55025559	955.66999352
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	9125.10752332	1666.35492196
-CITRULBIO-PWY	L citrulline biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	13871.3041406	1491.85885316
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II	68711.2457207	84604.3874667
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Acinetobacter.s__Acinetobacter_baumannii	156.48098182	4734.37210915
-ECASYN-PWY	enterobacterial common antigen biosynthesis|g__Escherichia.s__Escherichia_coli	3268.13442342	466.91474604
-HEMESYN2-PWY	heme biosynthesis II |g__Escherichia.s__Escherichia_coli	4079.20963509	1275.500673
-PWY-5994	palmitate biosynthesis I |g__Escherichia.s__Escherichia_coli	6000.2614617	634.54389648
-PANTO-PWY	phosphopantothenate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	13406.4587789	2426.44185156
-URSIN-PWY	ureide biosynthesis	9875.14304473	8599.32038015
-PWY0-1296	purine ribonucleosides degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	9253.61491927	2562.74998651
-VALSYN-PWY	L valine biosynthesis|g__Escherichia.s__Escherichia_coli	6049.43426736	1792.31123454
-PWY-5856	ubiquinol 9 biosynthesis |g__Escherichia.s__Escherichia_coli	3548.27701939	521.800823
-PWY-7392	taxadiene biosynthesis 	22625.2097865	36374.6682186
-CATECHOL-ORTHO-CLEAVAGE-PWY	catechol degradation to &beta; ketoadipate	7165.58180672	5645.17339742
-PWY-5103	L isoleucine biosynthesis III|g__Escherichia.s__Escherichia_coli	4968.35447204	1346.85557241
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	8106.31589531	957.65338279
-ORNARGDEG-PWY	superpathway of L arginine and L ornithine degradation	17810.1278588	14882.8847917
-PWY-7007	methyl ketone biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	725.61644373	462.44392628
-PWY-6168	flavin biosynthesis III |g__Rhodobacter.s__Rhodobacter_sphaeroides	954.65236598	215.54352842
-PWY-5188	tetrapyrrole biosynthesis I |g__Staphylococcus.s__Staphylococcus_aureus	12845.9781795	1606.07699162
-PYRIDNUCSYN-PWY	NAD biosynthesis I |g__Escherichia.s__Escherichia_coli	2791.81253469	609.53890601
-P461-PWY	hexitol fermentation to lactate, formate, ethanol and acetate|g__Escherichia.s__Escherichia_coli	9335.92303474	865.5506723
-PWY-5005	biotin biosynthesis II	25283.3880954	12157.8518146
-PWY-7111	pyruvate fermentation to isobutanol |g__Deinococcus.s__Deinococcus_radiodurans	93.89885068	34988.120904
-ALLANTOINDEG-PWY	superpathway of allantoin degradation in yeast|g__Escherichia.s__Escherichia_coli	3017.907008	570.80020627
-GOLPDLCAT-PWY	superpathway of glycerol degradation to 1,3 propanediol	21935.5868399	16932.6819524
-THISYN-PWY	superpathway of thiamin diphosphate biosynthesis I	7788.86534804	20261.003578
-PWY-6676	superpathway of sulfide oxidation |g__Rhodobacter.s__Rhodobacter_sphaeroides	8761.42497609	1111.89798241
-PWY-6471	peptidoglycan biosynthesis IV |g__Staphylococcus.s__Staphylococcus_epidermidis	10029.2272445	2166.27725473
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	19563.4778121	3219.37136686
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	7323.11601452	1249.80609199
-PWY-6318	L phenylalanine degradation IV |g__Acinetobacter.s__Acinetobacter_baumannii	243.55293845	8252.63198449
-PWY-5690	TCA cycle II |g__Rhodobacter.s__Rhodobacter_sphaeroides	14653.9269417	1815.78529661
-TCA	TCA cycle I |g__Pseudomonas.s__Pseudomonas_aeruginosa	1915.82989294	356.0026723
-PWY-7204	pyridoxal 5 phosphate salvage II |g__Escherichia.s__Escherichia_coli	5043.16592728	1764.28468097
-PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type|unclassified	73.08564156	357.90668538
-TYRFUMCAT-PWY	L tyrosine degradation I	4422.44827342	7790.34471729
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)|unclassified	575.34148597	654.60842608
-P185-PWY	formaldehyde assimilation III |g__Clostridium.s__Clostridium_beijerinckii	591.46858186	631.8759715
-ENTBACSYN-PWY	enterobactin biosynthesis|g__Escherichia.s__Escherichia_coli	4288.553753	1235.42394713
-PWY0-1061	superpathway of L alanine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	663.19798123	223.09410291
-PWY-5136	fatty acid &beta; oxidation II 	51964.5875306	111356.3051
-PWY-6608	guanosine nucleotides degradation III|g__Escherichia.s__Escherichia_coli	11056.3109099	1891.32577037
-POLYISOPRENSYN-PWY	polyisoprenoid biosynthesis 	36953.2998117	27577.2974421
-PWY-6897	thiamin salvage II|g__Escherichia.s__Escherichia_coli	2220.45202158	529.99465096
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	595.30096539	1204.72237146
-PWY-5022	4 aminobutanoate degradation V|g__Acinetobacter.s__Acinetobacter_baumannii	219.04920185	5352.13275606
-PWY-6608	guanosine nucleotides degradation III|g__Acinetobacter.s__Acinetobacter_baumannii	66.28003314	6565.15187887
-PWY-621	sucrose degradation III 	30158.1379544	15461.4536019
-PWY-7663	gondoate biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	26214.6695562	3409.69793694
-PWY66-422	D galactose degradation V |g__Clostridium.s__Clostridium_beijerinckii	662.37552525	927.8881445
-PWY-5347	superpathway of L methionine biosynthesis |g__Methanobrevibacter.s__Methanobrevibacter_smithii	2887.64073082	336.98709522
-PWY-6700	queuosine biosynthesis|g__Escherichia.s__Escherichia_coli	2461.28434712	510.4801703
-VALSYN-PWY	L valine biosynthesis|unclassified	776.19346604	604.13438494
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Clostridium.s__Clostridium_beijerinckii	202.80113832	727.54151724
-PWY-6151	S adenosyl L methionine cycle I|g__Staphylococcus.s__Staphylococcus_aureus	13201.1381575	1258.08598177
-PWY-5420	catechol degradation II 	39.0794444	502.13894584
-PENTOSE-P-PWY	pentose phosphate pathway|unclassified	29.82314877	164.88557397
-PWY-5667	CDP diacylglycerol biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	8081.99915985	1153.07830842
-PYRIDOXSYN-PWY	pyridoxal 5 phosphate biosynthesis I|unclassified	156.62791401	165.52457684
-LACTOSECAT-PWY	lactose and galactose degradation I|g__Staphylococcus.s__Staphylococcus_epidermidis	16429.976487	2786.82770478
-PWY-7560	methylerythritol phosphate pathway II|unclassified	190.48310055	616.88123936
-SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Pseudomonas.s__Pseudomonas_aeruginosa	1631.30013568	588.56421905
-PENTOSE-P-PWY	pentose phosphate pathway|g__Staphylococcus.s__Staphylococcus_aureus	9917.04733648	909.67194318
-PWY-6277	superpathway of 5 aminoimidazole ribonucleotide biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	1759.45401497	633.23408091
-PROTOCATECHUATE-ORTHO-CLEAVAGE-PWY	protocatechuate degradation II |g__Rhodobacter.s__Rhodobacter_sphaeroides	165.24738702	226.99655206
-PWY-6609	adenine and adenosine salvage III|g__Escherichia.s__Escherichia_coli	8086.2797516	1548.49159808
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	6981.3146637	790.12246772
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I	49428.5022579	50388.6154894
-PWY-5863	superpathway of phylloquinol biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	9512.55678532	1093.7215706
-PWY-6124	inosine 5 phosphate biosynthesis II	38534.182136	38446.7756491
-METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Staphylococcus.s__Staphylococcus_aureus	12280.465243	2371.78106758
-PWY-181	photorespiration|g__Clostridium.s__Clostridium_beijerinckii	372.19346565	933.76358705
-NAGLIPASYN-PWY	lipid IVA biosynthesis	5520.7704657	2737.56549181
-PWY-6897	thiamin salvage II|g__Propionibacterium.s__Propionibacterium_acnes	212.94837857	3057.32042924
-PANTOSYN-PWY	pantothenate and coenzyme A biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	10115.9957215	1019.69423363
-PWY-7664	oleate biosynthesis IV 	52926.1850638	53480.347015
-PWY-6486	D galacturonate degradation II	30.33074635	88.9646262
-PWY-7111	pyruvate fermentation to isobutanol |g__Clostridium.s__Clostridium_beijerinckii	1612.01101259	3295.93225794
-RUMP-PWY	formaldehyde oxidation I	26275.6097836	7100.35175529
-PWY0-1297	superpathway of purine deoxyribonucleosides degradation|g__Streptococcus.s__Streptococcus_mutans	8020.92418793	1285.97453274
-PWY-5345	superpathway of L methionine biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	916.0792468	393.17103271
-P185-PWY	formaldehyde assimilation III |g__Staphylococcus.s__Staphylococcus_epidermidis	9569.89354877	1647.26046611
-PWY-5855	ubiquinol 7 biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	4984.47122955	1383.69438173
-HSERMETANA-PWY	L methionine biosynthesis III|g__Staphylococcus.s__Staphylococcus_epidermidis	9246.68833006	1725.38533095
-PWY-6122	5 aminoimidazole ribonucleotide biosynthesis II|g__Acinetobacter.s__Acinetobacter_baumannii	248.91691366	4349.20151743
-RIBOSYN2-PWY	flavin biosynthesis I |g__Helicobacter.s__Helicobacter_pylori	247.15147457	1731.90445131
-PWY-5837	1,4 dihydroxy 2 naphthoate biosynthesis I	23957.087909	9628.25846059
-NAGLIPASYN-PWY	lipid IVA biosynthesis|g__Escherichia.s__Escherichia_coli	3511.50997388	680.04376881
-GLYCOLYSIS	glycolysis I |g__Escherichia.s__Escherichia_coli	4323.58176194	987.03610628
-PWY-7199	pyrimidine deoxyribonucleosides salvage	41887.0062266	33242.3705965
-HSERMETANA-PWY	L methionine biosynthesis III|g__Pseudomonas.s__Pseudomonas_aeruginosa	789.1704156	384.35614541
-PWY-5723	Rubisco shunt	42454.6276957	14259.8087262
-FASYN-ELONG-PWY	fatty acid elongation    saturated	66225.7673823	60608.2394302
-ARGORNPROST-PWY	arginine, ornithine and proline interconversion|g__Staphylococcus.s__Staphylococcus_aureus	18116.4399933	2128.77954901
-PWY-5971	palmitate biosynthesis II 	50235.7403127	55203.9876165
-PWY0-1296	purine ribonucleosides degradation|g__Clostridium.s__Clostridium_beijerinckii	150.05359057	525.37143717
-PWY-7159	chlorophyllide a biosynthesis III |unclassified	38.79136885	9.49926287
-PWY0-881	superpathway of fatty acid biosynthesis I 	45452.7407272	29878.6160668
-ARO-PWY	chorismate biosynthesis I|g__Staphylococcus.s__Staphylococcus_aureus	9381.34167444	667.3706165
-PWY-2942	L lysine biosynthesis III|g__Methanobrevibacter.s__Methanobrevibacter_smithii	2684.68361975	271.52394734
-METHGLYUT-PWY	superpathway of methylglyoxal degradation|g__Escherichia.s__Escherichia_coli	7286.65971768	427.03365442
-GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|unclassified	29.78784852	230.35574419
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I	46982.0159288	51973.364626
-PWY-6876	isopropanol biosynthesis	4128.52826297	1526.06022875
-PWY-6936	seleno amino acid biosynthesis|g__Streptococcus.s__Streptococcus_mutans	8208.85491889	1754.54694558
-HEME-BIOSYNTHESIS-II	heme biosynthesis I 	39940.8262585	27656.0128681
-PWY0-1296	purine ribonucleosides degradation|g__Streptococcus.s__Streptococcus_agalactiae	341.50455981	468.2326425
-CITRULBIO-PWY	L citrulline biosynthesis	34861.8799263	26689.3158827
-PWY0-1298	superpathway of pyrimidine deoxyribonucleosides degradation|g__Staphylococcus.s__Staphylococcus_epidermidis	9967.50930288	1609.23799261
-COA-PWY-1	coenzyme A biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	1003.39365894	368.93829386
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |g__Staphylococcus.s__Staphylococcus_epidermidis	4016.04983122	3481.08509362
-PWY-7115	C4 photosynthetic carbon assimilation cycle, NAD ME type	26102.4397056	23109.1757321
-PWY-1042	glycolysis IV |g__Rhodobacter.s__Rhodobacter_sphaeroides	18400.6470402	2382.23248699
-PWY490-3	nitrate reduction VI |g__Deinococcus.s__Deinococcus_radiodurans	162.54875973	24879.5652836
-PWY66-400	glycolysis VI |g__Escherichia.s__Escherichia_coli	5039.65917968	883.08306277
-PWY-7279	aerobic respiration II  (yeast)|g__Pseudomonas.s__Pseudomonas_aeruginosa	4729.73627872	560.08292772
-GLYCOLYSIS-E-D	superpathway of glycolysis and Entner Doudoroff|g__Escherichia.s__Escherichia_coli	3925.18448656	691.87889193
-PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Escherichia.s__Escherichia_coli	6176.06243791	1655.27459744
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |g__Escherichia.s__Escherichia_coli	3892.93474781	655.04524954
-NONOXIPENT-PWY	pentose phosphate pathway |unclassified	797.60559667	307.94971919
-PWY-7007	methyl ketone biosynthesis|g__Acinetobacter.s__Acinetobacter_baumannii	211.51665213	13266.1713602
-PWY-5347	superpathway of L methionine biosynthesis |g__Rhodobacter.s__Rhodobacter_sphaeroides	9970.05767457	1663.33085073
-PWY-5918	superpathay of heme biosynthesis from glutamate|g__Staphylococcus.s__Staphylococcus_epidermidis	9467.76138818	1263.66225468
-PWY-5104	L isoleucine biosynthesis IV|g__Staphylococcus.s__Staphylococcus_aureus	14186.7376806	1227.25984486
-PWY-7221	guanosine ribonucleotides de novo biosynthesis|g__Escherichia.s__Escherichia_coli	5785.98940136	694.28923369
-THRESYN-PWY	superpathway of L threonine biosynthesis|g__Streptococcus.s__Streptococcus_agalactiae	451.26693608	118.13848862
-PWY-7222	guanosine deoxyribonucleotides de novo biosynthesis II|g__Deinococcus.s__Deinococcus_radiodurans	233.01772842	21431.4970511
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|g__Pseudomonas.s__Pseudomonas_aeruginosa	540.65287976	168.32955315
-PWY-6692	Fe oxidation|g__Pseudomonas.s__Pseudomonas_aeruginosa	5267.87355288	2412.43460526
-METHGLYUT-PWY	superpathway of methylglyoxal degradation|unclassified	112.17208644	110.92868734
-ENTBACSYN-PWY	enterobactin biosynthesis	17038.5098875	15521.8877222
-PWY-6124	inosine 5 phosphate biosynthesis II|g__Clostridium.s__Clostridium_beijerinckii	342.25202047	442.44788053
-PWY-7288	fatty acid &beta; oxidation |g__Rhodobacter.s__Rhodobacter_sphaeroides	6138.39521287	1907.81596661
-PWY0-881	superpathway of fatty acid biosynthesis I |g__Rhodobacter.s__Rhodobacter_sphaeroides	13870.4304447	1484.39665394
-PWY-6471	peptidoglycan biosynthesis IV |g__Streptococcus.s__Streptococcus_mutans	7762.60248237	602.40192193
-PWY-5531	chlorophyllide a biosynthesis II |g__Rhodobacter.s__Rhodobacter_sphaeroides	4564.85282156	305.95144423
-1CMET2-PWY	N10 formyl tetrahydrofolate biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	9666.83706939	1350.30343021
-ILEUSYN-PWY	L isoleucine biosynthesis I |g__Acinetobacter.s__Acinetobacter_baumannii	506.19386084	11724.8392857
-GLYCOLYSIS-TCA-GLYOX-BYPASS	superpathway of glycolysis, pyruvate dehydrogenase, TCA, and glyoxylate bypass	36626.2883501	48338.0664044
-PPGPPMET-PWY	ppGpp biosynthesis	44973.492588	34850.0873219
-PWY-5417	catechol degradation III 	6022.47300648	7321.53949818
-PWY-3661	glycine betaine degradation I|g__Rhodobacter.s__Rhodobacter_sphaeroides	2692.02224716	367.03845135
-PWY-7663	gondoate biosynthesis |g__Pseudomonas.s__Pseudomonas_aeruginosa	3996.48378193	745.87090675
-PWY0-42	2 methylcitrate cycle I|g__Pseudomonas.s__Pseudomonas_aeruginosa	608.37208118	118.40719672
-PPGPPMET-PWY	ppGpp biosynthesis|g__Staphylococcus.s__Staphylococcus_epidermidis	14018.6057158	1568.57579023
-PWY-5676	acetyl CoA fermentation to butanoate II|g__Staphylococcus.s__Staphylococcus_aureus	10235.5572301	1725.05561337
-HSERMETANA-PWY	L methionine biosynthesis III|g__Rhodobacter.s__Rhodobacter_sphaeroides	23605.4060381	3344.42821467
-PWY-6692	Fe oxidation|g__Rhodobacter.s__Rhodobacter_sphaeroides	24685.5710866	4546.12191382
-PWY-4702	phytate degradation I|g__Escherichia.s__Escherichia_coli	6000.15557122	966.65115879
-PWY-5989	stearate biosynthesis II 	53603.1902949	55311.553402
-LYSINE-AMINOAD-PWY	L lysine biosynthesis IV	30.65393268	33.42290902
-PWY-6936	seleno amino acid biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	15463.4809931	2543.34947823
-PWY-6823	molybdenum cofactor biosynthesis|g__Escherichia.s__Escherichia_coli	2695.90427411	363.8754003
-PWY-3781	aerobic respiration I 	146949.349575	137931.175616
-PWY-7664	oleate biosynthesis IV |g__Staphylococcus.s__Staphylococcus_aureus	6208.22400634	1214.56040809
-PWY-5103	L isoleucine biosynthesis III|g__Staphylococcus.s__Staphylococcus_epidermidis	13449.8892959	2414.37510496
-ARGSYN-PWY	L arginine biosynthesis I 	59551.7231502	53875.0520512
-PWY-5100	pyruvate fermentation to acetate and lactate II|unclassified	107.48685215	457.06676419
-PWY0-1319	CDP diacylglycerol biosynthesis II|g__Staphylococcus.s__Staphylococcus_epidermidis	8081.99915985	1153.07830842
-PWY-6936	seleno amino acid biosynthesis	80744.5589229	49331.2357494
-PWY-6595	superpathway of guanosine nucleotides degradation |unclassified	45.52473022	80.5890392
-PWY-4984	urea cycle|g__Rhodobacter.s__Rhodobacter_sphaeroides	4086.12848085	705.91143985
-PWY-6263	superpathway of menaquinol 8 biosynthesis II	250.59205125	20182.148609
-PWY-7315	dTDP N acetylthomosamine biosynthesis	4747.95216611	522.80785368
-PWY-841	superpathway of purine nucleotides de novo biosynthesis I|unclassified	144.13360976	212.03272375
-PWY-6892	thiazole biosynthesis I |g__Escherichia.s__Escherichia_coli	3567.54141386	615.48749584
-PWY-5695	urate biosynthesis inosine 5 phosphate degradation|g__Staphylococcus.s__Staphylococcus_aureus	16670.3774341	2305.47446453
-PWY66-201	nicotine degradation IV	4241.76462868	2892.776345
-TCA	TCA cycle I |g__Rhodobacter.s__Rhodobacter_sphaeroides	18424.7962902	2316.21242111
-UDPNAGSYN-PWY	UDP N acetyl D glucosamine biosynthesis I|g__Pseudomonas.s__Pseudomonas_aeruginosa	840.16369785	249.7267861
-PWY-5180	toluene degradation I  (via o cresol)|unclassified	19.49876745	200.31522527
-PWY-1042	glycolysis IV |g__Clostridium.s__Clostridium_beijerinckii	1343.42939312	1926.90327212
-PWY-7196	superpathway of pyrimidine ribonucleosides salvage|g__Staphylococcus.s__Staphylococcus_epidermidis	10073.8244927	1546.31425608
-PWY0-1415	superpathway of heme biosynthesis from uroporphyrinogen III|g__Staphylococcus.s__Staphylococcus_aureus	8705.89763885	600.02805515
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |unclassified	37.18478493	147.52475666
-PWY-3001	superpathway of L isoleucine biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	12884.6555791	2854.75315107
-TCA	TCA cycle I |g__Escherichia.s__Escherichia_coli	8232.47905846	1001.97860516
-PWY-5899	superpathway of menaquinol 13 biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	7642.0982759	298.12276962
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Staphylococcus.s__Staphylococcus_epidermidis	13221.0080125	2711.21045708
-PWY-6151	S adenosyl L methionine cycle I|g__Clostridium.s__Clostridium_beijerinckii	251.75284416	1086.14991579
-PWY-6126	superpathway of adenosine nucleotides de novo biosynthesis II|unclassified	179.82003432	132.15550233
-GLYCOL-GLYOXDEG-PWY	superpathway of glycol metabolism and degradation	12508.1576731	6820.56175662
-HEXITOLDEGSUPER-PWY	superpathway of hexitol degradation 	34692.2314932	20579.3277306
-PWY-5189	tetrapyrrole biosynthesis II |g__Clostridium.s__Clostridium_beijerinckii	138.0988629	472.69095626
-PWY66-389	phytol degradation|g__Deinococcus.s__Deinococcus_radiodurans	319.70501558	40965.6950918
-PWY-2941	L lysine biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	4856.21523795	729.8299052
-PWY-6608	guanosine nucleotides degradation III|g__Deinococcus.s__Deinococcus_radiodurans	134.26874627	32028.5719751
-PWY-7204	pyridoxal 5 phosphate salvage II |g__Rhodobacter.s__Rhodobacter_sphaeroides	2309.83026388	372.76420163
-PWY-6147	6 hydroxymethyl dihydropterin diphosphate biosynthesis I|g__Streptococcus.s__Streptococcus_mutans	931.05894703	1332.07582533
-PWY-5028	L histidine degradation II|g__Pseudomonas.s__Pseudomonas_aeruginosa	477.61051891	130.76109347
-PWY66-409	superpathway of purine nucleotide salvage	44314.5827026	52770.6821373
-HOMOSER-METSYN-PWY	L methionine biosynthesis I|g__Clostridium.s__Clostridium_beijerinckii	294.00772021	1466.05059653
-PWY-5103	L isoleucine biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	5952.11637562	1066.94142577
-SALVADEHYPOX-PWY	adenosine nucleotides degradation II|g__Rhodobacter.s__Rhodobacter_sphaeroides	9879.58699527	1620.66734552
-PWY-7159	chlorophyllide a biosynthesis III 	22119.1216626	4923.54292722
-PWY-5121	superpathway of geranylgeranyl diphosphate biosynthesis II |g__Escherichia.s__Escherichia_coli	4699.75810781	751.45239866
-ARGSYNBSUB-PWY	L arginine biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	14414.3418197	2378.79066908
-PWY-5690	TCA cycle II |unclassified	526.38977911	425.79343272
-PWY-6313	serotonin degradation	5247.96870404	65941.7685019
-PWY-6859	all trans farnesol biosynthesis|g__Streptococcus.s__Streptococcus_mutans	3973.65462199	534.5250147
-PWY-6387	UDP N acetylmuramoyl pentapeptide biosynthesis I |g__Pseudomonas.s__Pseudomonas_aeruginosa	501.9976131	144.15016675
-PROTOCATECHUATE-ORTHO-CLEAVAGE-PWY	protocatechuate degradation II 	6292.09468602	12807.4938854
-PWY-6703	preQ0 biosynthesis	37565.1008815	17784.5129603
-PWY-6163	chorismate biosynthesis from 3 dehydroquinate|unclassified	421.30790951	533.47920349
-PWY-5747	2 methylcitrate cycle II|g__Pseudomonas.s__Pseudomonas_aeruginosa	385.74914912	118.40719672
-PWY-7219	adenosine ribonucleotides de novo biosynthesis|g__Escherichia.s__Escherichia_coli	3946.91850949	661.69545788
-HISTSYN-PWY	L histidine biosynthesis|g__Streptococcus.s__Streptococcus_mutans	3561.43378245	606.41844732
-PENTOSE-P-PWY	pentose phosphate pathway|g__Staphylococcus.s__Staphylococcus_epidermidis	9462.89698214	1831.25439958
-PWY-6859	all trans farnesol biosynthesis|g__Staphylococcus.s__Staphylococcus_aureus	14277.3621011	1366.50141251
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis 	56870.8142276	54874.8803577
-PWY-6608	guanosine nucleotides degradation III|g__Pseudomonas.s__Pseudomonas_aeruginosa	1032.59943317	372.84160159
-PWY-5100	pyruvate fermentation to acetate and lactate II|g__Helicobacter.s__Helicobacter_pylori	355.33888788	4541.47592864
-PWY-6385	peptidoglycan biosynthesis III |g__Clostridium.s__Clostridium_beijerinckii	384.38435174	980.83887227
-PWY-5097	L lysine biosynthesis VI|g__Escherichia.s__Escherichia_coli	3428.28909309	502.92476772
-PWY5F9-12	biphenyl degradation	1666.7819219	984.30988678
-PWY-6121	5 aminoimidazole ribonucleotide biosynthesis I|unclassified	93.65113763	248.24838282
-NAD-BIOSYNTHESIS-II	NAD salvage pathway II|g__Acinetobacter.s__Acinetobacter_baumannii	311.86743823	5092.62189788
-PWY-7198	pyrimidine deoxyribonucleotides de novo biosynthesis IV|unclassified	497.58534601	921.96101244
-PWY0-1479	tRNA processing|unclassified	53.90015148	65.20708513
-PWY-5103	L isoleucine biosynthesis III|g__Staphylococcus.s__Staphylococcus_aureus	12414.2746766	1786.69711145
-PWY-4041	&gamma; glutamyl cycle	30349.4757439	14586.7772214
-COLANSYN-PWY	colanic acid building blocks biosynthesis|unclassified	16.96524789	206.11126006
-PWY-7357	thiamin formation from pyrithiamine and oxythiamine |g__Clostridium.s__Clostridium_beijerinckii	367.13964071	1248.77414621
-PWY-5791	1,4 dihydroxy 2 naphthoate biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	8931.57710009	1036.87621513
-PWY0-1586	peptidoglycan maturation |g__Escherichia.s__Escherichia_coli	18753.0219821	2866.53948432
-PWY-5181	toluene degradation III  (via p cresol)	947.6822035	8800.26352918
-PWY-5659	GDP mannose biosynthesis|g__Escherichia.s__Escherichia_coli	2998.91987725	599.8717343
-PWY-5861	superpathway of demethylmenaquinol 8 biosynthesis|g__Escherichia.s__Escherichia_coli	3430.13320251	441.24808359
-PWY-7220	adenosine deoxyribonucleotides de novo biosynthesis II|g__Streptococcus.s__Streptococcus_mutans	8808.69286571	979.81451315
-THISYNARA-PWY	superpathway of thiamin diphosphate biosynthesis III |unclassified	27.4597085	4.34882378
-PWY0-862	 dodec 5 enoate biosynthesis|g__Rhodobacter.s__Rhodobacter_sphaeroides	15969.8171928	2909.26805533
-PWY-4242	pantothenate and coenzyme A biosynthesis III|g__Streptococcus.s__Streptococcus_mutans	1835.16841428	1235.31350955
-PWY-7389	superpathway of anaerobic energy metabolism 	1843.01379918	11881.3874654
-SER-GLYSYN-PWY	superpathway of L serine and glycine biosynthesis I|g__Escherichia.s__Escherichia_coli	3369.37968613	610.39579238
-PWY-5138	unsaturated, even numbered fatty acid &beta; oxidation|g__Rhodobacter.s__Rhodobacter_sphaeroides	11928.9247442	3378.73427795
-PWY-7388	octanoyl [acyl carrier protein] biosynthesis |unclassified	188.12545302	274.49677967
-PWY-724	superpathway of L lysine, L threonine and L methionine biosynthesis II	41547.2317349	36974.2649936
-PWY-5347	superpathway of L methionine biosynthesis |g__Streptococcus.s__Streptococcus_mutans	6303.81343752	1187.03506311
-POLYAMSYN-PWY	superpathway of polyamine biosynthesis I|unclassified	91.63013862	13.26838762
-PWY-5188	tetrapyrrole biosynthesis I |g__Escherichia.s__Escherichia_coli	3934.45905699	738.40173753
-DENITRIFICATION-PWY	nitrate reduction I 	9285.14991359	6301.73393977
-HISDEG-PWY	L histidine degradation I	21504.3758787	24267.6604905
-PWY-6467	Kdo transfer to lipid IVA III |g__Escherichia.s__Escherichia_coli	919.96428358	332.28938386
-PWY-5989	stearate biosynthesis II |g__Staphylococcus.s__Staphylococcus_aureus	6689.02064509	1275.28632006
-NONMEVIPP-PWY	methylerythritol phosphate pathway I	21604.2127381	41467.563069
-PWY-6595	superpathway of guanosine nucleotides degradation 	63659.5681895	24658.3886983
-PWY-7400	L arginine biosynthesis IV 	59561.9426266	54069.712201
-PWY0-1061	superpathway of L alanine biosynthesis|g__Clostridium.s__Clostridium_beijerinckii	469.04005117	1041.74348067
-LEU-DEG2-PWY	L leucine degradation I|g__Pseudomonas.s__Pseudomonas_aeruginosa	292.84136182	209.12320819
-BIOTIN-BIOSYNTHESIS-PWY	biotin biosynthesis I	38795.0783858	31607.4904903
-ARG+POLYAMINE-SYN	superpathway of arginine and polyamine biosynthesis|g__Escherichia.s__Escherichia_coli	3860.50746504	701.87663984
-PWY-5028	L histidine degradation II	7261.31861705	8974.70796842
-ASPASN-PWY	superpathway of L aspartate and L asparagine biosynthesis|unclassified	135.51257994	180.94686582
-HEME-BIOSYNTHESIS-II	heme biosynthesis I |g__Escherichia.s__Escherichia_coli	4444.06370581	1229.13243631
-PWY-6565	superpathway of polyamine biosynthesis III	307.24774533	5432.67232731
-PWY-4221	pantothenate and coenzyme A biosynthesis II 	6446.80589887	3651.48403549
-PWY-6282	palmitoleate biosynthesis I  dodec 5 enoate)	54100.9348987	54847.3411852