From 3f5fae29e614d96590f7731d045061fd9ea649e7 Mon Sep 17 00:00:00 2001 From: Svetlana Volkova Date: Mon, 9 Nov 2020 10:16:29 +0100 Subject: [PATCH 1/3] build: Add windows executor for python unittests --- .circleci/config.yml | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9e29acb0..4ac8f453 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,8 @@ orbs: win: circleci/windows@2.2.0 jobs: - #Linting and unit test + + # Linting and unit test unittest: executor: python/default steps: @@ -14,7 +15,6 @@ jobs: name: Install Python Dependencies command : | pip install -r requirements.txt - - save_cache: key: deps1-{{ .Branch }}-{{ checksum "requirements.txt" }} paths: @@ -24,7 +24,29 @@ jobs: command: | python3 -m unittest tests/test_linting.py flake8 --max-line-length=120 --ignore=PT009 + + # The same as unittest but for Windows machine + win-unittest: + executor: + name: win/default + shell: powershell.exe + steps: + - checkout + - run: + name: Install Python Dependencies + command : | + pip install -r requirements.txt + - save_cache: + key: deps2-{{ .Branch }}-{{ checksum "requirements.txt" }} + paths: + - "venv" + - run: + name : Run Unit Tests + command: | + python3 -m unittest tests/test_linting.py + flake8 --max-line-length=120 --ignore=PT009 + #Linux integration Integration-on-linux: executor: python/default @@ -96,6 +118,7 @@ workflows: main: jobs: - unittest + - win-unittest #- Integration-on-linux #- Integration-on-windows #- Integration-on-macos \ No newline at end of file From 4c99ef92b306d0d41960751a00284f2b7b87817f Mon Sep 17 00:00:00 2001 From: Svetlana Volkova Date: Mon, 9 Nov 2020 10:20:03 +0100 Subject: [PATCH 2/3] build: Add windows executor for python unittests --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4ac8f453..8a12a15f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ jobs: - run: name : Run Unit Tests command: | - python3 -m unittest tests/test_linting.py + python -m unittest tests/test_linting.py flake8 --max-line-length=120 --ignore=PT009 # The same as unittest but for Windows machine @@ -44,7 +44,7 @@ jobs: - run: name : Run Unit Tests command: | - python3 -m unittest tests/test_linting.py + python -m unittest tests/test_linting.py flake8 --max-line-length=120 --ignore=PT009 #Linux integration From cfd869239a61ec83e2bafe6397663ae4b0f28d08 Mon Sep 17 00:00:00 2001 From: cvitlanko Date: Wed, 20 Jan 2021 18:51:28 +0100 Subject: [PATCH 3/3] AUT-574 --- examples/FBA_FVA_from_measured_fluxes.ipynb | 927 ++++++++++ examples/data/long2019_tidy.csv | 1765 +++++++++++++++++++ 2 files changed, 2692 insertions(+) create mode 100644 examples/FBA_FVA_from_measured_fluxes.ipynb create mode 100644 examples/data/long2019_tidy.csv diff --git a/examples/FBA_FVA_from_measured_fluxes.ipynb b/examples/FBA_FVA_from_measured_fluxes.ipynb new file mode 100644 index 00000000..78474096 --- /dev/null +++ b/examples/FBA_FVA_from_measured_fluxes.ipynb @@ -0,0 +1,927 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 116, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "metadata": {}, + "outputs": [], + "source": [ + "from cobra.io import read_sbml_model, load_json_model, load_yaml_model, load_matlab_model, load_model\n", + "from cobra.test import create_test_model\n", + "from cobra.flux_analysis import flux_variability_analysis, pfba" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Reading the model\n", + "##### The model that describes your organism can be in different format. Uncomment one of the following command to read your file. Alternatively you can read the model from BIGG or BioModels database by knowing the id\n", + "##### Recomendations for the most popular models : " + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [], + "source": [ + "# model = load_model(\"iML1515\") ## iML1515 is the model ID\n", + "\n", + "#path = 'path_to_model_file'\n", + "\n", + "# read sbml model\n", + "# model = read_sbml_model(path)\n", + "\n", + "# read json model\n", + "# model = load_json_model(path)\n", + "\n", + "# read yml model\n", + "# model = load_yaml_model(path)\n", + "\n", + "# read matlab model\n", + "# model = load_matlab_model(path)" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "metadata": {}, + "outputs": [], + "source": [ + "# E. coli core metabolism model\n", + "\n", + "model = create_test_model(\"textbook\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Measured uptake rates and fluxes\n", + "\n", + "##### The flux data should be in the format metabolite id or reaction ID, flux value, error/ci/std\n", + "##### Usually the units that are used are mmol/h/gDW" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "metadata": {}, + "outputs": [], + "source": [ + "long2019 = pd.read_csv('long2019_tidy.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 94, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StrainGenotypeMediumDilutionMeasurement_TypeTimeMeasurement_IDOriginal_IDValueOriginal_ValueUnitOriginal_UnitErrorOriginal_ErrorSource
0BW25113WTGLCNaNconsumption_rateNaNqGlcqGLC8.588.58mmol/h/gmmol/h/gDWNaNNaN(Long, 2019)
1BW25113glkGLCNaNconsumption_rateNaNqGlcqGLC8.058.05mmol/h/gmmol/h/gDWNaNNaN(Long, 2019)
2BW25113pgmGLCNaNconsumption_rateNaNqGlcqGLC9.349.34mmol/h/gmmol/h/gDWNaNNaN(Long, 2019)
3BW25113pgiGLCNaNconsumption_rateNaNqGlcqGLC2.062.06mmol/h/gmmol/h/gDWNaNNaN(Long, 2019)
4BW25113pfkAGLCNaNconsumption_rateNaNqGlcqGLC2.462.46mmol/h/gmmol/h/gDWNaNNaN(Long, 2019)
\n", + "
" + ], + "text/plain": [ + " Strain Genotype Medium Dilution Measurement_Type Time Measurement_ID \\\n", + "0 BW25113 WT GLC NaN consumption_rate NaN qGlc \n", + "1 BW25113 glk GLC NaN consumption_rate NaN qGlc \n", + "2 BW25113 pgm GLC NaN consumption_rate NaN qGlc \n", + "3 BW25113 pgi GLC NaN consumption_rate NaN qGlc \n", + "4 BW25113 pfkA GLC NaN consumption_rate NaN qGlc \n", + "\n", + " Original_ID Value Original_Value Unit Original_Unit Error \\\n", + "0 qGLC 8.58 8.58 mmol/h/g mmol/h/gDW NaN \n", + "1 qGLC 8.05 8.05 mmol/h/g mmol/h/gDW NaN \n", + "2 qGLC 9.34 9.34 mmol/h/g mmol/h/gDW NaN \n", + "3 qGLC 2.06 2.06 mmol/h/g mmol/h/gDW NaN \n", + "4 qGLC 2.46 2.46 mmol/h/g mmol/h/gDW NaN \n", + "\n", + " Original_Error Source \n", + "0 NaN (Long, 2019) \n", + "1 NaN (Long, 2019) \n", + "2 NaN (Long, 2019) \n", + "3 NaN (Long, 2019) \n", + "4 NaN (Long, 2019) " + ] + }, + "execution_count": 94, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "long2019.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "metadata": {}, + "outputs": [], + "source": [ + "# Subset the data only for WT\n", + "data = long2019.query('Genotype == \"WT\"')" + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
StrainGenotypeMediumDilutionMeasurement_TypeTimeMeasurement_IDOriginal_IDValueOriginal_ValueUnitOriginal_UnitErrorOriginal_ErrorSource
0BW25113WTGLCNaNconsumption_rateNaNqGlcqGLC8.588.58mmol/h/gmmol/h/gDWNaNNaN(Long, 2019)
\n", + "
" + ], + "text/plain": [ + " Strain Genotype Medium Dilution Measurement_Type Time Measurement_ID \\\n", + "0 BW25113 WT GLC NaN consumption_rate NaN qGlc \n", + "\n", + " Original_ID Value Original_Value Unit Original_Unit Error \\\n", + "0 qGLC 8.58 8.58 mmol/h/g mmol/h/gDW NaN \n", + "\n", + " Original_Error Source \n", + "0 NaN (Long, 2019) " + ] + }, + "execution_count": 96, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.query('Measurement_ID == \"qGlc\"')" + ] + }, + { + "cell_type": "code", + "execution_count": 97, + "metadata": {}, + "outputs": [], + "source": [ + "rxns = data['Measurement_ID'].unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 98, + "metadata": {}, + "outputs": [], + "source": [ + "# If there are reactions that are names differently than in the model, add them to this dictionary following the example\n", + "id_conc = {'qGlc':'EX_glc__D_e'}" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# You may need the conversion of the fluxes from metabolite names. For example, this will convert glc to EX_glc_e\n", + "# rates_ids = ['EX_' + met + '_e' for met in data['Metabolite ID'].values]\n", + "# data['Measurement_ID'] = rates_ids" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## This code will go through dataframe and set boundaries for found reactions. \n", + "#### Make sure the column names are the same as in the example Measurement_ID,Value,Error" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The reaction ID qGlc was not found in the model.\n", + "The reaction ID qGlc was found in the dictionary.\n", + "The reaction ID GLCptspp was not found in the model.\n", + "The reaction ID GLCptspp was not found in the dictionary.\n" + ] + } + ], + "source": [ + "added_rxns = [] \n", + "for _, rxn in data.head().iterrows():\n", + " try:\n", + " model.reactions.get_by_id(rxn['Measurement_ID']).lower_bound = rxn['Value'] - rxn['Value']*0.025 # if there is no error/ci/std it is possible to use 5% interval\n", + " model.reactions.get_by_id(rxn['Measurement_ID']).upper_bound = rxn['Value'] + rxn['Value']*0.025 # use rxn['Error'] instead of rxn['Value']*0.025 if error is specified\n", + " added_rxns.append(rxn['Measurement_ID'])\n", + " except KeyError:\n", + " print(f\"The reaction ID {rxn['Measurement_ID']} was not found in the model.\")\n", + " try:\n", + " model.reactions.get_by_id(id_conc[rxn['Measurement_ID']]).lower_bound = rxn['Value'] - rxn['Value']*0.025 # if there is no error/ci/std it is possible to use 5% interval\n", + " model.reactions.get_by_id(id_conc[rxn['Measurement_ID']]).upper_bound = rxn['Value'] + rxn['Value']*0.025\n", + " print(f\"The reaction ID {rxn['Measurement_ID']} was found in the dictionary.\")\n", + " added_rxns.append(id_conc[rxn['Measurement_ID']])\n", + " except KeyError:\n", + " print(f\"The reaction ID {rxn['Measurement_ID']} was not found in the dictionary.\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Alternatively use this code to manually add reaction boundaries one by one" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "metadata": {}, + "outputs": [], + "source": [ + "# reaction_id = 'ID' # add the reaction ID here\n", + "# model.reactions.get_by_id(reaction_id).lower_bound = -1000 # add measured value\n", + "# model.reactions.get_by_id(reaction_id).upper_bound = 1000 # add measured value" + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "metadata": {}, + "outputs": [], + "source": [ + "if model.reactions.get_by_id('EX_glc__D_e').lower_bound > 0:\n", + " model.reactions.get_by_id('EX_glc__D_e').lower_bound = -model.reactions.get_by_id('EX_glc__D_e').lower_bound\n", + " model.reactions.get_by_id('EX_glc__D_e').upper_bound = -model.reactions.get_by_id('EX_glc__D_e').upper_bound" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['EX_glc__D_e', 'PGI', 'PFK', 'FBP']" + ] + }, + "execution_count": 102, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# list of the constrained reactions\n", + "added_rxns" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Biomass function" + ] + }, + { + "cell_type": "code", + "execution_count": 135, + "metadata": {}, + "outputs": [], + "source": [ + "# to change the objective function\n", + "# model.objective = \"Reaction ID\"\n", + "# model.reactions.get_by_id(\"Reaction ID\").upper_bound = 1000" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Run FBA" + ] + }, + { + "cell_type": "code", + "execution_count": 131, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "Optimal solution with objective value 0.752
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
fluxesreduced_costs
ACALD0.000000-4.336809e-19
ACALDt0.000000-0.000000e+00
ACKr0.0000001.734723e-18
ACONTa6.0218340.000000e+00
ACONTb6.0218340.000000e+00
.........
TALA0.8159600.000000e+00
THD21.9788880.000000e+00
TKT10.8159600.000000e+00
TKT20.5445200.000000e+00
TPI7.0960960.000000e+00
\n", + "

95 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 131, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "solution_FBA = model.optimize()\n", + "solution_FBA" + ] + }, + { + "cell_type": "code", + "execution_count": 132, + "metadata": {}, + "outputs": [], + "source": [ + "FBA_fluxes = pd.DataFrame(solution_FBA.fluxes)\n", + "# FBA_fluxes.to_clipboard() # to copypaste\n", + "# FBA_fluxes.to_excel('name_of_the_excel.xlxs') # to save to excel\n", + "# FBA_fluxes.to_csv('name_of_the_excel.csv') # to save to csv" + ] + }, + { + "cell_type": "code", + "execution_count": 134, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.7519114393573396" + ] + }, + "execution_count": 134, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# optimized objective value (usually biomass)\n", + "solution_FBA.objective_value" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Run FVA" + ] + }, + { + "cell_type": "code", + "execution_count": 127, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
minimummaximum
ACALD-2.1970780.000000
ACALDt-2.1970780.000000
ACKr-3.2377990.000000
ACONTa3.8405667.117883
ACONTb3.8405667.117883
.........
TALA0.7171540.834550
THD20.0000000.000000
TKT10.7171540.834550
TKT20.4459320.590254
TPI7.0960967.205269
\n", + "

95 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " minimum maximum\n", + "ACALD -2.197078 0.000000\n", + "ACALDt -2.197078 0.000000\n", + "ACKr -3.237799 0.000000\n", + "ACONTa 3.840566 7.117883\n", + "ACONTb 3.840566 7.117883\n", + "... ... ...\n", + "TALA 0.717154 0.834550\n", + "THD2 0.000000 0.000000\n", + "TKT1 0.717154 0.834550\n", + "TKT2 0.445932 0.590254\n", + "TPI 7.096096 7.205269\n", + "\n", + "[95 rows x 2 columns]" + ] + }, + "execution_count": 127, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "solution_FVA = flux_variability_analysis(model,fraction_of_optimum=0.9,loopless=True) # loopless=True ensured no loop in the solution, but may take more time to run\n", + "solution_FVA" + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "metadata": {}, + "outputs": [], + "source": [ + "# FVA_fluxes = pd.DataFrame(solution_FVA)\n", + "# FVA_fluxes.to_clipboard() # to copypaste\n", + "# FVA_fluxes.to_excel('name_of_the_excel.xlxs') # to save to excel\n", + "# FVA_fluxes.to_csv('name_of_the_excel.csv') # to save to csv" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Run pFBA" + ] + }, + { + "cell_type": "code", + "execution_count": 129, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "Optimal solution with objective value 474.042
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
fluxesreduced_costs
ACALD0.000000-2.0
ACALDt0.0000002.0
ACKr0.0000002.0
ACONTa6.021834-2.0
ACONTb6.021834-2.0
.........
TALA0.815960-2.0
THD21.978888-2.0
TKT10.815960-2.0
TKT20.544520-2.0
TPI7.096096-2.0
\n", + "

95 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 129, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "solution_pFBA = pfba(model)\n", + "solution_pFBA" + ] + }, + { + "cell_type": "code", + "execution_count": 130, + "metadata": {}, + "outputs": [], + "source": [ + "pFBA_fluxes = pd.DataFrame(solution_FBA.fluxes)\n", + "# pFBA_fluxes.to_clipboard() # to copypaste\n", + "# pFBA_fluxes.to_excel('name_of_the_excel.xlxs') # to save to excel\n", + "# pFBA_fluxes.to_csv('name_of_the_excel.csv') # to save to csv" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python (rbcenv)", + "language": "python", + "name": "rbc-env" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/examples/data/long2019_tidy.csv b/examples/data/long2019_tidy.csv new file mode 100644 index 00000000..e5e9e6dd --- /dev/null +++ b/examples/data/long2019_tidy.csv @@ -0,0 +1,1765 @@ +Strain,Genotype,Medium,Dilution,Measurement_Type,Time,Measurement_ID,Original_ID,Value,Original_Value,Unit,Original_Unit,Error,Original_Error,Source +BW25113,WT,GLC,NA,consumption_rate,NA,qGlc,qGLC,8.58,8.58,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,consumption_rate,,qGlc,qGLC,8.05,8.05,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,consumption_rate,,qGlc,qGLC,9.34,9.34,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,consumption_rate,,qGlc,qGLC,2.06,2.06,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,consumption_rate,,qGlc,qGLC,2.46,2.46,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,consumption_rate,,qGlc,qGLC,7.99,7.99,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,consumption_rate,,qGlc,qGLC,7.88,7.88,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,consumption_rate,,qGlc,qGLC,8.3,8.3,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,consumption_rate,,qGlc,qGLC,3.26,3.26,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,consumption_rate,,qGlc,qGLC,7.73,7.73,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,consumption_rate,,qGlc,qGLC,8.3,8.3,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,consumption_rate,,qGlc,qGLC,8.74,8.74,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,consumption_rate,,qGlc,qGLC,3.58,3.58,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,consumption_rate,,qGlc,qGLC,7.85,7.85,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,consumption_rate,,qGlc,qGLC,8.23,8.23,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,consumption_rate,,qGlc,qGLC,6.63,6.63,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,consumption_rate,,qGlc,qGLC,8.31,8.31,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,consumption_rate,,qGlc,qGLC,8.27,8.27,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,consumption_rate,,qGlc,qGLC,7.16,7.16,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,consumption_rate,,qGlc,qGLC,8.06,8.06,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,consumption_rate,,qGlc,qGLC,8.87,8.87,mmol/h/g,mmol/h/gDW,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,8.58,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),5.93736,69.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,8.7516,102,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,FBP,FBP -> F6P,1.81038,21.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),6.94122,80.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),6.94122,80.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),14.3715,167.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),13.22178,154.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),2.06778,24.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.47104,28.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,2.3595,27.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),1.05534,12.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.30416,15.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),1.05534,12.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.41184,-4.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.65208,-7.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.65208,-7.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.65208,7.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.10296,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.10296,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,9.1806,107,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.47576,17.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.47576,17.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,1.47576,17.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.75504,8.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.06864,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.41184,4.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.6864,8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.93522,10.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.87516,10.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0.0429,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.01716,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,2.06778,24.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.01716,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),5.88588,68.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,4.30716,50.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.48906,5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.1287,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.19734,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.20978,14.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.1716,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.33462,3.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.7293,8.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.3861,4.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.07722,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00858,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.13728,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.19734,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.19734,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.33462,3.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.07722,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.22308,2.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.27456,3.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.15444,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.11154,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.09438,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03432,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.06006,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.07722,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.06006,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,23.5521,274.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.6864,8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),3.84384,44.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,34.22562,398.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,6.21192,72.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,12.96438,151.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,12.11496,141.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.65036,54.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.13728,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),26.09178,304.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.47576,17.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.07722,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.6864,8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,8.05,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),5.5706,69.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,8.21905,102.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,FBP,FBP -> F6P,1.66635,20.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),6.5527,81.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),6.5527,81.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),13.56425,168.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),12.5258,155.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),2.16545,26.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.2862,28.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,2.22985,27.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),1.0304,12.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.1914,14.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),1.0304,12.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.4025,-5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.6279,-7.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.6279,-7.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.6279,7.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.0644,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.0644,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,8.7745,109,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.21555,15.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.21555,15.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,71.5967,889.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,70.4214,874.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.4669,5.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.0161,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.1932,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.483,6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.7245,9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.7406,9.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.0322,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.0322,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0.0161,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.92395,23.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.0966,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),5.8765,73,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,4.01695,49.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.45885,5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.12075,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.18515,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.15115,14.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.161,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.31395,3.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.66815,8.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.34615,4.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.05635,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00805,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.1288,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.1932,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.1932,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.322,4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.07245,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.2093,2.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.24955,3.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.1449,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.0966,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.08855,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.0322,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.05635,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.07245,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.05635,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,21.8316,271.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.483,6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),3.69495,45.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,32.3449,401.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,6.1824,76.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,11.9462,148.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,11.1573,138.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.3631,54.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.1288,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),23.989,298,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.1753,14.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.05635,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.4508,5.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,9.34,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),6.57536,70.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,11.9552,128,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,FBP,FBP -> F6P,4.28706,45.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),7.66814,82.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),7.66814,82.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),15.84064,169.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),14.51436,155.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),2.25094,24.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.69926,28.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,2.60586,27.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),1.14882,12.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.45704,15.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),1.14882,12.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.42964,-4.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.70984,-7.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.70984,-7.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.70984,7.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.0934,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.0934,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,9.77898,104.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.83998,19.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.83998,19.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,5076.00046,54346.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,5074.16048,54327.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.934,10,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.6071,6.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.934,10,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),1.23288,13.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),1.23288,13.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,2.32566,24.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),5.91222,63.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,5.05294,54.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.56974,6.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.14944,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.22416,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.42902,15.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.20548,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.39228,4.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.84994,9.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.44832,4.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.08406,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.15878,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.24284,2.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.24284,2.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.39228,4.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.0934,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.26152,2.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.31756,3.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.17746,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.13076,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.11208,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.0467,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.06538,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.0934,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.06538,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,25.81576,276.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.934,10,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),4.56726,48.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,34.8849,373.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,6.29516,67.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,14.29954,153.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,13.37488,143.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,5.4639,58.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.15878,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),29.1408,312,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.83998,19.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.08406,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.934,10,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,2.06,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),-0.00412,-0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,6.75886,328.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,FBP,FBP -> F6P,5.72062,277.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),1.03824,50.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),1.03824,50.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),2.71714,131.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),2.40196,116.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),0.07004,3.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,1.94258,94.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,1.79014,86.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),1.05884,51.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),0.7313,35.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),1.05884,51.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.49234,-23.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.56856,-27.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.56856,-27.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.56856,27.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.15244,7.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.15244,7.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,1.8437,89.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,0.84254,40.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),0.84254,40.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,0.81782,39.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,0.53354,25.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.07828,3.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.03708,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),-0.04326,-2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.60152,29.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.68186,33.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),1.17832,57.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.56032,27.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.56032,27.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0.03502,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.02884,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,0.2884,14,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.17922,8.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),-0.07622,-3.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,1.32046,64.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.15038,7.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.03914,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.05974,2.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,0.38316,18.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.05356,2.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.10506,5.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.20806,10.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.103,5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.01854,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.0103,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.04326,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.0618,3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.0618,3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.1133,5.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.02472,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.06798,3.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.08446,4.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.04738,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.03502,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.02884,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.01236,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.01854,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.02472,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.01854,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,7.40364,359.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.60152,29.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),-0.98262,-47.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,2.4514,119,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,0.02678,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,4.28892,208.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,4.00258,194.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,1.43376,69.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.04326,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),8.01546,389.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),0.28428,13.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.01854,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.0412,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,3.31362,134.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),0.3075,12.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,3.19554,129.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,FBP,FBP -> F6P,1.73676,70.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),1.45878,59.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),1.45878,59.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),3.61866,147.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),3.02088,122.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),-1.01106,-41.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.06886,84.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,1.91388,77.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),1.16358,47.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),0.75276,30.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),1.16358,47.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.54858,-22.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.61254,-24.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.61254,-24.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.61254,24.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.15498,6.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.15498,6.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,2.44032,99.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.0824,44,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.0824,44,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,3.46368,140.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,2.38128,96.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,1.09224,44.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.21648,8.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.80934,32.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.87822,35.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.94464,38.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.88314,35.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0.0615,2.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,0.59532,24.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.01476,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),0.9348,38,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,1.45386,59.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.12792,5.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.03444,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.05166,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,0.3321,13.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.04428,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.08856,3.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.50922,20.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.08118,3.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.02214,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.02214,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.0369,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.0492,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.0492,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.10578,4.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.01968,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.05658,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.06888,2.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.03936,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.02952,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.0246,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.00984,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.01722,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0.33948,13.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.01968,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.01722,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,10.87566,442.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.87822,35.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),-2.18448,-88.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,17.12898,696.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,1.0209,41.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,6.11556,248.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,5.87694,238.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,1.2054,49,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.0369,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),6.60264,268.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0.85362,34.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.0824,44,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.02214,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.87576,35.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,7.99,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),5.1935,65,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,6.99924,87.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,FBP,FBP -> F6P,0.799,10,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),6.20024,77.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),6.20024,77.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),13.00772,162.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),11.84118,148.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),1.47815,18.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.4769,31,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,2.28514,28.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),1.05468,13.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.23046,15.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),1.05468,13.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.42347,-5.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.63121,-7.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.63121,-7.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.63121,7.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.19176,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.19176,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,8.57327,107.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.18252,14.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.18252,14.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,15.89211,198.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,14.74155,184.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.45543,5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.21573,2.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.48739,6.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.71111,8.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.56729,7.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.03196,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.03196,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.18377,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.97353,24.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.05593,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),5.88064,73.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.92309,49.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.43146,5.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.11186,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.16779,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.06267,13.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.15181,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.29563,3.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.79101,9.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.34357,4.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.08789,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0.00799,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00799,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.11985,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.17578,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.17578,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.29563,3.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.06392,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.19176,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.23171,2.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.12784,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.09588,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.0799,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03196,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.05593,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0.14382,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.06392,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.05593,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,21.99647,275.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.48739,6.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),2.97228,37.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,32.91081,411.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,6.17627,77.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,11.8252,148,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,11.24193,140.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.08289,51.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.11985,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),23.77025,297.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.15056,14.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.0799,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.45543,5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,7.88,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),5.45296,69.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,10.33856,131.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,FBP,FBP -> F6P,3.97152,50.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),6.36704,80.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),6.36704,80.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),13.15172,166.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),12.12732,153.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),1.99364,25.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.18276,27.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,2.11972,26.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0.96136,12.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.16624,14.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0.96136,12.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.37036,-4.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.591,-7.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.591,-7.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.591,7.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.06304,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.06304,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,8.45524,107.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.15836,14.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.15836,14.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,1.1426,14.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.4728,6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.02364,0.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.197,2.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.46492,5.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.69344,8.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.7092,9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.01576,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.01576,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.773,22.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),5.68148,72.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.89272,49.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.4334,5.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.1182,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.17336,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.1032,14,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.1576,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.30732,3.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.65404,8.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.34672,4.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.06304,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00788,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.12608,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.18124,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.18124,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.30732,3.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.07092,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.20488,2.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.25216,3.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.14184,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.10244,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.08668,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03152,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.05516,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.07092,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.05516,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,21.10264,267.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.46492,5.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),3.67208,46.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,28.75412,364.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,5.98092,75.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,11.52844,146.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,10.77984,136.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.2158,53.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.12608,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),23.78184,301.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.1426,14.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.06304,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.44916,5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,8.3,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),5.9345,71.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,15.2471,183.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,FBP,FBP -> F6P,8.4743,102.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),6.7728,81.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),6.7728,81.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),13.9025,167.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),12.8401,154.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),2.2825,27.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.0999,25.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,2.0252,24.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0.8881,10.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.1454,13.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0.8881,10.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.3403,-4.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.5478,-6.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.5478,-6.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.5478,6.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.0664,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.0664,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,9.1881,110.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.3031,15.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.3031,15.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,5.0132,60.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,3.7267,44.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.5727,6.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.3154,3.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.5893,7.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.8134,9.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.8217,9.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.0166,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.0166,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0.0083,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.7928,21.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),5.7768,69.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.8595,46.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.4399,5.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.1079,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.1743,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.0873,13.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.1494,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.2988,3.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.6557,7.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.3486,4.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.0747,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0.0083,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.1245,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.1909,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.1909,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.2988,3.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.0664,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.2075,2.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.2407,2.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.1411,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.0913,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.083,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.0332,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.0498,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.0664,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.0498,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,21.9701,264.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.5893,7.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),4.565,55,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,24.0783,290.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,6.0673,73.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,12.4085,149.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,11.2797,135.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.1749,50.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.1245,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),25.2486,304.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.2865,15.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.0664,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.5727,6.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,3.26,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),2.65038,81.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,2.84598,87.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,FBP,FBP -> F6P,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),2.84598,87.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),0.05216,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),3.00898,92.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),2.7221,83.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),-0.27384,-8.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,0.5379,16.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,0.489,15,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0.20864,6.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),0.28362,8.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0.20864,6.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.06846,-2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.13692,-4.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.13692,-4.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.13692,4.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.0489,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.0489,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,5.40834,165.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,2.64386,81.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),2.64386,81.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,1.9234,59,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,0.2608,8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,1.51264,46.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.07172,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),1.36594,41.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),2.42218,74.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),2.4939,76.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),3.44582,105.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.98126,30.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.98126,30.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.02608,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,0.64874,19.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,1.0595,32.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),1.26162,38.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,1.18664,36.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.13692,4.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.03586,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.05542,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,0.33904,10.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.04564,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.09454,2.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.18908,5.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.09454,2.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.01304,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00978,0.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.03912,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.05542,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.05542,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.10106,3.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.02282,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.06194,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.07498,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.04238,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.02934,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.02608,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.00978,0.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.0163,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.02282,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.0163,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,16.5119,506.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,2.42218,74.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),0.163,5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,29.64318,909.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,1.3529,41.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,9.77022,299.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,9.46704,290.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,1.29422,39.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.03912,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),7.08072,217.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,2.79056,85.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,2.79056,85.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),-2.79056,-85.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.6626,51,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.01304,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,flux,SS,AKGDH,AKGDH (net),1.44092,44.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,7.73,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),7.54448,97.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,25.95734,335.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,FBP,FBP -> F6P,18.91531,244.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),7.04203,91.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),7.04203,91.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),13.74394,177.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),12.71585,164.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),2.32673,30.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,0.01546,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),-0.45607,-5.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),0.45607,5.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),-0.45607,-5.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),0.34012,4.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),0.11595,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),0.11595,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),-0.11595,-1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.01546,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.01546,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,8.88177,114.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.43005,18.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.43005,18.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,1.43005,18.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.74208,9.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.02319,0.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.45607,5.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.71889,9.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.95852,12.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.62613,8.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0.02319,0.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.30147,3.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,2.25716,29.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.08503,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),5.73566,74.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,4.01187,51.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.44834,5.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.11595,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.18552,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.15177,14.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.16233,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.31693,4.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.66478,8.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.34012,4.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.06957,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.01546,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.13141,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.18552,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.18552,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.32466,4.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.06957,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.20871,2.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.25509,3.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.14687,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.10049,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.08503,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03865,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.05411,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.06957,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.05411,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,18.22734,235.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.71889,9.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),8.05466,104.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,8.36386,108.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,6.05259,78.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,10.34274,133.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,9.47698,122.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.34426,56.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.13141,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),23.93981,309.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.43005,18.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.06957,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.71889,9.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,8.3,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),6.4242,77.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,21.6962,261.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,FBP,FBP -> F6P,14.5997,175.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),7.1048,85.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),7.1048,85.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),14.5167,174.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),13.6452,164.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),3.3283,40.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,1.7015,20.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,1.6185,19.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0.7138,8.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),0.9047,10.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0.7138,8.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.2573,-3.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.4565,-5.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.4565,-5.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.4565,5.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.083,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.083,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,10.375,125,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.3363,16.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.3363,16.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,70.716,852,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,69.3797,835.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.6972,8.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.4731,5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.6972,8.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.8964,10.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.8964,10.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.66,20,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.0581,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),7.4119,89.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.486,42,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.3984,4.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.0996,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.1577,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,0.996,12,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.1411,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.2739,3.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.5727,6.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.2905,3.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.0415,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.0083,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.1079,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.1577,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.1577,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.2822,3.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.0664,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.1909,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.2241,2.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.1328,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.083,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.0747,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.0332,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.0498,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.0664,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.0498,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,24.2941,292.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.6972,8.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),3.8429,46.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,31.5483,380.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,7.6858,92.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,13.4128,161.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,12.4915,150.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,3.8014,45.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.1079,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),21.0156,253.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.3363,16.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.0415,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.6972,8.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,8.74,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),5.86454,67.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,6.58996,75.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,FBP,FBP -> F6P,1.17116,13.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),5.4188,62,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),5.4188,62,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),13.12748,150.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),12.18356,139.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),1.1362,13,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.61326,29.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),-0.40204,-4.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),0.40204,4.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),-0.40204,-4.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),0.3059,3.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),0.10488,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),0.10488,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),-0.10488,-1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,EDD,6PG -> KDPG,2.61326,29.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,2.61326,29.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,11.20468,128.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.75674,20.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.75674,20.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,10.65406,121.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,8.89732,101.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,1.14494,13.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.0874,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.81282,9.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),1.05754,12.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),1.28478,14.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),1.16242,13.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.12236,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,2.04516,23.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.1748,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),7.6912,88,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.77568,43.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.44574,5.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.10488,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.16606,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.08376,12.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.15732,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.29716,3.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.6118,7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.31464,3.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.05244,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00874,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.11362,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.18354,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.18354,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.29716,3.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.06118,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.19228,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.22724,2.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.1311,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.0874,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.07866,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03496,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.05244,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.06118,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.05244,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,23.72036,271.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,1.05754,12.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),4.78078,54.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,41.75972,477.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,7.97962,91.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,13.3285,152.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,12.38458,141.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.12528,47.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.11362,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),23.15226,264.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.75674,20.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.05244,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,flux,SS,AKGDH,AKGDH (net),1.05754,12.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,3.58,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),3.1325,87.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,3.5084,98,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,FBP,FBP -> F6P,0.40096,11.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),3.11102,86.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),3.11102,86.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),6.18624,172.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),5.6922,159,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),0.99882,27.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,0.36158,10.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,0.32578,9.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),0.32578,9.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),0.05728,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.05728,-1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.05728,-1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.05728,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.0358,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.0358,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,3.9201,109.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.24226,34.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.24226,34.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,1.03462,28.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.68736,19.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.03222,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.52268,14.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.86278,24.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.9845,27.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),1.10264,30.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.20406,5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.20406,5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0.00358,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.0895,2.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,0.88426,24.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.02148,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),1.63248,45.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,2.09788,58.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.24344,6.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.06086,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.09666,2.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,0.62292,17.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.08234,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.16468,4.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.3222,9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.15752,4.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.03938,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.0358,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.06444,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.09666,2.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.09666,2.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.1969,5.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.0358,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.1074,3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.12888,3.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.07518,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.0537,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.04654,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.0179,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.02864,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.0358,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.02864,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,9.7376,272,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.86278,24.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),3.22558,90.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,14.18038,396.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,1.79358,50.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,5.7638,161,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,5.2984,148,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,2.2733,63.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.06444,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),12.12904,338.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.03462,28.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.03938,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.65514,18.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,7.85,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),5.70695,72.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,12.6542,161.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,FBP,FBP -> F6P,6.20935,79.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),6.44485,82.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),6.44485,82.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),13.19585,168.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),12.17535,155.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),2.01745,25.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,1.89185,24.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,1.84475,23.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0.77715,9.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.0676,13.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0.77715,9.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.27475,-3.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.5024,-6.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.5024,-6.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.5024,6.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.0471,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.0471,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,8.42305,107.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.37375,17.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.37375,17.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,22.78855,290.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,21.40695,272.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.65155,8.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.40035,5.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.65155,8.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.88705,11.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.88705,11.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.82905,23.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),5.44005,69.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.9878,50.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.4553,5.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.11775,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.18055,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.1304,14.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.16485,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.32185,4.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.66725,8.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.3454,4.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.0628,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00785,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.1256,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.18055,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.18055,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.314,4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.07065,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.2041,2.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.2512,3.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.1413,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.10205,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.08635,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.0314,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.05495,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.07065,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.05495,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,21.038,268,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.65155,8.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),4.1291,52.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,28.2757,360.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,5.75405,73.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,11.6023,147.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,10.84085,138.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.3332,55.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.1256,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),23.99745,305.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.3816,17.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.0628,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.65155,8.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,8.23,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),6.59223,80.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,12.46845,151.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,FBP,FBP -> F6P,5.39065,65.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),7.0778,86,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),7.0778,86,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),14.33666,174.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),13.39021,162.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),3.00395,36.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,1.44848,17.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,1.40733,17.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0.51849,6.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),0.88061,10.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0.51849,6.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.15637,-1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.36212,-4.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.36212,-4.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.36212,4.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.04938,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.04938,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,9.99122,121.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,0.85592,10.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),0.85592,10.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,0.823,10,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.33743,4.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.17283,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),-0.05761,-0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.19752,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.41973,5.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.35389,4.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.03292,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.03292,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.09876,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.7283,21,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),7.54691,91.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.64589,44.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.4115,5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.10699,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.17283,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.03698,12.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.14814,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.29628,3.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.60902,7.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.31274,3.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.05761,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00823,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.11522,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.1646,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.1646,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.29628,3.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.06584,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.19752,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.23044,2.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.13168,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.09053,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.07407,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03292,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.04938,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.06584,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.04938,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,21.84242,265.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.19752,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),4.938,60,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,34.57423,420.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,7.83496,95.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,13.67826,166.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,11.01997,133.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,3.96686,48.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.11522,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),21.93295,266.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),0.823,10,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.05761,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.1646,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,6.63,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),4.91283,74.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,14.02908,211.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,FBP,FBP -> F6P,8.59911,129.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),5.42997,81.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),5.42997,81.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),11.11851,167.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),10.17042,153.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),1.40556,21.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,1.55805,23.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,1.45197,21.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0.55692,8.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),0.88842,13.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0.55692,8.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.17901,-2.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.37791,-5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.37791,-5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.37791,5.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.10608,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.10608,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,6.8289,103,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.51164,22.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.51164,22.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,22.27017,335.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,20.75853,313.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.8619,13,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.62322,9.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.8619,13,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),1.07406,16.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),1.02102,15.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0.00663,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.05304,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.71054,25.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),3.53379,53.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.60672,54.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.41106,6.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.10608,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.16575,2.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.02102,15.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.14586,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.28509,4.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.60333,9.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.31161,4.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.05967,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0.00663,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00663,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.11271,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.17238,2.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.17238,2.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.28509,4.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.0663,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.19227,2.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.22542,3.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.1326,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.09282,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.07956,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03315,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.05304,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.0663,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.05304,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,17.25789,260.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.8619,13,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),4.4421,67,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,15.08325,227.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,3.81225,57.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,10.03119,151.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,9.05658,136.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,3.9117,59,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.11271,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),22.12431,333.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.51164,22.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.05304,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.8619,13,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,8.31,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),5.75883,69.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,8.6424,104,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,FBP,FBP -> F6P,1.9113,23,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),6.7311,81,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),6.7311,81,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),13.92756,167.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),12.8805,155,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),2.3268,28,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.33511,28.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,2.23539,26.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),1.02213,12.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.21326,14.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),1.02213,12.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.40719,-4.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.61494,-7.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.61494,-7.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.61494,7.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.09141,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.09141,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,9.32382,112.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.30467,15.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.30467,15.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,43.45299,522.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,42.15663,507.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.60663,7.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.35733,4.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.60663,7.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.831,10,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.81438,9.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.00831,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.00831,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.02493,0.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.78665,21.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),6.0663,73,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.78936,45.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.43212,5.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.10803,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.1662,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.06368,12.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.14958,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.29085,3.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.63987,7.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.34071,4.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.0831,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00831,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.11634,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.17451,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.17451,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.29916,3.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.06648,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.19944,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.23268,2.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.13296,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.09141,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.0831,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03324,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.04986,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.06648,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.04986,0.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,23.01039,276.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.60663,7.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),3.7395,45,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,34.6527,417,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,6.35715,76.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,12.80571,154.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,11.80851,142.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.08852,49.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.11634,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),24.33999,292.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.29636,15.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.0831,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.60663,7.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,8.27,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),5.72284,69.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,11.48703,138.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,FBP,FBP -> F6P,4.80487,58.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),6.68216,80.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),6.68216,80.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),13.8109,167,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),12.76061,154.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),2.22463,26.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.29906,27.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,2.20809,26.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),1.00067,12.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.19915,14.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),1.00067,12.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.39696,-4.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.61198,-7.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.61198,-7.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.61198,7.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.09097,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.09097,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,9.13008,110.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.31493,15.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.31493,15.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,15.25815,184.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,13.99284,169.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.6616,8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.12405,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.28945,3.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.5789,7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.81046,9.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.83527,10.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.04135,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.04135,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.02481,0.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.81113,21.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.01654,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),5.85516,70.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.90344,47.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.45485,5.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.11578,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.17367,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.09164,13.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.15713,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.30599,3.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.6616,8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.34734,4.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.07443,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00827,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.12405,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.18194,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.18194,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.30599,3.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.06616,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.20675,2.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.2481,3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.14059,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.09924,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.0827,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03308,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.05789,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.06616,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.05789,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,22.42824,271.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.5789,7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),3.96133,47.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,30.56592,369.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,6.15288,74.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,12.49597,151.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,11.50357,139.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.23424,51.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.12405,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),24.82654,300.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.26531,15.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.07443,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.53755,6.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,7.16,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),4.8688,68,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,6.68744,93.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,FBP,FBP -> F6P,1.04536,14.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),5.64208,78.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),5.64208,78.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),11.635,162.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),10.6326,148.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),1.27448,17.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,1.97616,27.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,1.90456,26.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0.81624,11.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.08116,15.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0.81624,11.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.30788,-4.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.50836,-7.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.50836,-7.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.50836,7.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.07876,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.07876,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,7.1958,100.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.33176,18.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.33176,18.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,1.31744,18.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.70168,9.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.05728,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.41528,5.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.65872,9.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.87352,12.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.8234,11.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.00716,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.00716,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0.00716,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.05728,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.7542,24.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),4.00244,55.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.66592,51.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.42244,5.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.1074,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.16468,2.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.03104,14.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.1432,2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.2864,4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.62292,8.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.32936,4.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.0716,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.00716,0.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.11456,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.17184,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.17184,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.29356,4.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.06444,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.19332,2.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.22912,3.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.12888,1.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.09308,1.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.07876,1.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.02864,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.05012,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.06444,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.05012,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,18.30812,255.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.65872,9.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),4.03108,56.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,24.06476,336.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,4.28168,59.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,10.42496,145.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,9.47984,132.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,3.95948,55.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.11456,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),23.96452,334.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.31744,18.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.0716,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.6444,9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,8.06,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),5.55334,68.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,8.09224,100.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,FBP,FBP -> F6P,1.62006,20.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),6.47218,80.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),6.47218,80.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),13.32318,165.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),12.31568,152.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),2.00694,24.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.14396,26.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,2.11978,26.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0.95914,11.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.16064,14.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0.95914,11.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.37076,-4.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.58838,-7.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.58838,-7.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.58838,7.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.02418,0.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.02418,0.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,8.64838,107.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.26542,15.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.26542,15.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,9.09974,112.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,7.83432,97.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.54808,6.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.30628,3.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.54808,6.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),0.78182,9.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),0.78182,9.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,1.78932,22.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),5.81126,72.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,3.85268,47.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.45136,5.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.11284,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.17732,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.0881,13.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.15314,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.30628,3.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.6448,8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.33852,4.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.06448,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.01612,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.1209,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.17732,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.17732,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.30628,3.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.07254,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.19344,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.2418,3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.13702,1.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.09672,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.0806,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03224,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.05642,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.07254,0.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.05642,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,21.81036,270.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.54808,6.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),3.47386,43.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,33.57796,416.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,6.10142,75.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,11.8885,147.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,11.17922,138.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.18314,51.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.1209,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),24.2606,301,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.26542,15.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.06448,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.54808,6.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,GLCptspp,Gluc.Ext + PEP -> G6P + Pyr,8.87,100,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,PGI,G6P <=> F6P (net),6.28883,70.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,PFK,F6P + ATP -> FBP,8.83452,99.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,FBP,FBP -> F6P,1.58773,17.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,FBA,FBP <=> DHAP + GAP (net),7.23792,81.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,TPI,DHAP <=> GAP (net),7.23792,81.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,GAPD,GAP <=> 3PG + ATP + NADH (net),15.04352,169.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,PGM,3PG <=> PEP (net),14.00573,157.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,PYK,PEP <=> Pyr + ATP (net),2.69648,30.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,G6PDH2r,G6P -> 6PG + NADPH,2.36829,26.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,GND,6PG -> Ru5P + CO2 + NADPH,2.18202,24.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,RPE,Ru5P <=> X5P (net),0.99344,11.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,RPI,Ru5P <=> R5P (net),1.17971,13.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,TKT2,X5P <=> GAP + E-C2 (net),0.99344,11.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,F6P <=> E4P + E-C2 (net),-0.38141,-4.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,TKT1,S7P <=> R5P + E-C2 (net),-0.61203,-6.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,F6P <=> GAP + E-C3 (net),-0.61203,-6.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,TALA,S7P <=> E4P + E-C3 (net),0.61203,6.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,EDD,6PG -> KDPG,0.19514,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,EDA,KDPG -> GAP + Pyr,0.19514,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,PDH,Pyr -> AcCoA + CO2 + NADH,10.28033,115.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,CS,AcCoA + OAC -> Cit,1.62321,18.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,ACONTa,Cit <=> ICit (net),1.62321,18.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,ICit -> AKG + CO2 + NADPH,11.93015,134.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,AKG + CO2.int + NADPH -> Icit,10.34242,116.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,AKG -> SucCoA + CO2 + NADH,0.86039,9.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,SucCoA + NADH + CO2.int -> AKG,0.03548,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,SUCOAS,SucCoA <=> Suc + ATP (net),0.54994,6.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,SUCDi,Suc <=> Fum + FADH2 (net),0.86039,9.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,FUM,Fum <=> Mal (net),1.10875,12.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,MDH,Mal <=> OAC + NADH (net),1.07327,12.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,ICL,ICit <=> Glyox + Suc (net),0.03548,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,MALS,AcCoA + Glyox -> Mal,0.03548,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,ME2,Mal -> Pyr + CO2 + NADPH,0.04435,0.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,ME1,Mal -> Pyr + CO2 + NADH,0.02661,0.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,PPC,PEP + CO2.int -> OAC,2.09332,23.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,PPCK,OAC + ATP -> PEP + CO2,0.14192,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,PTAr,AcCoA <=> Ac + ATP (net),7.0073,79,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,GLUSy,AKG + NADPH + NH3 -> Glu,4.14229,46.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,GLNS,Glu + ATP + NH3 -> Gln,0.47898,5.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,GLU5K,Glu + 2 NADPH + ATP -> Pro,0.12418,1.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,ARGSL,Glu + CO2 + Gln + NADPH + Asp + AcCoA + 5 ATP -> Arg + AKG + Fum + Ac,0.18627,2.1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,ASPTA,OAC + Glu -> Asp + AKG,1.18858,13.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,ASNS2,Asp + 2 ATP + NH3 -> Asn,0.16853,1.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,ALATA_L,Pyr + Glu -> Ala + AKG,0.32819,3.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,PSERT,3PG + Glu -> Ser + NADH + AKG,0.67412,7.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,GHMT2r,Ser <=> Gly + MEETHF (net),0.34593,3.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,Gly -> CO2 + MEETHF + NADH + NH3,0.06209,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,CO2.int + MEETHF + NADH -+ NH3 > Gly,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,THRA,Thr <=> Gly + AcCoA + NADH (net),0.01774,0.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,SERAT,Ser + AcCoA + SO4 + 3 ATP + 4 NADPH + SO4 -> Cys + Ac,0.13305,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,DAPE,Asp + Pyr + Glu + 2 NADPH + ATP + SucCoA -> LL-DAP + AKG + Suc,0.19514,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,DAPDC,LL-DAP -> Lys + CO2,0.19514,2.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,THRS,Asp + 2 NADPH + 2 ATP -> Thr,0.33706,3.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,METS,Asp + METHF + Cys + 2 NADPH + ATP + SucCoA -> Met + Pyr + Suc + NH3,0.07096,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,VALTA,2 Pyr + NADPH + Glu -> Val + CO2 + AKG,0.21288,2.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,IPPS,2 Pyr + AcCoA + Glu + NADPH -> Leu + 2 CO2 + AKG + NADH,0.25723,2.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,ILETA,Thr + Pyr + Glu + NADPH -> Ile + CO2 + AKG + NH3,0.14192,1.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,PHETA1,E4P + 2 PEP + Glu + NADPH + ATP -> Phe + CO2 + AKG,0.10644,1.2,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,TYRTA,E4P + 2 PEP + Glu + NADPH + ATP -> Tyr + CO2 + AKG + NADH,0.0887,1,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,TRPTA,E4P + 2 PEP + R5P + Ser + Gln + NADPH + 3 ATP -> Trp + CO2 + Pyr + GAP + Glu,0.03548,0.4,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,HISTD,R5P + FTHF + Gln + Asp + 5 ATP -> His + 2 NADH + AKG + Fum,0.06209,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,SERD_L,Ser -> Pyr + NH3,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,MTHFR2,MEETHF + NADH -> METHF,0.07096,0.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,MTHFD,MEETHF -> FTHF + NADPH,0.06209,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,NADH + 0.5 O2 -> 2 ATP,25.92701,292.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,FADH2 + 0.5 O2 -> ATP,0.86039,9.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NADTRHD,NADH <=> NADPH (net),3.35286,37.8,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,EX_atp_e,ATP -> ATP.Ext,44.31452,499.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,EX_ac_e,Ac -> Ac.Ext,7.32662,82.6,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,EX_co2_e,CO2 -> CO2.Ext,14.16539,159.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,EX_o2_e,O2.Ext -> O2,13.3937,151,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,EX_nh4_e,NH3.Ext -> NH3,4.51483,50.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,EX_so4_e,SO4.Ext -> SO4,0.13305,1.5,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,Biomass production (Cmol of biomass),24.3925,275,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,G6P -> Gluc.snk,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,MGSA,DHAP -> Mglx,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,LGTHL,Mglx -> Lact,0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,NA,Pyr + NADH <=> Lact (net),0,0,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,ICDHyr,ICDHyr (net),1.58773,17.9,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,GLYCL,GLYCL (net),0.06209,0.7,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,flux,SS,AKGDH,AKGDH (net),0.82491,9.3,mmol/h/gDW,% of glc uptake,NA,NA,"(Long, 2019)" +BW25113,WT,GLC,NA,growth_rate,NA,mu,mu,0.633,0.633,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,glk,GLC,NA,growth_rate,NA,mu,mu,0.564,0.564,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,pgm,GLC,NA,growth_rate,NA,mu,mu,0.686,0.686,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,pgi,GLC,NA,growth_rate,NA,mu,mu,0.191,0.191,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,pfkA,GLC,NA,growth_rate,NA,mu,mu,0.158,0.158,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,pfkB,GLC,NA,growth_rate,NA,mu,mu,0.567,0.567,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,fbp,GLC,NA,growth_rate,NA,mu,mu,0.574,0.574,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,fbaB,GLC,NA,growth_rate,NA,mu,mu,0.623,0.623,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,tpiA,GLC,NA,growth_rate,NA,mu,mu,0.166,0.166,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,zwf,GLC,NA,growth_rate,NA,mu,mu,0.574,0.574,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,pgl,GLC,NA,growth_rate,NA,mu,mu,0.48,0.48,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,gnd,GLC,NA,growth_rate,NA,mu,mu,0.528,0.528,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,rpe,GLC,NA,growth_rate,NA,mu,mu,0.3,0.3,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,sgcE,GLC,NA,growth_rate,NA,mu,mu,0.569,0.569,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,rpiB,GLC,NA,growth_rate,NA,mu,mu,0.524,0.524,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,tktA,GLC,NA,growth_rate,NA,mu,mu,0.524,0.524,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,tktB,GLC,NA,growth_rate,NA,mu,mu,0.59,0.59,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,talA,GLC,NA,growth_rate,NA,mu,mu,0.592,0.592,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,talB,GLC,NA,growth_rate,NA,mu,mu,0.583,0.583,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,edd,GLC,NA,growth_rate,NA,mu,mu,0.585,0.585,h-1,h-1,NA,NA,"(Long, 2019)" +BW25113,eda,GLC,NA,growth_rate,NA,mu,mu,0.551,0.551,h-1,h-1,NA,NA,"(Long, 2019)" \ No newline at end of file